I get this message:
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
How do I find out which packages are not upgraded, and why?
On many similar outputs like this, it additionally prints sth like The following packages have been kept back:
, but not in my case here.
Additionally:
$ sudo apt list --upgradable
Listing... Done
Additionally:
sudo apt-get dist-upgrade --dry-run
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
and:
sudo apt-get full-upgrade --dry-run
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
apt-cache policy
log here.
apt-get dist-upgrade --dry-run
, please – muru Sep 30 '21 at 12:37apt upgrade
; theman apt
will explain why (key is the bit for "full-upgrade performs the function of upgrade but will remove* currently installed packages if this is needed to upgrade the system as a whole.*" which is the command that upgrades all packages. – guiverc Sep 30 '21 at 12:58apt-cache policy
please? – nobody Oct 02 '21 at 10:13