- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Methods of reading a DDS 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
тАО05-29-2001 11:36 PM
тАО05-29-2001 11:36 PM
So far, I hav NEVER been successful in reading any of the tapes. Commands I used include :-
a) tar -tvf /dev/rmt/0m
b) dd if=/dev/rmt/0m bs=1k
c) cpio -it < /dev/rmt/0m ("-c" option tried as well)
May I know what other commands I can try (on HP-UX 10.20) to retrieve files from other variants of Unix. Any appropriate corrections to the above commands would also be appreciated.
NOTE : I will not be able to feedback on whether suggestions are able to retrieve files fr those tapes -- I do not hav the tapes -- but will definitely make use of the suggestions on the next enquiry from users.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-30-2001 12:10 AM
тАО05-30-2001 12:10 AM
Re: Methods of reading a DDS Tape
I think that if dd isn't able to read from the tape it means that the tape was recorded in a drive using a format that your current drive doesn't support.
Best regards
JGM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-30-2001 12:45 AM
тАО05-30-2001 12:45 AM
Re: Methods of reading a DDS Tape
the first step is to find an old box with old DDS drive that is able to physical read the first block of your tape with dd.
Than you find out the logical format of this reco file (tar, cpio, ...) with command file.
Use this logical command with different block size to read the complete tape.
Good Luck
Ruediger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-30-2001 03:57 AM
тАО05-30-2001 03:57 AM
Solutionwhat is the message?
Is tape.1 0 bytes size?
No? run file /tmp/tape.1
2- Older driver writes in 512 bytes as physical block sizes. I think thah actual drivers can read old tapes, but if you need to try you can create a new special file for that tapes:
mksf -C tape -b DDS1 -H 4/0.0.0 -s 512
mksf -C tape -b DDS1 -H 4/0.0.0A -s 512 -n
Now you will found :
/dev/rmt/c?t?d?s512DDS1
/dev/rmt/c?t?d?s512DDS1n
Try with these ones.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2001 04:35 AM
тАО05-31-2001 04:35 AM
Re: Methods of reading a DDS Tape
You could try this:
dd if=/dev/rmt/0m of=/tmp/header count=10
file /tmp/header - which will give you the file format of the DDS tape.
Cheers,
Joseph.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2001 07:07 PM
тАО05-31-2001 07:07 PM
Re: Methods of reading a DDS Tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2001 09:32 PM
тАО05-31-2001 09:32 PM
Re: Methods of reading a DDS Tape
you can use:
/usr/sbin/frecover -f /dev/rmt/0m -N -v
-N option Prevents frecover from actually recovering any files onto disk, but read the backup as if it was.
You can use frecover as it can read archives produced by fbackup as well as tar. You can go through man page of frecover for more informatin.
Regards,
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-31-2001 09:35 PM
тАО05-31-2001 09:35 PM
Re: Methods of reading a DDS Tape
/usr/sbin/frecover -N -v -f /dev/rmt/0m
Cheers...
Satish.