升级完内核发现有一些问题需要回退,但是因为不能直接接触机器终端,需要通过 grub 配置指定内核版本重新启动。
操作系统:Debian 11
涉及文件:
- /etc/default/grub
- /boot/grub/grub.cfg
操作步骤:
-
通过命令
grep -e 'menuentry ' -e 'subm' /boot/grub/grub.cfg | awk -F'--' '{print $1}'
找到需要启动的内核菜单名称:假设上图中的
Debian GNU/Linux, with Linux 5.10.0-13-amd64
是我们期望使用的内核,则需要引用图示 1 和 2 修改/etc/default/grub
。 -
修改
/etc/default/grub
中的GRUB_DEFAULT=0
为如下值:GRUB_DEFAULT="Advanced options for Debian GNU/Linux>Debian GNU/Linux, with Linux 5.10.0-13-amd64"
-
执行命令
update-grub
,成功后重启即可。
您可能还喜欢以下文章
- MongoDB 4.2 流控 FlowControl 机制走读
- Debian系统添加全局根证书(CNNIC)
- 可能是全网最全的 ulimit 配置说明了
- install Facebook scribe on Debian Squeeze
- 美区 Apple ID 充值攻略
相关评论
comments powered by Disqus