An error occurred, please run package manager
It seems that google-chrome-stable have broke your system for some reason. Try this: Open your terminal window
Ctrl+Alt+T
Then right there type commands (after each command type enter and respond yes to questions)
sudo apt-get remove google-chrome-stable
Then update the system via
sudo apt-get update && sudo apt-get upgrade
Let apt-get run and if there is any error post as comment here and I will help (or anyone available)
If the Commands fails you can try these ones: Update Packages
sudo apt-get update
clean the downloaded packages (where there might be broken ones)
sudo apt-get clean
Remove unneeded packages (careful! If it might list something that is needed but its dependency or such have been removed and left it orphan)
sudo apt-get autoremove
Reconfigure all packages
sudo dpkg --configure -a
Fix broken packages
sudo apt-get install -f
Removing the packages list and updating solved the issue for me
Open the terminal: Ctrl+Alt+T
Remove the package list:
sudo rm -vf /var/lib/apt/lists/*
-v, --verbose
explain what is being done-f, --force
ignore nonexistent files and arguments, never prompt
Update the packages:
sudo apt-get update