how to run tar.gz file in linux code example
Example 1: linux unpack tar.gz file
tar -zxvf file_name.tar.gz
Example 2: install from tar gz file unix
tar -xzvf filename.tar.gz
Example 3: how to install tar.gz in ubuntu
tar -xzf archive-name.tar.gz
cd archive-name
./configure
make
sudo make install