how to untar .gz file in linux code example
Example 1: how to untar tar.gz
tar xvzf file.tar.gz
Example 2: bash command for unzipping tar.gz files
tar -zxvf file.tar.gz
Example 3: untar gz file ubuntu
tar -xf archive.tar.gz -C /home/linuxize/files
tar -xf archive.tar.gz file1 file2
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