- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Need to read a DLT 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
Discussions
Discussions
Discussions
Forums
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
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-26-2001 10:45 AM
тАО07-26-2001 10:45 AM
Need to read a DLT tape....
I would like to know how I can read a DLT tape that I don't have any clue what's on it??? Should I mount the drive like a filesystem or anythings else??? I'm working under HP-UX 11.00
Thanks!
Jonathan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2001 10:51 AM
тАО07-26-2001 10:51 AM
Re: Need to read a DLT tape....
fbackup/frecover
frecover -rNv -f /dev/rmt/0m > /tmp/listing
tar
tar tvf /dev/rmt/0m
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2001 10:53 AM
тАО07-26-2001 10:53 AM
Re: Need to read a DLT tape....
tar -tv
cpio
frecover
dd
And see if you have any luck. There is no way that I know of to mount a tape and have it be treated like a regular filesystem. Your best bet will be to experiment with the above and see what happens.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2001 11:06 AM
тАО07-26-2001 11:06 AM
Re: Need to read a DLT tape....
Whenever I get one of these from out of the blue, I dd off a few blocks and send the output through od. I look for magic numbers or headers which identify it as a tar, ftio, fbackup, omniback, cpio, etc.
Do something like this:
dd if=/dev/rmt/3m bs=512 count=2 | od -Ad -tc > /tmp/myfile
This will read the first 1024 bytes of the tape and format and send it to the output file. You can then examine it with vi.
You should also be aware that there may be several archives on this tape accessing by using successive commands with the norewind device. e.g. /dev/rmt/0mn
If you don't recognize the format (man 4 tar & man 4 cpio for header information), you might try posting the od output and someone may recognize it.
Happy hunting, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-26-2001 11:08 AM
тАО07-26-2001 11:08 AM
Re: Need to read a DLT tape....
Tommy