Answers for "how to install tar.gz in ubuntu"

25

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
Posted by: Guest on April-26-2020
6

install from tar gz file unix

tar -xzvf filename.tar.gz
Posted by: Guest on May-11-2020
5

how to install tar.gz in ubuntu

tar -xzf archive-name.tar.gz
cd archive-name
./configure
make
sudo make install
Posted by: Guest on August-17-2020
0

run tar.xz ubuntu

tar xf [filename]
Posted by: Guest on May-31-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language