Q. I have download files from the Internet. Each file has .gz extension. How do I open .gz files under Linux?
A. You need to use gzip / gunzip program. It is a software application used for file compression. It is based on the DEFLATE algorithm, which is a combination of LZ77 and Huffman coding. DEFLATE was intended as a replacement for LZW and other patent-encumbered data compression algorithms
How do I extract a gz file?
Use guzip command as follows:
$ gunzip file.gz
OR
$ gzip -d file.gz
To see new file, enter:
$ ls -l
How do I extract a tar.gz or .tgz file?
Files with extension tar.gz or .tgz are tar files compressed with gzip. On Unix system extract them with following command:
$ gunzip
If you have GNU tar (Linux system) you can use the z option directly:
$ tar xvzf file.tar.gz
$ tar xvzf file.tgz
🐧 21 comments so far... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
I can extract a .gz file using WinZip but how do I open a .gz file under Windows XP?
install 7Zip: http://www.7-zip.org/
set it in the path
use this utility to unzip in windows
Sir,
I have some softwares downloaded from internet and few copied from Chip Magazine’s data dvds. I have dual-boot system[Windows xp home and ubuntu 8.10].I do not have much experience about computers and want to install few softwares which are in tar.gz formats and few are in tar.bz2 formats. I do not know how to install them-Only the deb or i386 formats are can be installed through Gdebi installer.Will you suggest me how to?
Nice blog!!
Keep it up!!
Really nice one-exactly the one needed.
It’s giving me following error :
====
root@server [/10gR2_db]# gzip -d 10201_database_linux_x86_64.cpio.gz
gzip: 10201_database_linux_x86_64.cpio.gz: unexpected end of file
root@server [/10gR2_db]
====
#mv 10201_database_linux_x86_64.cpio.gz 10201_database_linux_x86_64_cpio.gz
thank you for the help. really appreciate it.
tar: error i not recoverable : existing now …
this is the error m getting anyone have idea how do i resolve this
?
That was useful. Just a note: too often the compressed file has the extension .tar (not in gzip format). Then just use tar xvf file.tar
Many tx!
gunzip: configuration_files.tar.gz: unexpected end of file
this problem with the zip file,it must be corrupted during ftp
Thank You Very Very Much
Because Site & You
if we need to gzip a folder and all the files inside the folder ,
gzip -d works ?
Is there any command in unix to extract .deflate files?
thank you. it was really helpful.
30-35% of my troubleshooting queries on google lands me here at cyberciti.biz and believe me 30-35% is a lot considering the whole www. You guys have done an excellent job creating these really helpful articles.
Keep it up.
Thanks for the kind words. We appreciate your support :)
It work :) thanks ….
Really Really very helpful
cyberciti.biz is an important resource for any one wants to learn Linux. I did learn lots from your posts. Thank you for the hard working and sharing the good knowledge.