Link to home
Start Free TrialLog in
Avatar of davidcawkwell
davidcawkwell

asked on

backing up from NT to UNIX


We have an NT machine which does not have a DAT drive.
I know if it were a UNIX machine I could backup to another UNIX machine which has a DAT drive. Can anyone tell me if I can do this with NT. Perhaps a shareware tar,dd,rsh command?
Avatar of galemany
galemany

There is an easy way to do this: install an NFS server in NT machine, mount the NT root directory of each NT partitions on Unix machine and perform a tar, cpio, dump or whatever other command from the Unix machine to DAT.

In Unix machine:
mount -t nfs NTMACHINE:ROOTDIR /mountdir
tar cvf /dev/rmt/0 /mountdir
How about mks toolkit, It gives you all the unix command?
Avatar of davidcawkwell

ASKER


Yes I knew this. But is there a way I can do it for free.
You may use the evaluation edition of AccessNFS of Intergraph at:

http://www.intergraph.com/nfs

Download it at:

http://www.intergraph.com/nfs/download.asp

Then, access NT from UNIX machine to do backup.

Permanently for free
Which is most important? To solve the problem or to get a free software? :-))
Why don't you just share the tape drive.
NT let you share devices.
ASKER CERTIFIED SOLUTION
Avatar of mrausch
mrausch

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Yes thats what I've been trying but I'm having problems using the
smbclient program. It just comes back not enough \ when I try to connect to a PC.
eg if machine is   \\David_Cawkwell\win95    (share is win95)
I get not enough \ in name   \\David_Cawkwellwin95

???? any ideas
When using UNC in the shell, you have to escape the backslashs;
this is done via a double backslash, that is \\ gives you \.
Now you can either double all backslashs in your command
(\\\\David_Cawkwell\\win95) or escape the whole UNC
('\\David_Cawkwell\win95').
Sorry, I should've mentioned this in the example above.

great it works. Ta very much.