unzip tar.gz in linux code example

Example 1: bash command for unzipping tar.gz files

# Basic syntax:
tar -zxvf file.tar.gz

# Where:
#	- x tells tar to extract the files
#	- v tells the command to list all of the files in the archive
#	- z tells the tar command to uncompress the file (gzip)
#	- f tells tar that you are going to give it a file name to work with

Example 2: unzip a tar.gz file in linux

tar -xvzf community_images.tar.gz

Example 3: how to extract tar.gz

If your tar file is compressed using a gzip compressor, use the following command to extract it.

    $ tar xvzf file.tar.gz
    
If your tar file is compressed using a bZip2 compressor, use the following command to extract it.

    $ tar xvjf file.tar.bz2

Example 4: extract tar.gz linux command line

tar xvzf file.tar.gz

Example 5: unrachive .tar.gz

tar -xvzf community_images.tar.gz
Also, to extract in a specific directory

for eg. to extract the archive into a custom my_images directory .

tar -xvzf community_images.tar.gz -C my_images

Example 6: tar.gz files

tar -czvf name-of-archive.tar.gz /path/to/directory-or-file

Tags:

Misc Example