0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【CentOS Stream 8】上がってしまったカーネルを削除する

Last updated at Posted at 2021-07-31

dnf updateでカーネルがバージョンアップしたらVMwareのモジュールインストールに失敗したため、展開するカーネルを前のバージョンに戻す。また新しいカーネルは不要なので削除する。その手順。

起動時のデフォルトカーネルを変更する

使えるカーネル一覧の取得

$ sudo grubby --info=ALL | grep ^kernel
kernel="/boot/vmlinuz-4.18.0-326.el8.x86_64"
kernel="/boot/vmlinuz-4.18.0-310.el8.x86_64"
kernel="/boot/vmlinuz-4.18.0-305.0.1.el8.x86_64"
kernel="/boot/vmlinuz-0-rescue-92bb0dc1443e47dea719ff9b9652c249"

現在のgrubのデフォルト表示

$ sudo grubby --grub2 --default-title
CentOS (4.18.0-326.el8.x86_64) 8

326から310にデフォルトを変更

$ sudo grubby --set-default "/boot/vmlinuz-4.18.0-310.el8.x86_64"

参考

新しいカーネルを削除する

古いカーネルでリブートして最新のカーネルを削除
その他一式もまとめて削除

$ sudo dnf remove $(rpm -qa | grep ^kernel | grep 326)

参考

最後に、dnfの設定でカーネルを除外する。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?