Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install from tar gz file unix

tar -xzvf filename.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 :: git stash to checkout master 
Shell :: scaffold controller ef core 
Shell :: linux kill ssh connection 
Shell :: bash read command examples 
Shell :: nvm command 
Shell :: start elasticsearch on aws 
Shell :: pwd in command prompt 
Shell :: nginx install ssl certificate centos 
Shell :: pull all remote branch into new local 
Shell :: fix corrupt pdf command line 
Shell :: restart service linux crontab 
Shell :: rename a local and remote git branch 
Shell :: use linux to call via android phone 
Shell :: hide permission denied ~/.bash 
Shell :: powershell command line variables 
Shell :: how to exit git in terminal 
Shell :: Install GitLab using Docker Engine 
Shell :: get total github lines 
Shell :: give full permission to folder and subfolders in linux 
Shell :: c interpreter 
Shell :: linux command line 
Shell :: bash compare two strings 
Shell :: git create branch 
Shell :: syslog-ng[31899]: error processing log message: <111 splunk format 
Shell :: drop caches 
Shell :: open . command 
Shell :: pyinstaller onefile hidden window 
Shell :: bash find file 3 hour 
Shell :: install docpars 
Shell :: fast rename fasta header 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =