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

PREVIOUS NEXT
Code Example
Shell :: docker loki 
Shell :: where are dns entries on linux 
Shell :: git ignore files 
Shell :: downoad woe usb or ubuntu linux 
Shell :: terraform version command 
Shell :: linux list users 
Shell :: The CUDA compiler identification is unknown CMake Error at CMakeLists.txt:441 (enable_language): No CMAKE_CUDA_COMPILER could be found. 
Shell :: git first time 
Shell :: command to install strongswan 
Shell :: 2 digit after the coma pytohn 
Shell :: install rtools rstudio 
Shell :: clear tracked files from git 
Shell :: reinstall settings app ubuntu 
Shell :: bash find term in files 
Shell :: linux print directory tree 
Shell :: pacman corrupted package 
Shell :: install redis on ubuntu 20.04 
Shell :: docker compose up from another file 
Shell :: how to fix libffi missing in macos 
Shell :: qemu-img convert vdi to qcow2 
Shell :: how to run powershell without admin rights 
Shell :: how to autostart containers in ubuntu 
Shell :: concatenate multiple zip files linux 
Shell :: code in terminal 
Shell :: read lines bash script 
Shell :: reinstall windows apps powershell 
Shell :: create a new git repository on the command line 
Shell :: powershell connect to microsoft teams 
Shell :: Invalid base64-encoded string: number of data characters (221) cannot be 1 more than a multiple of 4 
Shell :: composer install from local directory 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =