Debian

How to Install Debian (.deb) Package

How_to_Install_Debian_(.deb)_Package

Most users feel difficult in installing the local Debian (.deb) packages on your Linux system. So, if they have an appropriate .deb file of required software, they do not know how can install it on the Debian system. There are some useful commands are available in Linux that facilitate users to install local Debian (.deb) packages.

In this tutorial, we will go through how to install Debian (.deb) packages in Debian 11 distribution using the command line.

The following methods are available to install Debian (.deb) packages on Debian 11 system:

Method 1: Install Debian packages using Apt

The default command-line tool, Apt (Advanced packaging tool) is used to install new packages, update an existing package, upgrade and remove certain packages from Debian, Ubuntu, and LinuxMint distributions.

The apt command does not install “.deb” packages directly. It only installs the primary name packages such as MongoDB, apcahe2, etc. Apt command retrieves the package information from the ‘/etc/apt/sources.list’ file and installs the package using the package name.

So, if we want to install a local Debian package (.deb), it is necessary to specify the .deb file path using “./” with the name.

$ sudo apt install ./libappindicator3-1_0.4.92-7_amd64.deb

Method 2: Install Debian Packages using dpkg

Dpkg is another command line package manager used to install Debian packages. It is also used to manage, upgrade, and remove packages from Debian and its other derivatives such as LinuxMint and Ubuntu.

Unlike apt package manager, it does not download and install packages along with all dependencies. Dpkg does not install packages from remote addresses. It only installs the downloaded packages. Use the ‘i’ flag with the dpkg command to install Debian packages on Debian 11 system.

$ sudo dpkg -i libappindicator3-1_0.4.92-7_amd64.deb

If you receive an error after installing a package on the Debian system then, using the ‘-f’ flag with the ‘dpkg’ command this error can be resolved. Use the following command to resolve the broken dependencies error:

$ sudo apt-get install -f

Method 3: Install Debian Packages using the Gdebi command

Gdebi is another command-line tool used to install local Debian packages. It installs the package’s dependencies during the software installation. The gdebi is not a default command-line tool. So, first, install gdebi by using the following command:

$ sudo apt install gdebi

Install local Debian packages using the following gdebi command:

$ sudo gdebi libappindicator3-1_0.4.92-7_amd64.deb

Conclusion

We have seen in this guide how to install Debian (.deb) packages on Debian 11 Linux distribution. The above commands apt, dpkg and gdebi help us to install Debian packages on Debian, Ubuntu, and LinuxMint distributions.

Similar Posts