如何查看当前的内核版本、启动顺序以及设置启动顺序

如何查看当前的内核版本、启动顺序以及设置启动顺序

#查看当前使用的内核版本
[root@lh ~]# uname -r
3.10.0-957.27.2.el7.x86_64

#查看当前的默认启动顺序
[root@lh ~]# awk -F\' '$1=="menuentry " {print $2}' /etc/grub2.cfg
CentOS Linux (5.7.0-1.el7.elrepo.x86_64) 7 (Core)
CentOS Linux (5.7.0-1.el7.elrepo.x86_64) 7 (Core) with debugging
CentOS Linux (3.10.0-957.27.2.el7.x86_64) 7 (Core)
CentOS Linux (3.10.0-957.27.2.el7.x86_64) 7 (Core) with debugging
CentOS Linux 7 (Core), with Linux 3.10.0-229.el7.x86_64
CentOS Linux 7 (Core), with Linux 0-rescue-f0a4b32b2a874355af0bc42f94e7dc9a

#设置当前默认的启动顺序
[root@lh ~]# grub2-set-default 0

你可能感兴趣的:(如何查看当前的内核版本、启动顺序以及设置启动顺序)