标签:内核
一般在编译安装新内核完成后,系统默认启动的还是旧内核,你需要告诉系统我要启动新内核,系统才会启动新内核,所以在linux中,你需要更改配置文件告知它!
#在这里我使用的最新内核为4.4.0
一.首先查看默认启动的内核
[root@localhost ~]# uname -r
二.查看新内核在配置文件中的顺序
[root@localhost ~]# cat /boot/grub2/grub.cfg
此顺序用来决定开机时的排列顺序,可以看出4.4.0内核顺序是0(启动顺序是按0、1、2进行排列)。
三.修改配置文件,改变优先级
将GRUB_DEFAULT=saved 改成 GRUB_DEFAULT=0
[root@localhost ~]# 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="rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet" GRUB_DISABLE_RECOVERY="true"
四.使其配置文件生效
[root@localhost ~]# grub2-mkconfig -o /boot/grub2/grub.cfg Generating grub configuration file ... Found linux image: /boot/vmlinuz-4.4.0 Found initrd image: /boot/initramfs-4.4.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-829121a948844a7bb4878c430993b60a Found initrd image: /boot/initramfs-0-rescue-829121a948844a7bb4878c430993b60a.img done
五.修改前后的对比
[root@localhost ~]# cat /boot/grub2/grub.cfg
修改前:
修改后:
六.重启验证
[root@localhost ~]# uname -r
可以看出现在默认启动的内核为最新内核!
祝好^_^o~ 努力!
本文出自 “hugyou” 博客,请务必保留此出处http://hugyou.blog.51cto.com/11674506/1794198
标签:内核
原文地址:http://hugyou.blog.51cto.com/11674506/1794198