- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tar - directory checksum error
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
07-31-2001 04:15 AM
07-31-2001 04:15 AM
Tar - directory checksum error
any suggestions???
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 04:52 AM
07-31-2001 04:52 AM
Re: Tar - directory checksum error
is the system on which you wanted to extract does has sufficient space?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 05:04 AM
07-31-2001 05:04 AM
Re: Tar - directory checksum error
d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 06:23 AM
07-31-2001 06:23 AM
Re: Tar - directory checksum error
check with ioscan -fnkCtape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 06:23 AM
07-31-2001 06:23 AM
Re: Tar - directory checksum error
First, try a new tape. There could be a problem with the tape that only one of the machines is catching.
If you experience problems with a new tape, the problem is probably the head alignment on one of the drives is off slightly. You will need to identify which drive is causing the problem then have it replaced.
...jcd...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 06:31 AM
07-31-2001 06:31 AM
Re: Tar - directory checksum error
Incase both the drives are DDS-3 ( you can check by giving mt -f /dev/rmt/0m status ) .Then the problem lies with compatibility in terms of head alingment , though each drive will read and write the tape properly but a tape written on one will not be read by other . It is similar to the VCR tape which work fine on one VCR but not on the other . SO the solution is that replace one of the drives and the tapes can be read across. This happens very rarely but has happened to our computers once in the recent past.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 01:40 PM
07-31-2001 01:40 PM
Re: Tar - directory checksum error
Be careful to check that you are using the same version of tar on both machines. If the tape was made with GNU tar, you may have problems reading the tape back with the native tar.
The GNU tar has it's own particular way of handling deeply nested paths, and it is not the same as most native tar programs.
In that case, you can sometimes get past the error by using a tar command line switch to ignore checksum errors, but not all tar versions support this option.
A better solution is to obtain the same tar used to create the tape, and use that. It should always be able to read the tapes it created.
If you are not getting I/O or read errors, it usually means there is a software problem, not a problem reading the tape. Try using the 'dd' program to read the tape. If it reads all the way to the end with no errors, then you are not having a problem reading the tape, and you should focus on differences in the software on the two machines.
If you get different error messages from 'dd', that should point you in the right direction to solve the problem.
Best of luck,
--Carl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2001 12:13 AM
08-01-2001 12:13 AM
Re: Tar - directory checksum error
1- use cleaning tape in both drivers. once or twice. And try a new tape.
2- check with dd for I/O errors.
dd if=/dev/.... of=/dev/null bs=10k
3- dd if=/dev/.... of=/tmp/dd.1 bs=10k count=1
file /tmp/dd.1
tar tvf /tmp/dd.1
4- dd if=/dev/... bs=10k | tar tvf -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2001 04:41 AM
08-01-2001 04:41 AM
Re: Tar - directory checksum error
thanks again, this forum helps me alot.
Dave