Linux Mint Not Updating

upgrade

I literally installed it last night. This morning I saw an update icon but when I click Update Manager it says

ERROR###ERROR###ERROR###ERROR###ERROR###ERROR###ERROR E:Encountered a
section with no Package: header, E:Problem with MergeList
/var/lib/apt/lists/packages.linuxmint.com_dists_petra_import_i18n_Translation-en,
E:The package lists or status file could not be parsed or opened.

Does anyone know a fix?

Best Answer

What the other answer says.

In rather more detail: I'd suggest firstly, you do an APT clean-up, and then secondly, you do a full system upgrade from the shell.

1: Clean-up

sudo apt-get clean ; sudo apt-get autoclean ; sudo apt-get purge ; sudo apt-get autoremove -y

2: Full update

sudo apt-get update ; sudo apt-get dist-upgrade -y

Then reboot. I suspect you'll find your errors in the GUI update tool will have gone. I'd had similar issues with Mint's GUI updater myself & now I preferentially use the shell.

Related Question