Update Manager

Asked by Jon Charge

When I run the update manager I get this:

E: _cache->open() failed, please report.

How do I remedy?

Question information

Revision history for this message
Bernhard (b.a.koenig) said :
#1

Please open a Terminal ("Applications" "Accessoires" "Terminal") and paste the output of typing

sudo apt-get update

and then

sudo apt-get upgrade

Revision history for this message
Bhavani Shankar (bhavi) said :
#2

To correct this problem just open Terminal (Applications → Accessories → Terminal) and type:

sudo dpkg --configure -a

Give your user password when requested. You will not see anything, but type it and press enter.

Then retry to update and/or to install desired package.

Revision history for this message
Jon Charge (seropith) said :
#3

I still get the message was:

E: The package cache file is corrupted
E: _cache->open() failed, please report.

Revision history for this message
Best marcobra (Marco Braida) (marcobra) said :
#4

Open a Terminal from the menu Applications → Accessories → Terminal and type:
(if the system ask you a password give your user password, you will not see nothing when you type it, then press enter)

sudo dpkg --clear-avail
sudo dpkg --configure -a

then to update and upgrade and also check pending or missing packages, still using terminal type:

sudo apt-get -f install
sudo apt-get --fix-missing install
sudo apt-get clean
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get clean
sudo apt-get autoremove

Hope this helps

Revision history for this message
Jon Charge (seropith) said :
#5

Thanks marcobra, that solved my question.