- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- can't read Solaris GNU tar tape on RedHat
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
06-08-2005 09:49 AM
06-08-2005 09:49 AM
can't read Solaris GNU tar tape on RedHat
A tar tape was written on Solaris (SPARC) using gnu tar and shipped to us.
We can't read it on RedHat RHEL 3.0 on HPQ 525 (AMD 64). We are using exactly the same tape drive to try to read it. We've tried different blocking factors.
Any ideas on how we can try reading this tape? Anything that should be different on how this tape is written? Any reason why this souldn't work (transporting tape from Solaris to RedHat on AMD)?
Thanks,
Doug
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2005 11:50 AM
06-08-2005 11:50 AM
Re: can't read Solaris GNU tar tape on RedHat
I know that reading a tape back on Linux can sometimes be problematic (ejecting at the wrong time, not leaving the tape at the right file marker sometimes) compared to the more commercial unicies, but with a bit of fiddling (usually involving 'dd') it should be ok.
Just as an idea, stick the tape in, rewind it, dd off the first 100kb, and see what 'file' makes of the datastream (i.e. 'dd if=/dev/st0 bs=10240 count=10 | file -'). If it doesn't say some sort of tar archive, then you've got issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2005 01:16 PM
06-08-2005 01:16 PM
Re: can't read Solaris GNU tar tape on RedHat
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2005 05:30 PM
06-08-2005 05:30 PM
Re: can't read Solaris GNU tar tape on RedHat
This should give you a file on disk. Thats much easier to handle and check.
First you can see if there is really something on the tape. 2nd you can check the file "file /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2005 09:21 PM
06-08-2005 09:21 PM
Re: can't read Solaris GNU tar tape on RedHat
dd if=/dev/tapedevice | tar xvf -
Where both dd and tar can have their added options to read the tape c.q. stream. This avoids having the tape-image on disk.