查看内核
uname -r
查看默认启动顺序 awk -F\‘ ‘$1=="menuentry " {print $2}‘ /etc/grub2.cfg CentOS Linux (3.18.3-1.el7.elrepo.x86_64) 7 (Core) CentOS Linux, with Linux 3.10.0-123.el7.x86_64 CentOS Linux, with Linux 0-rescue-893b160e363b4ec7834719a7f06e67cf 默认启动的顺序是从0开始,但我们新内核是从头插入(目前位置在0,而3.10的是在1),所以需要选择0,如果想生效最新的内核,需要 grub2-set-default 0
原文:http://www.cnblogs.com/freefei/p/5110753.html