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

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

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

PREVIOUS NEXT
Code Example
Shell :: bash check if package is installed 
Shell :: setting the upstream for a fork github 
Shell :: find gpu device id linux 
Shell :: code first approach migration commands 
Shell :: linux search for files larger than 
Shell :: Waiting for your editor to close the file... 
Shell :: how to get the size of directory in linux 
Shell :: show saved wifi password windows 
Shell :: drush pm-list of enabled modules 
Shell :: ls display chmod number 
Shell :: git commits by author 
Shell :: git ignore vendor folder not working 
Shell :: go update all packages 
Shell :: valet: command not found 
Shell :: snap store fedora 
Shell :: [ERROR CRI]: container runtime is not running: output: 
Shell :: moodle purge cache from command line 
Shell :: how to add path in ubuntu 
Shell :: clementine linux download 
Shell :: docker remove all stopped 
Shell :: command separate words into lines 
Shell :: install obs studio ubuntu 
Shell :: Bitwarden docker-compose 
Shell :: mac kill port 8000 
Shell :: clear bash command history 
Shell :: pacman remove package and dependencies 
Shell :: snap store android studio 
Shell :: apt update one package 
Shell :: uninstall redis ubuntu terminal 
Shell :: k8s get current context 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =