create tar.gz in ubuntu code example

Example 1: create tar gz file from directory

tar -czf tarball.tar.gz my_directory/

Example 2: extract tar.gz ubuntu terminal

tar -xvf yourfile.tar.gz

Example 3: how to install tar.gz in ubuntu

Download the desired .tar.gz or (.tar.bz2) file
Open Terminal
Extract the .tar.gz or (.tar.bz2) file with the following commands
tar xvzf PACKAGENAME.tar.gz
tar xvjf PACKAGENAME.tar.bz2
Navigate to the extracted folder using cd command
cd PACKAGENAME
Now run the following command to install the tarball
./configure
make
sudo make install

Tags:

Misc Example