Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install deb file

sudo dpkg -i /path/to/deb/file
sudo apt-get install -f
Comment

how to install .deb in terminal

# To install .deb
sudo dpkg -i package_name.deb

# To uninstall .deb (dpkg installed) packages
# remove it using Adept, or type: 

sudo apt-get remove package_name
Comment

install deb file in ubuntu

sudo apt install path_to_deb_file
Comment

install ubuntu deb

#install downloaded .deb
sudo dpkg -i /path/name.deb

#install packages
sudo apt install package_name
Comment

install *.deb file in ubuntu

Install a downloaded program in Ubuntu - Linux
sudo dpkg -i package_file.deb
//or
sudo apt install path_to_deb_file
Comment

install deb file

sudo apt install ./file_name.deb
Comment

Installing deb file in Linux

sudo dpkg -i path_to_deb_file
Comment

how to install deb package with apt

sudo apt install ./foo.deb
Comment

install .deb apps

for deb files

sudo dpkg -i (filename )
Comment

force install deb file

#offline install
dpkg --force-all -i PackageName
Comment

PREVIOUS NEXT
Code Example
Shell :: how to zip folder on linux 
Shell :: how to install docker compose on windows 
Shell :: powershell trim trailing spaces 
Shell :: video editor for ubuntu 21.10 
Shell :: git apply diff 
Shell :: how to install visual studio code in kali 
Shell :: update cpanel 
Shell :: sed from match to end of file 
Shell :: what is remote repository 
Shell :: ssh current directory 
Shell :: how to rebase initial commit 
Shell :: run docker as user not root 
Shell :: install npm in windows 
Shell :: delete all mail terminal 
Shell :: how to install source plugin gatsby 
Shell :: copy file from server to local 
Shell :: upload git repository to github 
Shell :: ubuntu 20.04 ifconfig public ip address 
Shell :: args in shell 
Shell :: how to move to directories in command prompt 
Shell :: uninstall 
Shell :: env file in firebase 
Shell :: list groups linux for user 
Shell :: how to add code to git 
Shell :: merge pdf in linux 
Shell :: linux extract txz 
Shell :: launch sublime from terminal 
Shell :: how to git push to current branch 
Shell :: kivy install ubuntu 
Shell :: kills a process on port 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =