Centos

刪除 CentOS 8 上的舊核心

  • June 29, 2021

在 CentOS 7.XI 上使用以下命令清理未使用的舊核心:

package-cleanup --oldkernels --count=1

但它不再適用於 CentOS 8.X,有人知道正確的命令嗎?

你試過這個嗎?

dnf remove --oldinstallonly --setopt installonly_limit=1

或者,你可以做

1. rpm -qa kernel // lists kernels
2. rpm -e kernel_name // on which kernel you want to remove

這也應該會自動為您刪除 grub 條目。

引用自:https://unix.stackexchange.com/questions/656115