- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to Read data from 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
тАО04-10-2006 09:05 AM
тАО04-10-2006 09:05 AM
# mount /dev/rmt/0mn /tape
mount: /dev/rmt/0mn is an invalid operand
Below is the ioscan output:
# /usr/sbin/ioscan -funC tape
Class I H/W Path Driver S/W State H/W Type Description
======================================================================
tape 0 10/4/3/0.2.0 stape CLAIMED DEVICE HP C1537A
/dev/rmt/0m /dev/rmt/c5t2d0BESTn
/dev/rmt/0mb /dev/rmt/c5t2d0BESTnb
/dev/rmt/0mn /dev/rmt/c5t2d0DDS
/dev/rmt/0mnb /dev/rmt/c5t2d0DDSb
/dev/rmt/c5t2d0BEST /dev/rmt/c5t2d0DDSn
/dev/rmt/c5t2d0BESTb /dev/rmt/c5t2d0DDSnb
Thanks a lot
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2006 09:11 AM
тАО04-10-2006 09:11 AM
Re: How to Read data from DLT tape
Depending on the archive type, you will need a sufficient command to read the data, like
tar
frecover
cpio
dd
...
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2006 09:16 AM
тАО04-10-2006 09:16 AM
Re: How to Read data from DLT tape
Once ioscan sees the device as "CLAIMED" you will also need to run insf to create the device nodes. Having done this, your troubles may just be beginning because if Vertitas software was used for backup then you will need a compatible version of Veritas software to read the data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2006 09:22 AM
тАО04-10-2006 09:22 AM
Re: How to Read data from DLT tape
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-10-2006 09:23 AM
тАО04-10-2006 09:23 AM
Re: How to Read data from DLT tape
The commen way of backup types are:
- fbackup/frecover
- cpio
- tar
- dump/restore
- vxdump/vxrestore
- pax
to restore - examples:
# frecover whith a graph file : gfile
frecover -x -v -f /dev/rmt/0m -g gfile
# tar normal
tar -xvf /dev/rmt/0m
Regards,
Jannik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 12:37 AM
тАО04-11-2006 12:37 AM
Re: How to Read data from DLT tape
# tar -xvf /dev/rmt/0m
Tar: blocksize = 16
directory checksum error
# ls -rlt
total 0
# frecover -x -v -f /dev/rmt/0m
sh: frecover: not found.
# /usr/sbin/frecover -x -v -f /dev/rmt/0m
frecover(5419): checksum on volume header is incorrect.
frecover(5420): not an fbackup volume; magic value is incorrect
frecover(2105): did not find expected file marker
frecover(5412): Do you wish to try to salvage this volume? (^[yY]/^[nN]) n
frecover(5411): Do you wish to try a different volume? (^[yY]/^[nN]) n
frecover(5414): abort selected
both of them don't work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 02:02 AM
тАО04-11-2006 02:02 AM
Re: How to Read data from DLT tape
Do this:
dd if=/dev/rmt/0m bs=512 count=2 | od -v -Ad -tco > /var/tmp/f1
Next post the file, /var/tmp/f1, and someone may be able to identify the backup format.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 02:57 AM
тАО04-11-2006 02:57 AM
Re: How to Read data from DLT tape
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 03:24 AM
тАО04-11-2006 03:24 AM
SolutionAlmost certainly, there are additional images beyond this tape label that you can access using dd and the norewind devices. The mt command can also prove useful to skip past filemarks although multiple dd's using norewind (/dev/rmt/0mnb) is perhaps a better approach.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 05:29 AM
тАО04-11-2006 05:29 AM
Re: How to Read data from DLT tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-11-2006 08:02 AM
тАО04-11-2006 08:02 AM