The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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 the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 12-05-2005
BOFH BOFH is offline Forum Advisor  
Registered User
  
 

Join Date: Feb 2005
Location: Broomfield, CO
Posts: 406
<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