Mar 21, 2002 #1 maxcrook Programmer Jan 25, 2001 210 GB Im trying to view the contents of an 8mm tape left in one of our rs's.Whats the command to to this ? device = rmt0 ?
Im trying to view the contents of an 8mm tape left in one of our rs's.Whats the command to to this ? device = rmt0 ?
Mar 21, 2002 #2 MoshiachNow IS-IT--Management Feb 6, 2002 1,851 IL Info is missing here.However: 1.If it's a tar tape - use: tar tvf /dev/rmt0 2.If you do not know the format: dd if=/dev/rmt0 bs=512 count=6 |strings This will grep the tape header for any asci info,giving the idea regarding the format. 3.If it's Legato/Veritas - use the related SW gui/commands "Long live king Moshiach !" Upvote 0 Downvote
Info is missing here.However: 1.If it's a tar tape - use: tar tvf /dev/rmt0 2.If you do not know the format: dd if=/dev/rmt0 bs=512 count=6 |strings This will grep the tape header for any asci info,giving the idea regarding the format. 3.If it's Legato/Veritas - use the related SW gui/commands "Long live king Moshiach !"
Mar 21, 2002 #3 LHLTech MIS Nov 15, 2001 50 GB Also it could be in cpio format in which case type cpio -icuvBt < /dev/rmt0 which will list the contents. If you want to actually extract from the tape, leave the t out of the params i.e. cpio -icuvB < /dev/rmt0 LHLTech IBM Certified Specialist - AIX System Support Halfway through CATE exams! Upvote 0 Downvote
Also it could be in cpio format in which case type cpio -icuvBt < /dev/rmt0 which will list the contents. If you want to actually extract from the tape, leave the t out of the params i.e. cpio -icuvB < /dev/rmt0 LHLTech IBM Certified Specialist - AIX System Support Halfway through CATE exams!
Mar 21, 2002 #4 Yegolev Technical User Oct 1, 2001 787 US There is also pax. I tried reading the man page on that one day, it seems like a nice tool. Good luck. Upvote 0 Downvote
There is also pax. I tried reading the man page on that one day, it seems like a nice tool. Good luck.
Mar 21, 2002 #5 Einstein47 Programmer Nov 29, 2001 737 US If it is a backup or mksysb you could use: restore -s4 -Tqvf /dev/rmt0.1 Einstein47 (Love is like PI - natural, irrational, endless, and very important.) Upvote 0 Downvote
If it is a backup or mksysb you could use: restore -s4 -Tqvf /dev/rmt0.1 Einstein47 (Love is like PI - natural, irrational, endless, and very important.)
Mar 21, 2002 Thread starter #6 maxcrook Programmer Jan 25, 2001 210 GB Thanks it is in cpio format and have now managed to list the files on the tape! Upvote 0 Downvote