- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- view content of tape!
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:32 PM
07-18-2006 08:32 PM
I have a tape but I don't know HOW TO READ CONTENT OF TAPE. Please help me!!!
Many Thanks,
Vu
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:38 PM
07-18-2006 08:38 PM
Re: view content of tape!
thanks
freddy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:39 PM
07-18-2006 08:39 PM
Re: view content of tape!
do you know what software was used to write the tape (dd, fbackup,tar..)?
You can load the tape into a tapedrive and then try SAM to do an recover.
Alternatives are dd (man dd) or pax.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:39 PM
07-18-2006 08:39 PM
Re: view content of tape!
What is the format on the tape ?
if it's a tar , try tar -tvf /de:/rmt/xxxxx
if it's fbackup , try frecover -Nrv
Regards
L-DERLYN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:47 PM
07-18-2006 08:47 PM
SolutionOn HP-UX, the backup can be done on several ways. With basic HP-UX commands (eg. tar, fbackup, dd, cpio) OR by backup software management (dataprotector, netbackup, legato).
So tt's a good way to ask from the person who gave you that tape, about what's the method that he/she use to backup the data into the tape. That's the easy one and safely.
To make it safe, make sure the tape only for read only. And here is the command to check the content of the tape (eg. the tape device file : /dev/rmt/0m) :
- with tar command :
# tar tvf /dev/rmt/0m
- with fbackup/frecover command :
# frecover -rNv -f /dev/rmt/0m
- with cpio command :
# cpio -ictv < /dev/rmt/0m
And if the backup from make_tape_recovery command, here is to check the content :
Skip over the first image with mt command
# mt -f /dev/rmt/0mn rew
# mt -f /dev/rmt/0mn fsf 1
Verify the contents of the tar image:
# tar tvf /dev/rmt/0m
Hope this information can help you.
Cheers,
AW
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 08:50 PM
07-18-2006 08:50 PM
Re: view content of tape!
If it is in tar format ,You can check that with ,
# tar -tvf /dev/rmt/0mn
where /dev/rmt/0mn is the device name , can be found from ioscan -fnC tape,
cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2006 09:35 PM
07-18-2006 09:35 PM
Re: view content of tape!
I am very thanks all of you. I cleared about this.
Thanks you so much
Vu.