- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: gzip 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
09-10-2002 10:38 PM
09-10-2002 10:38 PM
when I us :
gzip -c data.tar > /ccdata/cc/mike/data.tar.gz
data.tar: Unknown error
please help me!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:08 PM
09-10-2002 11:08 PM
Re: gzip error
You have overstepped the 2 gig limit, tar has the same problem.
Either split the file or download and install pkzip for HP-UX.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:08 PM
09-10-2002 11:08 PM
Re: gzip error
Try it without the -c option;
gzip data.tar
(it will replace the file with data.tar.gz if successfully compresssed) It sounds like it might be having trouble reading the data.tar file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:11 PM
09-10-2002 11:11 PM
SolutionPkzip here:-
http://nct.digitalriver.com/fulfill/0018.5
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:16 PM
09-10-2002 11:16 PM
Re: gzip error
Another option:-
Untar the file, zip the files and tar them again.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:17 PM
09-10-2002 11:17 PM
Re: gzip error
Paula - are you sure about this 2Gb limit. I just gzip'd a 13GB tar file down to 3.5Gb successfully. No problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:39 PM
09-10-2002 11:39 PM
Re: gzip error
Ooops sorry you are right - late night last evening.
Please ignore my 2 gig limit bit.
Back to the question:-
Do you have sufficient space to gzip a 3 gig file?
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:56 PM
09-10-2002 11:56 PM
Re: gzip error
The 11.00 standard issue gzip (/usr/contrib/bin/gzip) has a 2Gb limit. Identifies itself as follows with gzip -V
gzip 1.2.4 (18 Aug 93)
Compilation options:
DIRENT UTIME STDC_HEADERS HAVE_UNISTD_H
The latest version available from the porting centre has no such limit:
/usr/local/bin/gzip -V
gzip 1.3.3
(2002-03-08)
...
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2002 12:21 AM
09-11-2002 12:21 AM
Re: gzip error
very interesting. Using the Aug93 gzip version (old with supposed 2Gb limit) I can still create a 3+GB tgz file by doing;
tar cf - <13Gb source files> | gzip > t.tgz
If I create the 13Gb tar file first then try to simply gzip it if fails with unknown error, but the above does work so even though it has a 2Gb limit you can workaround it by doing your gzip the above way - without having to install a later version of gzip.