Operating System - HP-UX
1819814 Members
2752 Online
109607 Solutions
New Discussion юеВ

Re: How To unzip/uncompress file?

 
Yap Yen Nee
Contributor

How To unzip/uncompress file?

I got a file with extension .gz and i guess it is in a compressed mode. How can I compress this file?

Thanks.
7 REPLIES 7
Bernhard Mueller
Honored Contributor

Re: How To unzip/uncompress file?

Hi,
to decompress use gzip -d or gunzip

Regards,
Bernhard
MarkSyder
Honored Contributor

Re: How To unzip/uncompress file?

gzip -dv xxx.gz (where xxx is the filename).

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
KapilRaj
Honored Contributor

Re: How To unzip/uncompress file?

I think gzip needs to be installed on ur node .. It's a freeware and get it installed before u can invoke it !!

Regds,

Kaps
Nothing is impossible
Robert-Jan Goossens
Honored Contributor

Re: How To unzip/uncompress file?

Ravi_8
Honored Contributor

Re: How To unzip/uncompress file?

Hi
In both 11i and 11.0
#/usr/contrib/bin/gunzip



never give up
Jose Mosquera
Honored Contributor

Re: How To unzip/uncompress file?

Hi,

In case of any doubt, first pls check file.gz integrity:
# gzip -tv file.gz

After this, you can also check the previous command return code:
# echo $?

Any return code not equal to zero value will indicate you that this .gz file not is a gzipped file or have an integrity trouble.

If this file is a not gzipped file, make your life easy, change .gz extension an go ahead with the simple command:
# gzip file

If you need full detailed info about gzip command: gzip -help

Rgds.
Kent Ostby
Honored Contributor

Re: How To unzip/uncompress file?

Interestingly, if you have two files, one created with gzip (ending .gz) and the other created with compress (ending in .Z).

The .Z file can be uncompressed by either uncompress or gunzip while the .gz file can only be uncompressed with gunzip.

So I tend to always use gunzip whether its a .Z extension or a .gz extension.

Best regards,

Kent M. Ostby
"Well, actually, she is a rocket scientist" -- Steve Martin in "Roxanne"