Extract .gz file in linux
The .gz file extension are created using Gzip program which reduces the size of the named files using Lempel-Ziv coding (LZ77). gunzip / gzip is software application used for file compression. gzip is short for GNU zip; the program is a free software replacement for the compress program used in early Unix systems.
Each file is replaced by one with the extension .gz, while keeping the same ownership modes, access and modification times.
To expand i.e. to Unpacking or uncompressing gz files you need to use gunzip program Or gzip -d or zcat program:
Using gunzip command:
Using gzip -d command:
If file extension is tar.gz, type the command:
Please note that gunzip can currently decompress files created by gzip, zip, compress, compress -H or pack programs.
0 comments:
Post a Comment