Answers for "instalar tar gz ubuntu"

39

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

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

extract tar.gz Ubuntu terminal

cd ~/Downloads/archive.tar.gz #first navigate to file location
tar -xzvf archive.tar.gz -C /path/to/new/directory/ 
#-C flag will change the extraction to a new directory.
#remove -C if you want to extract it to current location.
Posted by: Guest on June-14-2021
0

como instalar paquetes tar.gz en ubuntu

tar -zxvf ubunlog.tar.gz
Posted by: Guest on February-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language