The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: Help with TAR
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 12-05-2005
BOFH BOFH is offline
Registered User
 

Join Date: Feb 2005
Location: Broomfield, CO
Posts: 382
<filename> is the device you're restoring data from when you supply the 'f' switch. The default device is /dev/rmt/0 on sun, /dev/sa0 on OS X, and /dev/rmt0 on linux so if you remove the 'f' parameter, the command would extract from the default device and would look like:

tar vx [filename]

If it's a different device

tar xvf [device] [filename]

Carl
Reply With Quote