总所周知,修改centos6的内核启动顺序,只需要修改/etc/grub.conf 里的default项配置即可。那么centos7系统该如何修改呢?
下面就centos7系统修改内核,做如下记录:
一般在编译安装新内核完成后,系统默认启动的还是旧内核,你需要告诉系统我要启动新内核,系统才会启动新内核,所以在linux中,你需要更改配置文件告知它!
#在这里我使用的最新内核为4.9.0
.修改配置文件,改变优先级
将GRUB_DEFAULT=saved 改成 GRUB_DEFAULT=0
[root@s585 ~]# vim /etc/default/grub GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=0
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
.使其配置文件生效
[root@s585 ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.9.0
Found initrd image: /boot/initramfs-4.9.0.img
Found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64
Found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img
Found linux image: /boot/vmlinuz-0-rescue-e7bf905930784d518ccf6fbc1daf33ab
Found initrd image: /boot/initramfs-0-rescue-e7bf905930784d518ccf6fbc1daf33ab.img
done
.修改前后的对比
[root@localhost ~]
# cat /boot/grub2/grub.cfg
修改后:
.重启验证
[root@localhost ~]
# uname -r
可以看出现在默认启动的内核为最新内核!