Answers for "Does Ubuntu use deb or rpm?"

88

install deb file

sudo dpkg -i /path/to/deb/file
sudo apt-get install -f
Posted by: Guest on March-31-2020
4

Does Ubuntu use deb or rpm?

Ubuntu is BASED on debian

Therefore ubuntu users should use .deb files, not .rpm
Posted by: Guest on January-31-2022
-1

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
Posted by: Guest on November-28-2021
2

install deb file

sudo apt install ./file_name.deb
Posted by: Guest on July-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language