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

backup on tape

Status
Not open for further replies.

230173

MIS
Jun 22, 2001
208
SG
Hi,

i've backed up a few files on tape. With "tar cvf /dev/rmt1"
Now i want to look and see how much is on the tape (bytes).
1. How do i do that?
2. How can i print this list?
3. Can i add a few files without removing the last ones?

Thnx
 
Amount of bytes on the tape ? Can't tell that due to hardware compression.

File list ? tar -tvf /dev/rmt0

Append files ? Documentation on "tar" indicates that appending files to a tape is not supported. You could try this though...

mt -f /dev/rmt0 rewind
mt -f /dev/rmt0.1 fsf 1
tar -cvf /dev/rmt0.1 filespec

Next time, you would do

mt -f /dev/rmt0 rewind
mt -f /dev/rmt0.1 fsf 2
tar- cvf /dev/rmt0.1 filespec

and so on...

Bill.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top