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 revert last 2 commits 
Shell :: github axios 
Shell :: pod reference github 
Shell :: how to highlight code in github editor 
Shell :: how to add and commit all files in git 
Shell :: mac bash_profile file not b eing sources 
Shell :: docker on linux 
Shell :: clone private repo github ssh 
Shell :: install jellyfin docker 
Shell :: shell thousand comma in number 
Shell :: delete a pushed commit 
Shell :: linux password expires date 
Shell :: yii3 install 
Shell :: powershell get disk space remote computer 
Shell :: git request-pull 
Shell :: how to permanently install wifi drivers realtek 8723de in ubuntu 18.04 
Shell :: winui 3 installation 
Shell :: symfony skeleton version 
Shell :: cs50 cli50 install 
Shell :: git shell 
Shell :: how to use https in npm install instead of ssh 
Shell :: wormhole for linux 
Shell :: git undo all changes 
Shell :: linux mint 
Shell :: download file on linus ssh 
Shell :: git connect local to remote 
Shell :: rsync exclude empty directories 
Shell :: download directory ssh linux 
Shell :: vault installation 
Shell :: deno install windows 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =