Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to untar tar.gz

 tar xvzf file.tar.gz
Comment

unzip tar.gz

tar -xvf file.tar.gz
Comment

linux unpack tar.gz file

tar -zxvf file_name.tar.gz
Comment

untar tar.gz

tar -xzf file.tar.gz
Comment

unzip a tar.gz file in linux

tar -xvzf community_images.tar.gz
Comment

extract tar.gz in linux

tar –xvzf documents.tar.gz
Comment

how to unzip tar.gz file

tar -xvf archive.tar.gz
or
tar -xf archive.tar.gz -C /home/linuxize/files
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 :: shell: search a string if it contains another string 
Shell :: apache config directory 
Shell :: git tree 
Shell :: upgrading composer globally on windows 
Shell :: linux rename folder add suffix 
Shell :: change default directory of the server 
Shell :: how to install unzip in ubuntu 
Shell :: install angular cdk 
Shell :: install vscode ubuntu 18.04 
Shell :: changing mac address linux 
Shell :: git autocomplete branch name mac 
Shell :: install protonvpn debian 
Shell :: powershell grab regex 
Shell :: uninstall node mac 
Shell :: error: RPC failed; curl 56 LibreSSL SSL_read: Connection reset by peer, errno 54 
Shell :: install pylatex no dependency 
Shell :: clear mac dns cache 
Shell :: open bullet 2 installation on kali linux WEB 
Shell :: pacman remove orphaned dependencies 
Shell :: vs code set ubuntu wsl as default terminal 
Shell :: install ant design in react 
Shell :: how to install haxeflixel 
Shell :: full path of file linux 
Shell :: check kernel version of debian 
Shell :: bash slurm view jobs from date 
Shell :: use alternative composer version cpanel ssh 
Shell :: ubuntu 20 install lib32ncurses5 
Shell :: git reset to origin/master 
Shell :: terminal how to find a directory 
Shell :: install shutter ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =