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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tar to disk

Status
Not open for further replies.
Apr 12, 2001
46
0
0
US
Normally we backup to tape with:

tar -cvfp/dev/rmt0 /abc

Can I:

tar -cvfp/filesystemtostoredata /abc

I just want to write to disk instead of tape.
 
Almost, but give the tar file a name within the filesystem, ie

/filesystemtostore/abc.tar

HTH.
 
Or more precisely according to your example:

tar -cvfp/filesystemtostoredata/abc.tar /abc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top