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

#install downloaded .deb
sudo dpkg -i /path/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 :: uninstall figma from linux distributions 
Shell :: restart network raspberry pi 
Shell :: windows npm install permission denied 
Shell :: powershell remove folder and contents 
Shell :: installing SQLite3 on ubuntu 20.04 
Shell :: sh wait 10 seconds 
Shell :: install php7.4 curl 
Shell :: install nginx 
Shell :: -bash: /usr/bin/composer: No such file or directory 
Shell :: add dns in ubuntu permanently 
Shell :: wget with username and password 
Shell :: install youtube-dl in ubuntu 
Shell :: save account to git 
Shell :: locale setting linux 
Shell :: how to check cpu temperature ubuntu 
Shell :: docker compose unless stopped 
Shell :: yarn list global packages 
Shell :: how to uninstall chromium through terminal 
Shell :: git get current commit hash 
Shell :: delete docker logs linux 
Shell :: git remote list urls 
Shell :: fingerprint login disabled ubuntu 20.04 
Shell :: subtract first time step paraview 
Shell :: how to uninstall lightshot in ubuntu 
Shell :: source fish config 
Shell :: how to install angular cli in ubuntu 20.04 
Shell :: composer drush 
Shell :: linux resize image 
Shell :: git ignore still tracking 
Shell :: linux count number of files in directory and subdirectory 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =