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!

Help with reading CPIO backups

Status
Not open for further replies.

gogr

IS-IT--Management
Jan 8, 2003
21
0
0
IE
Wondering if anyone could help


I have a set of backup tapes that I want to read from

The backups were done as follows


find /usr /bin -print | sort >> $LOGFILE
cat $LOGFILE | cpio -ovdum -C 2048 -K 2048000 -O /dev/rStp0


I would like to know how to read these tapes now .

Thanks
 
Hi,

You can use "cpio -itvC 2048 < /dev/rStp0" command to list content of tape without restoring them.

man cpio for more information.

dbase77
 
thanks dbase77

much appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top