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

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

PREVIOUS NEXT
Code Example
Shell :: poython opencv pip 
Shell :: shell profile 
Shell :: git stash with message 
Shell :: bash if greater than 
Shell :: upload folder to gitlab 
Shell :: install prettier globaly 
Shell :: install nginx mariadb php on mac 
Shell :: how to undo a git stash 
Shell :: set gunicorn timeout via command 
Shell :: install rbenv 
Shell :: get list of all branches github 
Shell :: windows terminal starting directory 
Shell :: bc sum command 
Shell :: git difftool meld 
Shell :: get color in bashrc 
Shell :: git fatal pack has bad object at offset 
Shell :: linux remove all from current directory 
Shell :: fusion 360 on linux 
Shell :: Ports are not available: listen tcp 0.0.0.0:61616: bind: An attempt was made to access a socket in a way forbidden by its access permissions. 
Shell :: restart wsl 
Shell :: list all running processes linux 
Shell :: flutter devices 
Shell :: ubuntu large text 
Shell :: substring in shell script 
Shell :: centos web panel install 
Shell :: grep nth line 
Shell :: configure meld as git mergetool ubuntu 
Shell :: ubuntu 755 and 644 
Shell :: show internet password 
Shell :: sudo tee trick 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =