1

I installed Ubuntu 15.04, then I updated it and restarted. After that I can't install anything from terminal using

apt-get install [package-name] 

any more.
For every package it says

Unable to locate package [package-name]

It happened right after I upgraded to Ubuntu 15.04, immediately after its installation.

Is there any solution other than formatting the drive and reinstalling Ubuntu?

Byte Commander
  • 110,243
Sagaryal
  • 111

1 Answers1

0

Just remove the content of /var/lib/apt/lists directory:

sudo rm /var/lib/apt/lists/*

then try to run again :

sudo apt-get update
User1911
  • 360