Centos 7开机菜单查看与修改设置方法

Centos 7的开机菜单设置主要是能过 /etc/grub2.cfg ( /etc/grub2.cfg -> ../boot/grub2/grub.cfg)

timeout=5   为等待用户选择时间,当5秒钟没有选择,系统会启动默认的菜单

与centos 6不同的是centos 7在设置默认启动项时不能通过 default=? 来设置,而是通过以下命令:

若要列出系统开机时显示的所有选项,请执行以下指令:

[root@host ~]# awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg
0 : CentOS Linux 7 (Core), with Linux 3.10.0-229.14.1.el7.x86_64
1 : CentOS Linux 7 (Core), with Linux 3.10.0-229.4.2.el7.x86_64
2 : CentOS Linux 7 (Core), with Linux 3.10.0-229.el7.x86_64
3 : CentOS Linux 7 (Core), with Linux 0-rescue-605f01abef434fb98dd1309e774b72ba
查看当前默认启动项

# grub2-editenv list

设置默认启动项

#grub2-set-default 2

重启后生效

 

阅读剩余
THE END