CENTOS 7 to replace the default boot kernel

This article is no longer updated, there may be instances of outdated content, real-time updates venue Original Address: CENTOS 7 to replace the default boot kernel ;

surroundings:

  • CentOS Linux release 7.6.1810 (Core) ;

1. Review the current default boot kernel

[inspur@localhost ~]$ grub2-editenv list
grub2-editenv: error: cannot open `/boot/grub2/grubenv.new': Permission denied.
[inspur@localhost ~]$ sudo grub2-editenv list
[sudo] password for inspur: 
saved_entry=CentOS Linux (3.10.0-957.21.3.el7.x86_64) 7 (Core)
[inspur@localhost ~]$ 
  1. View all kernel
[inspur@localhost ~]$ sudo cat /boot/grub2/grub.cfg | grep menuentry
if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
  menuentry_id_option=""
export menuentry_id_option
menuentry 'CentOS Linux (3.10.0-957.21.3.el7.x86_64) 7 (Core)' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-862.el7.x86_64-advanced-1ef88ad8-4275-4ceb-9d7f-80abefd6a4c2' {
menuentry 'CentOS Linux (3.10.0-862.el7.x86_64) 7 (Core)' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-862.el7.x86_64-advanced-1ef88ad8-4275-4ceb-9d7f-80abefd6a4c2' {
menuentry 'CentOS Linux (0-rescue-396035e748534ed49bfde6ab589c7cbe) 7 (Core)' --class centos --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-396035e748534ed49bfde6ab589c7cbe-advanced-1ef88ad8-4275-4ceb-9d7f-80abefd6a4c2' {
[inspur@localhost ~]$ 

3. Set the new boot kernel

[inspur@localhost ~]$ sudo grub2-set-default 'CentOS Linux (3.10.0-862.el7.x86_64) 7 (Core)'
[inspur@localhost ~]$ 

4. Verify boot the kernel

[inspur@localhost ~]$ sudo grub2-editenv list
saved_entry=CentOS Linux (3.10.0-862.el7.x86_64) 7 (Core)
[inspur@localhost ~]$ 

This article is no longer updated, there may be instances of outdated content, real-time updates venue Original Address: CENTOS 7 to replace the default boot kernel ;

Guess you like

Origin www.cnblogs.com/cobcmw/p/11387801.html