On a clean install of Trusty, there are (shown by sudo apt-get autoremove) as 'not to upgrade'. Why is this, how can I found out what they are (either by Synaptic or CLI) and should I do something about it?
On a clean install of Trusty, there are (shown by sudo apt-get autoremove) as 'not to upgrade'. Why is this, how can I found out what they are (either by Synaptic or CLI) and should I do something about it?
If a package is marked "not to upgrade" it means that there is a more recent version of the package available, but
apt-get upgrade
will not upgrade to it because it would involve removing currently installed packages, or installing new packages.From
man apt-get
:You can force an upgrade by running
apt-get dist-upgrade
, which will satisfy dependencies by removing packages and installing new packages.For more information see What is "dist-upgrade" and why does it upgrade more than "upgrade"?