- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DDS3 Fails to read 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
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
05-31-2001 07:46 AM
05-31-2001 07:46 AM
DDS3 Fails to read DDS Tape
I have tried to read the tape using tar -tvf and by using the PDM data restore utility. Th ioscan -fnC tape shows:
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
tape 0 0/0/1/0.3.0 stape CLAIMED DEVICE HP C1537A
/dev/rmt/0m /dev/rmt/c0t3d0BESTn
/dev/rmt/0mb /dev/rmt/c0t3d0BESTnb
/dev/rmt/0mn /dev/rmt/c0t3d0DDS
/dev/rmt/0mnb /dev/rmt/c0t3d0DDSb
/dev/rmt/c0t3d0BEST /dev/rmt/c0t3d0DDSn
/dev/rmt/c0t3d0BESTb /dev/rmt/c0t3d0DDSnb
tape 2 0/2/0/0.3.0 stape CLAIMED DEVICE Quantum DLT4000
/dev/rmt/2m /dev/rmt/c8t3d0BEST
/dev/rmt/2mb /dev/rmt/c8t3d0BESTb
/dev/rmt/2mn /dev/rmt/c8t3d0BESTn
/dev/rmt/2mnb /dev/rmt/c8t3d0BESTnb
And lssf /dev/rmt/0m shows:
stape card instance 0 SCSI target 3 SCSI LUN 0 at&t best density available at ad
dress 0/0/1/0.3.0 /dev/rmt/0m
Do I need to take special steps to read a DDS 60 meter tape?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 07:59 AM
05-31-2001 07:59 AM
Re: DDS3 Fails to read DDS Tape
I sure someone has better news for you than I do. It is my understanding that the dds3 cannot read 60Meter tapes....those are really old tapes.
Peggy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 10:30 AM
05-31-2001 10:30 AM
Re: DDS3 Fails to read DDS Tape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 10:59 AM
05-31-2001 10:59 AM
Re: DDS3 Fails to read DDS Tape
DDS drives were supposed to backward compatible ?? Although I have never tried it.
Are you sure that the tape is in tar format?
Try other formats ? fbackup cpio etc.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 11:08 AM
05-31-2001 11:08 AM
Re: DDS3 Fails to read DDS Tape
We sometimes use old DDS-1 tapes for small dumps, never had problems.
BTW DDS-4 will be the last in the line. HP & Sony are switching to new technology (hmmmz I don't mean NT ;)
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 11:58 AM
05-31-2001 11:58 AM
Re: DDS3 Fails to read DDS Tape
Paula is correct, I keep an old DDS-1 drive around for just that reason; anyone can read it. DDS-1 can't read DDS-2 or DDS-3; but either DDS-2 or DDS-3 can read DDS-1.
Most likely you are having a blocksize problem or a byte swap problem.
I think the first thing I would do, is dd off a little bit of the file and have a look at it.
e.g.
dd if=/dev/rmt/0m bs=1024 count=2 of=/tmp/x1
Then do an od -c /tmp/x1 | pg.
Does any thing appear recognizable? Does it appear that every pair of bytes is swapped?
To correct byte-swapping:
dd if=/dev/rmt/0m bs=1024 conv=swab of=/tmp/x2
You may then have to adjust blocksize to match the original format.
When you're done; you might end up with a command that looks something like this:
dd if=/dev/rmt/0m bs=20b conv=swab | tar xvf -
Man dd for details.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 12:10 PM
05-31-2001 12:10 PM
Re: DDS3 Fails to read DDS Tape
Thanks,
Peg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 12:32 PM
05-31-2001 12:32 PM
Re: DDS3 Fails to read DDS Tape
I'm losing my memory in my old age. I did find a link to a tape drive support matrix - see: http://us-support.external.hp.com/cki/bin/doc.pl/sid=5c8f72121cecf12ecf/screen=ckiDisplayDocument?docId=200000054887074
Are you using /dev/rmt/0m for your tape drive?
What errors are you getting or symptons? Do you know what utility was used to write to the tape. All the suggestions above were good ones - hope one works.
Peg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2001 05:56 PM
05-31-2001 05:56 PM
Re: DDS3 Fails to read DDS Tape
tar (and cpio and other classic Unix tools) have terrible diagnostics. HP's tar expects 10K records and gives no clue what the problem is when a different record size is used. Use pax instead of tar (which reads both tar and cpio) since pax adapts to different record sizes.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2001 12:14 AM
06-01-2001 12:14 AM
Re: DDS3 Fails to read DDS Tape
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x171172106351d5118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2001 01:45 AM
06-01-2001 01:45 AM
Re: DDS3 Fails to read DDS Tape
You had enough good answers . Let me add my contribution to this,
HP DAT Drives are classified mainly into two groups
The DDS series...... Comes with HP9000
The Surestore series.......Comes with HP Netservers (Intel based servers)
Both have 3 or 4 generations
2/4 GB ............ 90 metres ----DDS1.........Surestore 2000
4/8 GB ............ 90 /120 metres ........DDS2.........Surestore DAT 8 i
12/24 GB ........ 90 /120 / 125 metres ........DDS3 ..........Surestore 24 i
fourth one i hv'nt seen so far....
The first column is data capacity ,second catridges supported , third it's DDS member & fourth is it's surestore member.
Backups taken on DDS can not be read by Surestore & vice versa
The DDS3 can read/write DDS3 , DDS2 & DDS1
The DDS2 can read/write DDS2 & DDS1 not DDS3 and above
The DDS1 can read/write DDS1 not DDS2 and above
So in this case your catridge may be a surestore one. please confirm.
if it is so you can connect a surestore 4/8 GB or 12/24 GB Drive to your system & retrieve your data.
I never heard abt 60 metre catridges !!!! they are audio cassets !!!
Good luck
kaps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2001 03:16 AM
06-01-2001 03:16 AM
Re: DDS3 Fails to read DDS Tape
I switched to DDS3 125m Tapes.
Christian