Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install software in linux terminal

$ sudo apt install app_name
Comment

linux install software

# for software built using make system
# get binary files use wget/curl/apt-get/etc.
wget <source>
apt-get source <pkg_name>
# unzip it using command unzip/tar/etc.
./configure --prefix=<path to install software>
make && make install
make clean
# set symbolic link for the software
ln -s <path to installed software> <path included in system paths>
Comment

how to install software in linux terminal

$ sudo dpkg -i app_name.deb
Comment

PREVIOUS NEXT
Code Example
Shell :: git update another branch 
Shell :: github new repo 
Shell :: how to uninstall django 
Shell :: get total github lines 
Shell :: docker start container detached 
Shell :: python re.sub examples 
Shell :: give full permission to folder and subfolders in linux 
Shell :: command to make shell variable as an environment variable 
Shell :: view memory usage linux 
Shell :: github change commit date 
Shell :: how add ssh 
Shell :: steps to assign mfa using aws cli 
Shell :: shell cd 
Shell :: reset git from last commit 
Shell :: cors package install npm 
Shell :: syslog-ng[31899]: error processing log message: <111 splunk format 
Shell :: How to add a shell script to launcher 
Shell :: delete all files in a folder linux 
Shell :: how to get data from pc to cluster 
Shell :: create vite app 
Shell :: run specific logrotate 
Shell :: Install Chef Habitat from the Command Line 
Shell :: rsyslogd verify service is running 
Shell :: fast rename fasta header 
Shell :: sigin failed for rsa github signing 
Shell :: rpm scriptlets 
Shell :: if data is not available column header should print in output file in powershell 
Shell :: docker laravel configuration ubuntu 
Shell :: does among us exist for linux 
Shell :: Install Lumen CSV 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =