This article is about how to Uninstall deb packages in ubuntu linux. Ubuntu is a Linux based operating system. It is designed for computers, smartphones and network servers. The system was developed by Canonical Limited, a UK-based company. All the principles used to develop Ubuntu software are based on the principles of open source software development.
Ubuntu Desktop is a Linux distribution developed by Canonical and is one of the most popular distributions. This is one of the best options for people starting out with Linux. The server version, which we don’t focus on here, also works on most web servers.
Deb extensions or packages. Every Linux operating system built on Debian uses Debian-based packages (.DEB) to install or remove software. Using Ubuntu’s graphical user interface or command-line tool, you can install or uninstall tep extension files or packages. To install their Linux software manually, you need to get one. DEB or Debian files/packages from many companies whose products are not included in the Ubuntu official repository. Below we have mentioned the steps to uninstall deb packages in Ubuntu Linux.
How to Uninstall deb packages in ubuntu linux
Command line methods to install dep files/packages
There are several package management systems you can use to install deb packages. Let’s see them along with their pros and cons below.
Install dep files with apt
Step 1: You can install deb files Appropriate by adding the full deb file path followed by the “./” symbol.
sudo apt install ./slack-desktop-4.15.0-amd64.deb
Step 2: The appropriate command Resolves all dependencies automatically, so you don’t have to worry about such issues.
Install Deb files with Gdebi
gdebi is a tool used for installation deb filesBut it is not installed in Ubuntu, so you need to install it separately to use it.
To install gdebi, run the following command.
sudo apt install gdeb
After gdebi is installed, you can install it using the following command deb package.
sudo gdebi slack-desktop-4.15.0-amd64.deb
Like apt, gdebi resolves Package dependencies own.
Install the Deb files with dpkg
Step 1: You can install deb packages By running dpkg with -I wish.
sudo dpkg -i ./slack-desktop-4.15.0-amd64.deb
dpkg will not resolve Package dependenciesSo in case of any dependency errors, you have to resolve them manually using the following command.
sudo apt install -f
Command line methods to uninstall dep files/packages
Step 1: You can remove deb package Installation with the following apt command.
sudo apt delete slack-desktop
Step 2: To uninstall deb packages Established by dpkgRun the following command.
dpkg -r slack-desktop
A graphical user interface method for installing and removing dep files/packages
To install deb packages directly from the gui, click on the deb file. You will see your file open in the following window. Click Install and Authenticate. Similarly, open the deb file and click Remove to uninstall the file. Confirm the action by clicking Remove on the following command line.
Final Words
Hope you like this article How to Uninstall deb packages in ubuntu linux Now you know how to Installation Find and uninstall packages in Ubuntu Linux so you can use them effectively. Basic Debian commands that every user should learn are covered in this course. If you like the article please share it with others.
Faq
About This Guide?
In this guide, we told you about the Uninstall Deb Packages in Ubuntu Linux; please read all steps above so that you understand Uninstall Deb Packages in Ubuntu Linux in case if you need any assistance from us, then contact us.
How this tutorial or guide assisting you?
So in this guide, we discuss the Uninstall Deb Packages in Ubuntu Linux, which undoubtedly benefits you.
Share this article about Uninstall Deb Packages in Ubuntu Linux
I hope you like the guide Uninstall Deb Packages in Ubuntu Linux. In case if you have any queries regards this article/tutorial you may ask us. Also, share your love by sharing this article with your friends and family.
#Uninstall #Deb #Packages #Ubuntu #Linux