How to Fix 「E: unable to locate package」 Error in Debian 9

Channel: Debian 9 Linux
Abstract: you need to add the necessary Debian software repositories in your /etc/apt/sources.list file//deb.debian.org/debian stretch main contrib non-free

If you install Debian 9 system using a netinstall CD image, your system probably will not have all the necessary repositories (from which you can install common packages), included in the apt sources list file. This can result into error like 「E: unable to locate package package-name」.

In this article, I will explain how to fix the 「E: unable to locate package package-name」 error in Debian 9 distribution.

Useful Articles to read:

  1. 25 Useful Basic Commands of APT-GET and APT-CACHE for Package Management
  2. 15 Examples of How to Use New Advanced Package Tool (APT) in Ubuntu/Debian

I encountered this error while trying to install openssh-server package on Debian 9 server as shown in the screen shot below.

Package Installation Error on Debian 9

When you look into the /etc/apt/sources.list file, the default repositories included are shown in the screen shot below.

Debian 9 Repositories

To fix this error, you need to add the necessary Debian software repositories in your /etc/apt/sources.list file:

deb  http://deb.debian.org/debian  stretch main
deb-src  http://deb.debian.org/debian  stretch main
Add Software Repository

Save and close the file. Then update the system packages list using the command below.

# apt update 

Now try to install the package which showed an error (for example the openssh-server).

# apt install openssh-server
Install Package on Debian 9

Note: If you also want the contrib and non-free components, then add contrib non-free after main like this to /etc/apt/sources.list:

deb  http://deb.debian.org/debian stretch main contrib non-free
deb-src  http://deb.debian.org/debian stretch main contrib non-free

You can find more information about /etc/apt/sources.list file from: https://wiki.debian.org/SourcesList

Finally, also read our recent articles concerning installation of useful packages Debian 9:

  1. How to Install Webmin Control Panel in Debian 9
  2. How to Install LEMP (Linux, Nginx, MariaDB, PHP-FPM) on Debian 9 Stretch
  3. Install LAMP (Linux, Apache, MariaDB or MySQL and PHP) Stack on Debian 9
  4. How to Install MariaDB 10 on Debian and Ubuntu

Thats all! If you have any queries, use the feedback form below to reach us. And remember to stick with Tecmint.com for everything Linux.

Ref From: tecmint
Channels: Debian FAQ's

Related articles