grub-efi-* パッケージをアップデートできないとき
以下のように、パッケージを特定のバージョンに固定した覚えがないのに、grub-efi- で始まるパッケージを更新できないことがある。
$ sudo apt upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
Try Ubuntu Pro beta with a free personal subscription on up to 5 machines.
Learn more at https://ubuntu.com/pro
The following packages have been kept back:
grub-efi-arm64 grub-efi-arm64-bin grub-efi-arm64-signed
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.この場合、以下のように grub-efi-<arc>-bin ( <arc> はアーキテクチャ ) を個別に指定してアップデートすると、更新できる。
$ sudo apt install --only-upgrade grub-efi-arm64-bin参考リンク
https://askubuntu.com/questions/894264/unable-to-upgrade-grub-efi-amd64-signed

