How To Unpack .tgz File On Linux
Posted on: 26 July 2014 /
Categories:
How do I unpack .tgz (tar.gz) file on Linux using command line options?
Most Linux and open source software files are distributed in either .tgzor .tar.gz extensions format over the Internet. These files are gzipd tar balls and include multiple files and sub-directories into a single file using tar command. To save the bandwidth tar files are cpmpressed using gzip program.
Unpacking .tgz files command
The syntax is as follows:
tar zxvf fileNameHere.tgz
Or try the geeky bash pipe based syntax:
gunzip -c fileNameHere.tgz | tar xvf -
Examples
In this example, unpack a file called backups.tgz, enter:
tar zxvf backups.tgz
OR
gunzip -c backups.tgz | tar xvf -
Sample outputs:
tar: Removing leading '/' from member names x Users/vivek/Downloads/db.txt x Users/vivek/Downloads/resume.txt x Users/vivek/Downloads/vendors.txt x Users/vivek/Downloads/sales.txt
To unpack and put files in a different folder (directory) say /tmp/data, enter:
tar zxvf backups.tgz -C /tmp/data ls -l /tmp/data
tar command options
- -z : Uncompress the resulting archive with gzip command.
- -x : Extract to disk from the archive.
- -v : Produce verbose output i.e. show progress and file names while extracting files.
- -f backup.tgz : Read the archive from the specified file called backup.tgz.
- -C /tmp/data : Unpack/extract files in /tmp/data instead of the default current directory.