sudo apt update -- says
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
2 packages can be upgraded. Run 'apt list --upgradable' to see them.
but sudo apt upgrade showed
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
grub-efi-amd64-bin grub-efi-amd64-signed
0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
Why 2 of them were not upgraded and the following packages were kept back ?
apt upgrade
, which has various conditions where it cannot apply upgrades as it'll require removal of packages; allowing you to decide when you upgrade those usingapt full-upgrade
which you don't mention trying. Did you try it? (useman apt
to read the conditions whereapt upgrade
will not upgrade packages &apt full-upgrade
is required if you're not familiar with it) – guiverc Dec 15 '22 at 07:53apt policy grub-efi-amd64-bin
in your question. – Artur Meinild Dec 15 '22 at 09:46sudo apt upgrade grub-efi-amd64-bin
please also. – nobody Dec 15 '22 at 14:42apt list --upgradable
? – janos Dec 16 '22 at 04:11