6

I have already tried all the usual fixes to this .. no luck so far

sudo apt-get dist-upgrade 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
  libglib2.0-0:i386 libhwloc-plugins
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.

none of the following help

sudo apt-get update
sudo apt-get upgrade
sudo apt-get -f install
Scott Stensland
  • 14,755
  • 10
  • 55
  • 73

1 Answers1

15

Just copy the package names that have been kept back and add them on a apt-get install statement.

sudo apt-get install package-names

Your case will be:

sudo apt-get install libglib2.0-0:i386 libhwloc-plugins
dessert
  • 39,392
  • 12
  • 115
  • 163
Parto
  • 15,027
  • 24
  • 86
  • 114