- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Tar -xvf giving directory checksum errors
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
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
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
тАО01-30-2002 07:04 AM
тАО01-30-2002 07:04 AM
jre.tar.Z but I keep getting the directory checksum error.
Any Suggestions?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 07:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 07:29 AM
тАО01-30-2002 07:29 AM
Re: Tar -xvf giving directory checksum errors
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4c87663ce855d511abcd0090277a778c,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 07:30 AM
тАО01-30-2002 07:30 AM
Re: Tar -xvf giving directory checksum errors
You can do it all in one step with:
gzcat jre.tar | tar -xvf -
or
gunzip -c jre.tar | tar -xvf -
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 07:33 AM
тАО01-30-2002 07:33 AM
Re: Tar -xvf giving directory checksum errors
Normally you'd use:
uncompress jre.tar (or jre.tar.Z)
tar xvf jre.tar
If space is a concern you can use inline de-compression piped to tar:
uncompress -c jre.tar | tar xvf -
I'd first verify the contents of the tar file with tvf.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 08:04 AM
тАО01-30-2002 08:04 AM
Re: Tar -xvf giving directory checksum errors
You need to 'gunzip' it first and then untar. Try this for all latest patches and downloads on Java:
http://www.hp.com/products1/unix/java/index.html
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 08:06 AM
тАО01-30-2002 08:06 AM
Re: Tar -xvf giving directory checksum errors
You probably need to run uncompress but let's not overlook the obvious. You did do a binary download/transfer of the file?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-30-2002 08:11 AM
тАО01-30-2002 08:11 AM
Re: Tar -xvf giving directory checksum errors
/usr/bin/uncompress jre.tar.Z
tar xvf jre.tar
should work fine.
-raj