- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unable to uncompress a file
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
03-01-2004 04:22 AM
03-01-2004 04:22 AM
The two files copied over are:
HPUXXPXX_3.01.23.tar and
PrinterPkgXPXX_2003_01_06.tar
After taring these files, the CentreWare Readme Services for Unix system says this is a two part installation, and the code mackage must be installed first, followed by printer support package.
After taring the code package, I get three more tar files, and they are:
pkg_tar.z1
pkg_tar.z2
pkg_tar.z3
Here is my problem, I am unable to tar these files, unable to gunzip or uncompress these files. I believe its the suffix that is causing problems. Would renaming the pkg_tar.z1 to pkg_tar.z do the trick?
Has anyone worked with installing this driver?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:25 AM
03-01-2004 04:25 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:28 AM
03-01-2004 04:28 AM
Re: unable to uncompress a file
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:29 AM
03-01-2004 04:29 AM
Re: unable to uncompress a file
I would do something like:
mv pkg_tar.z1 pkg_1_tar.Z
mv pkg_tar.z2 pkg_2_tar.Z
mv pkg_tar.z3 pkg_3_tar.Z
I would do that just so you don't get confused down the road and wonder which was which.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 04:44 AM
03-01-2004 04:44 AM
Re: unable to uncompress a file
maybe it should be one file?
then you should make a cat of these 3 files to one file.
But first I would try another ending .gz for gunzip, .Z for uncompress.
Good luck
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 05:03 AM
03-01-2004 05:03 AM
Re: unable to uncompress a file
So I will rename the pkg_tar.z1 to pkg_1_tar.Z and uncompress it.
Thanks and will let you know if this works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 05:34 AM
03-01-2004 05:34 AM
Re: unable to uncompress a file
If this is not compressed and an awk program, then why did the original file come with the z2 suffix (pkg_tar.z2)?
Since this is an awk program, and not a compressed file, I don't need to unccompress it. The uncompressed pkg_1_tar.Z gave me pkg_1_tar, and I need to untar this file, and maybe this wile will run this awk program? Is that the way it's supposed to work?
Thank you all for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2004 05:46 AM
03-01-2004 05:46 AM
Re: unable to uncompress a file
Do a more on the file and see if it really is an awk file. If not, it is possible that this file was not copied in binary mode.
If it is an awk file then it is odd that it was named as it was and extremely odd that there was no script to run your awk file with.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2004 05:11 AM
03-02-2004 05:11 AM
Re: unable to uncompress a file
cat pkg_tar.z1 |gunzip
cat pkg_tar.z1 |uncompress
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-02-2004 01:57 PM
03-02-2004 01:57 PM
Re: unable to uncompress a file
Try this:
cat pkg_tar.z1 pkg_tar.z2 pkg_tar.z3 > pkg.tar.Z
uncompress pkg.tar.Z
Or, go crazy and extract it at the same time:
cat pkg_tar.z1 pkg_tar.z2 pkg_tar.z3 | uncompress | tar -xf -
Regards,
Seth