Linuxカーネルを最新バージョン5.16にアップデートできないのはなぜですか?

Linuxカーネルを最新バージョン5.16にアップデートできないのはなぜですか?

最新のLinuxイメージをインストールします。

sudo apt install linux-image-5.16.0-0.bpo.3-amd64

インストール後、すべてのLinuxイメージを一覧表示します。

sudo dpkg --get-selections | grep linux-image
linux-image-5.10.0-10-amd64         deinstall
linux-image-5.10.0-11-amd64         install
linux-image-5.10.0-12-amd64         deinstall
linux-image-5.10.0-13-amd64         install
linux-image-5.10.0-8-amd64          deinstall
linux-image-5.10.0-9-amd64          deinstall
linux-image-5.16.0-0.bpo.3-amd64        install
linux-image-amd64               deinstall

再起動してカーネルを確認します。

sudo uname -r
5.10.0-11-amd64

カーネルを更新できないのはなぜですか5.16
私のOSに関する詳細情報を公開します。
GRUBについて

cat   /etc/kernel/postinst.d/zz-update-grub
#! /bin/sh
set -e

which update-grub >/dev/null 2>&1 || exit 0

if type systemd-detect-virt >/dev/null 2>&1 &&
   systemd-detect-virt --quiet --container; then
    exit 0
fi

set -- $DEB_MAINT_PARAMS
mode="${1#\'}"
mode="${mode%\'}"
case $0:$mode in
    # Only run on postinst configure and postrm remove, to avoid wasting
    # time by calling update-grub multiple times on upgrade and removal.
    # Also run if we have no DEB_MAINT_PARAMS, in order to work with old
    # kernel packages.
    */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove)
    if [ -e /boot/grub/grub.cfg ]; then
        exec update-grub
    fi
    ;;
esac

exit 0

バージョン

uname -a
Linux debian 5.10.0-11-amd64 #1 SMP Debian 5.10.92-2 (2022-02-28) x86_64 GNU/Linux

固定かどうか:

sudo  grub-editenv list
nothing output

グラップアップデート

sudo update-grub

端末を再起動します。

uname -r
5.10.0-11-amd64

5.16関連パッケージ:

ls /boot
config-5.10.0-11-amd64       efi             initrd.img-5.10.0-13-amd64   System.map-5.10.0-13-amd64       vmlinuz-5.10.0-13-amd64
config-5.10.0-13-amd64       grub            initrd.img-5.16.0-0.bpo.3-amd64  System.map-5.16.0-0.bpo.3-amd64  vmlinuz-5.16.0-0.bpo.3-amd64
config-5.16.0-0.bpo.3-amd64  initrd.img-5.10.0-11-amd64  System.map-5.10.0-11-amd64   vmlinuz-5.10.0-11-amd64

そして私grub.cfgファイルここに画像の説明を入力してください。 grubメニューから見ることができますが、initrd.img-5.16.0-0.bpo.3-amd64なぜOSが起動時に呼び出せないのですか?

ベストアンサー1

おすすめ記事