Introduction
Command line tools are a great way to install deb packages in Ubuntu. Deb packages are the standard package format for Ubuntu and other Debian-based Linux distributions. In this article, we will discuss three command line tools that can be used to install deb packages in Ubuntu: apt, dpkg, and gdebi. Each of these tools has its own advantages and disadvantages, so it is important to understand the differences between them before deciding which one to use. We will also discuss some tips and tricks for using each of these tools.
3 Command Line Tools to Install Deb Packages in Ubuntu
1. dpkg: This is the default package manager for Ubuntu and Debian-based systems. It is used to install, remove, and manage packages from the command line.
2. apt-get: This is a powerful command-line tool used to manage packages in Ubuntu and Debian-based systems. It can be used to install, remove, and upgrade packages from the command line.
3. aptitude: This is a text-based front-end to the apt package manager. It provides a more user-friendly interface for managing packages from the command line.
In this tutorial, you will learn how to install local software packages (.DEB) in Debian and its derivatives such as Ubuntu and Linux Mint using three different command line tools and they are dpkg, apt, and gdebi.
This is useful to those new users who have migrated from Windows to Ubuntu or Linux Mint. The very basic problem they face is installing local software on the system.
However, Ubuntu and Linux Mint have their own Graphical Software Center for easy software installation, but we will be looking forward to installing deb packages through the terminal way.
1. Install .deb Package Using dpkg Command
Dpkg is a package manager for Debian and its derivatives such as Ubuntu and Linux Mint. It is used to install, build, remove, and manage .deb
packages. but unlike other Linux package management systems, it cannot automatically download and install packages with their dependencies.
To install a .deb package, use the dpkg command with the -i
flag along with the package name as shown.
$ sudo dpkg -i teamviewer_amd64.deb
If you get any dependency errors while installing or after installing and launching a program, you can use the following apt command to resolve and install dependencies using the -f
flag, which tells the program to fix broken dependencies.
$ sudo apt-get install -f
Remove Deb Packages Using dpkg Command
To remove a .deb
package use the -r
option or if you want to remove all its files including configuration files, you can purge it using the --purge
option as shown.
$ sudo dpkg -r teamviewer [Remove Package] $ sudo dpkg --purge teamviewer [Remove Package with Configuration Files]
To know more about installed packages, read our article that shows how to list all files installed from a .deb package.
2. Install .deb Package Using Apt Command
The apt command is an advanced command-line tool, which offers new software package installation, existing software package upgradation, updating of the package list index, and even upgrading the whole Ubuntu or Linux Mint system.
It also offers apt-get and apt-cache command-line tools for managing packages more interactively on Debian and its derivatives such as Ubuntu and Linux Mint systems.
Essentially, apt-get or apt do not understand .deb
files, they are designed to primarily handle package names (for example teamviewer, apache2, mariadb, etc..) and they retrieve and install .deb
archives associated with a package name, from a source specified in the /etc/apt/sources.list file.
The only trick to installing a .deb
Debian package using apt-get or apt is by specifying a local relative or absolute path (./
if in current dir) to the package, otherwise it will try to retrieve the package from remote sources and the operation will fail.
$ sudo apt install ./teamviewer_amd64.deb $ sudo apt-get install ./teamviewer_amd64.deb
Remove Deb Packages using apt Command
To remove a .deb
package use the remove
option or if you want to remove all its files including configuration files, you can purge it using the purge
option as shown.
$ sudo apt-get remove teamviewer $ sudo apt-get purge teamviewer OR $ sudo apt remove teamviewer $ sudo apt purge teamviewer
3. Install .deb Package Using Gdebi Command
gdebi is a tiny command line and GUI tool for installing local deb packages. It resolves and installs package dependencies on the fly. To install a package, use the following command.
$ sudo gdebi teamviewer_13.1.3026_amd64.deb
To remove a .deb
package installed from gdebi, you can use apt, apt-get or dpkg commands using purge
option as shown.
$ sudo apt purge teamviewer OR $ sudo apt-get purge teamviewer OR $ sudo dpkg --purge teamviewer
Install .deb Packages Using Gdebi GUI
The most recommended way for beginners to installing .deb
files is through the Gdebi GUI installer. Simply, go to the directory where you have downloaded the file and double-click to install it as shown.
That’s It! In this tutorial, we have explained three different command line tools for installing or removing .deb
Debian packages in Ubuntu and Linux Mint.
If you know any other way of installing local packages, do share with us using our comment section below.
If You Appreciate What We Do Here On Jassweb, You Should Consider:
Jassweb is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit Jassweb! to search or browse the thousands of published articles available FREELY to all.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
We are thankful for your never ending support.
3 Command Line Tools to Install Deb Packages in Ubuntu
Ubuntu is a popular Linux-based operating system that is used by millions of people around the world. It is a great platform for developers and users alike, and it is easy to install software packages on it. However, if you want to install a deb package, you need to use a command line tool. Here are three command line tools that you can use to install deb packages in Ubuntu.
1. apt-get
The apt-get command is the most popular command line tool for installing deb packages in Ubuntu. It is a powerful tool that can be used to install, remove, and update packages. It is also used to search for packages and to manage repositories. To install a deb package using apt-get, you need to use the following command:
sudo apt-get install package_name
2. dpkg
The dpkg command is another command line tool that can be used to install deb packages in Ubuntu. It is a low-level tool that is used to install, remove, and manage packages. To install a deb package using dpkg, you need to use the following command:
sudo dpkg -i package_name.deb
3. gdebi
The gdebi command is a graphical tool that can be used to install deb packages in Ubuntu. It is a simple and easy to use tool that can be used to install, remove, and manage packages. To install a deb package using gdebi, you need to use the following command:
sudo gdebi package_name.deb
These are three command line tools that you can use to install deb packages in Ubuntu. Each of these tools has its own advantages and disadvantages, so it is important to choose the one that best suits your needs. With these tools, you can easily install deb packages in Ubuntu.