我在启动时有很多令人困惑的启动选项

我在启动时有很多令人困惑的启动选项

安装 Ubuntu 并进行推荐的启动修复后,当我重新启动笔记本电脑时,我看到了很多启动选项,如下所示。我认为启动菜单中应该只有四项:Ubuntu、Ubuntu 高级选项、Windows 和系统设置。

在此处输入图片描述

有人知道如何从启动菜单中删除诸如 bootmgfw.efi 或 fwupx64.efi 之类的不必要的项目吗?

答案1

一些程序(如 Boot Repair 或 GRUB Customizer)通过在文件夹中添加附加文件来安装额外的 GRUB 项目/etc/grub.d

下面是我的情况:

$ ls -al /etc/grub.d
总计 100
drwxr-xr-x 2 root root 4096 10 月 31 日 14:42。
drwxr-xr-x 201 root root 12288 1 月 14 日 16:08..
-rwxr-xr-x 1 root root 9791 2015 年 10 月 14 日 00_header
-rwxr-xr-x 1 root root 6250 2016 年 4 月 22 日 05_debian_theme
-rwxr-xr-x 1 root root 12261 2015 年 4 月 6 日 10_linux
-rwxr-xr-x 1 root root 11082 2015 年 4 月 6 日 20_linux_xen
-rwxr-xr-x 1 root root 1992年3月12日2014年20_memtest86+
-rwxr-xr-x 1 root root 11692 2014年4月11日 30_os-prober
-rwxr-xr-x 1 root root 1418 2015 年 10 月 14 日 30_uefi-固件
-rwxr-xr-x 1 root root 214 2014 年 9 月 22 日 40_custom
-rwxr-xr-x 1 root root 216 2014 年 4 月 11 日 41_custom
-rw-r--r-- 1 root root 483 2014 年 4 月 11 日 自述文件

使用terminal...

  • cd /etc/grub.d# 更改到适当的目录

  • ls -al# 查找我的列表中没有的其他文件名(例如 50_custom)

  • sudo grep EFI *# 从 GRUB 菜单中搜索任何你能识别的“EFI”文本

  • sudo mv nn_filename ~/Documents# 然后将该文件移出到您的 Documents 文件夹 (不要移动任何名称与我上面显示的文件

  • sudo update-grub# 更新 GRUB 菜单

  • reboot# 重启计算机

  • 验证 GRUB 是否正常

相关内容