Ubuntu系统设置启动系统内核版本号
【摘要】
Ubuntu系统使用固定内核版本启动方法
前言
Ubuntu系统使用固定内核版本启动的方式是在 如下Ubuntu系统版本下测试。
Linux xzx-ThinkStation-P350 5.4.0-...
Ubuntu系统使用固定内核版本启动方法
前言
Ubuntu系统使用固定内核版本启动的方式是在 如下Ubuntu系统版本下测试。
Linux xzx-ThinkStation-P350 5.4.0-124-generic #140~18.04.1-Ubuntu SMP Fri Aug 5 11:43:34 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
1.查看当前ubuntu系统内核版本列表
sudo dpkg --get-selections | grep linux-image
# 查询结果
linux-image-5.4.0-124-generic install
linux-image-5.4.0-125-generic install
linux-image-5.4.0-126-generic install
linux-image-5.4.0-84-generic deinstall
linux-image-generic-hwe-18.04 install
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
2.固定系统启动时使用的内核版本号
# 1.查看当前系统使用的内核版本号
uname -r
# 查看结果
5.4.0-124-generic
# 2.打开配置文件
sudo vim /etc/default/grub
# 3.配置文件内容如下,后面无关的配置内容省略。
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
# 设置系统启动固定的内核版本,将当前系统使用的内核版本号设置为系统启动指定的内核版本号
GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5.4.0-124-generic"
GRUB_TIMEOUT_STYLE=hidden
# 设置等待时间
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
.......
后面无关的配置内容省略
.......
.......
# 3.更新配置文件生效
sudo update-grub
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
3.重启后查看当前系统启动版本号是否与配置一致
# 查看当前使用内核版本号
uname -r
# 查看结果
5.4.0-124-generic
- 1
- 2
- 3
- 4
- 5
文章来源: brucelong.blog.csdn.net,作者:Bruce小鬼,版权归原作者所有,如需转载,请联系作者。
原文链接:brucelong.blog.csdn.net/article/details/127009145
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)