> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Use GDebi for Quickly Installing DEB Packages in Ubuntu
- URL: https://itsfoss.com/gdebi-default-ubuntu-software-center/
- Published: 2015-02-14T00:54:30.000Z
- Updated: 2023-01-10T14:30:41.000Z
- Description: Gdebi is a tiny little app that helps you install deb files more effectively by handling dependencies. Learn how to use Gdebi and make it the default application for installing deb packages.
- Author: Abhishek Prakash
- Tags: Ubuntu

If you use Ubuntu you might be using the Software Center to install .deb executable files.

Ubuntu Software Center is known for eating resource. It is heavy, takes ages to load and makes your system crawl. It may be good for finding application, but it is not worth using just to install a .deb file.

Once upon a time, Ubuntu used archive manager for installing .deb files but with time it changed and now Software Center is the default application for installing DEB files.

Now, if you are just trying to [install a .deb file in Ubuntu](https://itsfoss.com/install-deb-files-ubuntu/), I would not recommend using the Software Center. It’s overkill and a waste of resources.

I recommend using [GDebi](https://launchpad.net/gdebi?ref=itsfoss.com), a dedicated program for installing Debian executable files. It is extremely lightweight and focused on installing .deb files.

The best thing about GDebi package installer is that it also shows the dependencies that will be installed along with the desired program. At times, it will install the dependencies along with the DEB package. The default Software Center is not very good at handling dependencies with the DEB packages.

![gdebi handling dependency while installing deb package](https://itsfoss.com/content/images/wordpress/2019/01/gdebi-handling-dependency.jpg)

gdebi can identify missing dependencies and install them

In this post, we shall see **how to install GDebi and use it as the default installer instead of the Ubuntu Software Center**.

## Install GDebi in Ubuntu based distributions

Gdebi is available in the universe repository of Ubuntu. You should enable the additional repsotiories before hand else you’ll see ‘unable to locate gdebi’ or ‘gdebi command not found’ errors.

You can find gdebi in Ubuntu Software Center. Just search for it and install it from there.

![Install Gdebi from Software Center](https://itsfoss.com/content/images/wordpress/2015/02/install-gdebi-from-software-center-800x158.jpg)

You can install gdebi from Software Center

Alternatively, you can install gdebi using command line. Open a terminal and use the following command:

```
sudo apt install gdebi
```

## How to use Gdebi for installing deb packges \[GUI and Terminal\]

Now that you have installed Gdebi, you can use it to install deb packages.

Just right click on the download deb file and select Open with other applications.

![Run a deb file with gdebi](https://itsfoss.com/content/images/wordpress/2015/02/open-deb-file-with-gdebi-800x450.png)

Opening a deb file with gdebi

In here, select Gdebi from the list of available applications.

![Install deb file using gdebi](https://itsfoss.com/content/images/wordpress/2015/02/open-deb-file-with-gdebi-2-800x450.png)

You’ll see the option to install the deb package:

![Installing deb package with Gdebi](https://itsfoss.com/content/images/wordpress/2015/02/instaling-deb-package-with-gdebi-800x482.png)

Click on Install

You’ll be surprised to see how quick Gdebi is. The installation will be finished within seconds, and you can close the program.

![Installing deb package with Gdebi](https://itsfoss.com/content/images/wordpress/2015/02/instaling-deb-package-with-gdebi-2-800x473.png)

Installation finished

You can also use gdebi in command line mode if you prefer to use the terminal more than the GUI applications.

```
sudo gdebi <path_to_deb_file>
```

## Make GDebi default for .deb installation

Once you have started loving GDebi, it’s time to see how to make it the default application for installing .deb files. Please note that I am using Elementary OS in this tutorial but the steps are applicable to all Ubuntu-based distributions. Just the screenshots may look different.

Download a .deb file first. Let’s say you have downloaded Google Chrome. Go to the download directory and **right click** on the .deb file. In here, go to **properties**.

![Make GDebi default in Ubuntu Linux](https://itsfoss.com/content/images/wordpress/2015/02/GDebi_default.jpeg)

In the properties, you should see the option of **open with**. Click on it and change it to GDebi.

![Make GDebi default instead of Ubuntu Software Center](https://itsfoss.com/content/images/wordpress/2015/02/GDebi_default_Ubuntu.jpeg)

Next time you double click on a .deb file, it will automatically open GDebi to install the .deb file. Indeed using such light applications is an excellent way to [speed up Ubuntu](https://itsfoss.com/speed-up-ubuntu-1310/) or other Linux systems.

What do you say? You still prefer Ubuntu Software Center for application installation or GDebi? Or if you are old school, [Synaptic Package Manager](https://itsfoss.com/synaptic-package-manager/) perhaps? Which one is your favorite?