How to Uncompress Files in Linux
Posted by Johan Cyprich on 25 Apr 2008 | Tagged as: Tech Tips
Linux users frequently have to uncompress .tar, .gzip, or .zip files. There are GUI utilities that can do this, but there may be instances where you have to do this from a Linux command shell. The following commands covers the most used compression formats for Linux.
Uncompressing a .tar File
tar -xvf file.tar
Uncompressing a .gz File
gunzip file.gz
Uncompressing [...]