![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| gunzip error - not in gzip format | eagercyber | UNIX for Dummies Questions & Answers | 5 | 05-29-2008 12:58 AM |
| gunzip question | devs | UNIX for Dummies Questions & Answers | 3 | 03-26-2007 10:54 PM |
| gunzip error | mccoubreyr | UNIX for Dummies Questions & Answers | 3 | 01-16-2004 11:34 AM |
| gunzip error | pkappaz | UNIX for Dummies Questions & Answers | 2 | 03-16-2003 06:06 PM |
| Gunzip | CreamHarry | UNIX for Dummies Questions & Answers | 4 | 06-04-2002 02:27 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
error using gunzip
Good day,
Recently I zipped an oracle export file task123.dmp using gzip. And now I am trying to unzip it using gunzip task123.dmp.gz but am unable to do so. It keeps on giving the following error; > gunzip task123.dmp.gz gunzip: task123.dmp: File too large The task123.dmp.gz file size is 248MB. And that particular file system has a balance of 28GB of space. I did try to unzip it Winzip 8.0 in a Windows 2000 Server and it was successful. An unzipped task123.dmp file size is only 2.58GB. My question; why is this happening? I've not faced this kind of error before. Is there any way of over coming this? Thank you... |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
I've found a solution for this.
gunzip < task123.dmp.gz > task123.dmp |
|
#3
|
||||
|
||||
|
I would use a pipe: cat task123.dmp.gz | gzip -dc > task123.dmp
|
|
#4
|
|||
|
|||
|
Quote:
What is your gzip version (type gzip -V) try download a new version, like 1.3.5. |
|||
| Google The UNIX and Linux Forums |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|