3

There's a red circle with minus sign at the top left corner on my ubuntu 14.04 desktop, when clicked it says:

An error occurred, please run Package Manager from the right-click menu or apt-get in a terminal to see what is wrong.

The error message was:

Error: Opening the cache(E:Encountered a section with no package:header, E: Problem with MergeList/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_i18n_Transaltion-en, E:The package lists or status file could not be opened or parsed.)'. This usually means that your installed packages have unmet dependencies.

Please help me solve this problem.

Mateo
  • 8,104

1 Answers1

8

You need to first remove the problematic Merge List and then re-create it. Open your terminal and run the following codes:

sudo rm /var/lib/apt/lists/* -vf
sudo apt-get clean
sudo apt-get update
sudo apt-get upgrade
Ron
  • 20,638