Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Backing up to remote tape drive

Status
Not open for further replies.

siswjh

MIS
Dec 6, 2001
63
US
New to linux, but I know on unix that you can backup to a remote tape drive with a command like this:

ufsdump 0uf somesystem.somedomain.com:/dev/rmt/0cbn /usr

Can this been done on Linux Advanced Server 2.1
 
You should use tar. Tar = Tape Archiver. It is meant to dump data from *nix to tape.


tar -cvf /dev/nst0 dir_to_backup

this will "c"reate with "v"erbose display on "f"ile_destination /dev/nst0 (1st tape device usually seen) dir or file/s to backup.


 
Hi,

You can user dd command like dd if=file | rsh of=device.
Please refer to dd man page for more info.

regards,
feroz
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top