删除 CentOS 8 上的旧内核

删除 CentOS 8 上的旧内核

在 CentOS 7.XI 上,使用以下命令清理未使用的旧内核:

package-cleanup --oldkernels --count=1

但它不再适用于 CentOS 8.X,有人知道正确的命令吗?

答案1

你试过这个吗?

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 条目。

相关内容