之前一直用ubuntu,切换到centos上感觉诸多不适宜。ubuntu切换kernel非常方便,只要grub-update即可,centos/anolist上比较麻烦,记一下。
首先是把编好的kernel放到/boot下面,一般直接make install即可;然后grub2-mkconfig -o /boot/grub/grub.cfg,这将会生成新的grub entry。如果要将新添加的内核设置为default,可以查看一下/boot/loader/entries下面的文件,使用grub2-set-default $entry_name(去掉后缀)。
例如:
# ls /boot/loader/entries/ 93681e6bcbfc4560b9fe03794b0c2590-0-rescue.conf 93681e6bcbfc4560b9fe03794b0c2590-5.10.134-16.2.an8.x86_64.conf 93681e6bcbfc4560b9fe03794b0c2590-5.17.0-rc1+.conf 93681e6bcbfc4560b9fe03794b0c2590-6.9.0-rc7.conf
# grub2-set-default 93681e6bcbfc4560b9fe03794b0c2590-5.17.0-rc1
查看一下结果。
# grub2-editenv list saved_entry=93681e6bcbfc4560b9fe03794b0c2590-5.17.0-rc1+
标签:grub,anolist,boot,grub2,conf,93681e6bcbfc4560b9fe03794b0c2590,entry From: https://www.cnblogs.com/banshanjushi/p/18334490