当前位置:首页 > Linux学习 > 清除grub多余的启动项

清除grub多余的启动项

Linux学习2021-01-2285830


Linux在经过几次内核升级后,启动菜单里会出来多个启动项,强迫症看着很不爽,下面把那些多余的启动项删除。


清除grub多余的启动项  Linux 技术 电脑 第1张


终端里输入,查看一下grub配置文件。

sudo cat /boot/grub2/grub.cfg


#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set pager=1

if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

terminal_output console
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/00_tuned ###
set tuned_params=""
set tuned_initrd=""
### END /etc/grub.d/00_tuned ###

### BEGIN /etc/grub.d/01_users ###
if [ -f ${prefix}/user.cfg ]; then
  source ${prefix}/user.cfg
  if [ -n "${GRUB2_PASSWORD}" ]; then
    set superusers="root"
    export superusers
    password_pbkdf2 root ${GRUB2_PASSWORD}
  fi
fi
### END /etc/grub.d/01_users ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Red Hat Enterprise Linux Server (3.10.0-1160.24.1.el7.x86_64) 7.9 (Maipo)' --class red --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-1127.el7.x86_64-advanced-88f6eee8-87b0-4d33-bcdc-d272b0a5738a' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod xfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0fdc27b2-2302-4c87-beb2-4531b2c45a74
	else
	  search --no-floppy --fs-uuid --set=root 0fdc27b2-2302-4c87-beb2-4531b2c45a74
	fi
	linux16 /vmlinuz-3.10.0-1160.24.1.el7.x86_64 root=UUID=88f6eee8-87b0-4d33-bcdc-d272b0a5738a ro spectre_v2=retpoline rhgb quiet LANG=zh_CN.UTF-8
	initrd16 /initramfs-3.10.0-1160.24.1.el7.x86_64.img
}
menuentry 'Red Hat Enterprise Linux Server (3.10.0-1160.15.2.el7.x86_64) 7.9 (Maipo)' --class red --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-1127.el7.x86_64-advanced-88f6eee8-87b0-4d33-bcdc-d272b0a5738a' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod xfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0fdc27b2-2302-4c87-beb2-4531b2c45a74
	else
	  search --no-floppy --fs-uuid --set=root 0fdc27b2-2302-4c87-beb2-4531b2c45a74
	fi
	linux16 /vmlinuz-3.10.0-1160.15.2.el7.x86_64 root=UUID=88f6eee8-87b0-4d33-bcdc-d272b0a5738a ro spectre_v2=retpoline rhgb quiet LANG=zh_CN.UTF-8
	initrd16 /initramfs-3.10.0-1160.15.2.el7.x86_64.img
}
menuentry 'Red Hat Enterprise Linux Server (3.10.0-1160.11.1.el7.x86_64) 7.9 (Maipo)' --class red --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-3.10.0-1127.el7.x86_64-advanced-88f6eee8-87b0-4d33-bcdc-d272b0a5738a' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_msdos
	insmod xfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0fdc27b2-2302-4c87-beb2-4531b2c45a74
	else
	  search --no-floppy --fs-uuid --set=root 0fdc27b2-2302-4c87-beb2-4531b2c45a74
	fi
	linux16 /vmlinuz-3.10.0-1160.11.1.el7.x86_64 root=UUID=88f6eee8-87b0-4d33-bcdc-d272b0a5738a ro spectre_v2=retpoline rhgb quiet LANG=zh_CN.UTF-8
	initrd16 /initramfs-3.10.0-1160.11.1.el7.x86_64.img
}
menuentry 'Red Hat Enterprise Linux Server (0-rescue-40f2256e3b2c4c5da04da8dad2bf8ceb) 7.8 (Maipo)' --class red --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-40f2256e3b2c4c5da04da8dad2bf8ceb-advanced-88f6eee8-87b0-4d33-bcdc-d272b0a5738a' {
	load_video
	insmod gzio
	insmod part_msdos
	insmod xfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0fdc27b2-2302-4c87-beb2-4531b2c45a74
	else
	  search --no-floppy --fs-uuid --set=root 0fdc27b2-2302-4c87-beb2-4531b2c45a74
	fi
	linux16 /vmlinuz-0-rescue-40f2256e3b2c4c5da04da8dad2bf8ceb root=UUID=88f6eee8-87b0-4d33-bcdc-d272b0a5738a ro spectre_v2=retpoline rhgb quiet
	initrd16 /initramfs-0-rescue-40f2256e3b2c4c5da04da8dad2bf8ceb.img
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###


grub配置文件中的几个menuentry {}就是启动项。

用vim编辑grub.cfg文件,删除或者注释掉不需要的menuentry {},不要光注释menuentry 这一行,要把{}里的内容都要注释掉。

sudo vim /boot/grub2/grub.cfg


清除grub多余的启动项  Linux 技术 电脑 第2张


下面是清除后的启动界面,可以看出已成功清除。


清除grub多余的启动项  Linux 技术 电脑 第3张


上门的方法只是清理了启动项,并不是彻底清除内核。要删除内核需要用yum卸载


#查询所有安装的内核
rpm -qa | grep kernel

#卸载内核
yum remove kernel-3.10.0-1160.11.1.el7.x86_64




扫描二维码推送至手机访问。

版权声明:本文由海阔天空发布,如需转载请注明出处。

本文链接:https://apull.net/html/20210122223850.html

分享给朋友:

相关文章

深度Deepin Linux v20 Beta下玩红警

深度Deepin Linux v20 Beta下玩红警

深度linux 20beta版的的发布后,第一时间把笔记本安装成了deepin系统,使用了一周时间,感觉整体效果挺不错,平常使用也足够。本人比较喜欢玩红警,帝国时代之类的单机游戏,Deepin系统上不能直接运行exe程序,闲暇时间折腾了一下红警,让deepin能正常运行红警,下面是安装步骤。 Deepin和红警快捷方式 一、准备工作准备好红警2,在Windows下能正常运行的就可以,安装包可以到红警之家上可以下载。从应用商店下载安装个微信或者QQ。准备个红...

wsl下Ubuntu中文显示方法

wsl下Ubuntu中文显示方法

wsl下的Ubuntu子系统用起来还是比较方便的,但是在使用vim等一些程序的时候遇到不显示汉字的问题,经过度娘等等一系列查询,找到了解决方法。一、安装语言包# 安装中文基础语言包 sudo apt install language-pack-zh-hans二、设置locale开启中文locale支持,用vim打开locale.gen文件sudo vim /etc/locale.gen找到# zh_CN.UTF-8...

Deepin v20下玩红警三

Deepin v20下玩红警三

上次发布Deepin下玩红警2的教程后,有朋友咨询红警3的教程,最近抽空写了一个,比较简单,有啥问题可以在下面留言。安装步骤1. 终端里运行下面命安装“PlayonLinux”,sudo apt install playonlinux2.打开Playonlinux,点安装,选择左下角的安装未在列表中的程序3.一路下一步,选择“在新虚拟盘安装程序”4.给虚拟盘起个名字5.选择32位系统到这一步虚拟盘基本创建成功了,现在需要把游戏复制到虚拟盘中打开主...

Sublime Text3中新建终端运行C程序

Sublime Text3中新建终端运行C程序

Sublime Text 3简介Sublime Text 3是一个轻量、简洁、高效、跨平台的编辑器具有 语法高亮、代码提示、跨平台、可扩展性等特点下载地址https://www.sublimetext.com/3遇到问题使用Sublime Text 3的默认配置编译c程序,Sublime Text 3的控制台会正常显示结果,但是遇到有输入的程序,Sublime Text 3的控制台就不能输入了,输入需要Sublime Text 3新建终端窗口运行程序才可以,这就需要自己新建个...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。