Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

linux unpack tar.gz file

tar -zxvf file_name.tar.gz
Comment

install from tar gz file unix

tar -xzvf filename.tar.gz
Comment

how to install tar.gz in ubuntu

tar -xzf archive-name.tar.gz
cd archive-name
./configure
make
sudo make install
Comment

linux extract tar.gz

tar –xvzf documents.tar.gz
Comment

how to run tar.gz file in linux

1. Extract it all
2. Come to the folder in which you extracted it
3. ./(filename)
4. make
5. sudo make install
Comment

Linux install from .tar.gz

Install .tar.gz or (.tar.bz2) File
Installing a .tar.gz or (.tar.bz2) file is very easy. Ubuntu users can extract the .tar.gz file and compile a program from its source. Follow the steps given below to extract and install tar.gz files in Ubuntu.

It is wise to navigate to the downloaded .tar.bz folder and open and read the README file. It normally has the installation instructions. If not, you can install .tar.gz or (.tar.bz2) file via Terminal.

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
Comment

comment installer tar.gz

sudo make install
Comment

PREVIOUS NEXT
Code Example
Shell :: Please tell me who you are. in git 
Shell :: github push code from one repo to another 
Shell :: docker format 
Shell :: how to pull remote changes to local branch 
Shell :: tsv to csv file bash 
Shell :: git rollback 
Shell :: create service without spec 
Shell :: use github.com/stretchr/testify/assert 
Shell :: apt slow inside lxc 
Shell :: git command 
Shell :: start redis ubuntu 
Shell :: No such keg: /usr/local/Cellar/git 
Shell :: conda install libglu1 
Shell :: install qtpy 
Shell :: git change author multiple commits 
Shell :: xargs parameter 
Shell :: how to clone a branch github 
Shell :: shell list files in directory 
Shell :: how to move many folders linux 
Shell :: add folder to github 
Shell :: how set php version for composer in ubuntu 
Shell :: how to kill running port in ubuntu 
Shell :: windows openssh passwordless login 
Shell :: node git clone 
Shell :: get ssl certificate of url 
Shell :: git copy file from another branch 
Shell :: first 3 lines of a file 
Shell :: command to check python version in MacOS 
Shell :: powershell create folder recursively 
Shell :: linux delete files created at some year 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =