答案1
答案2
GRUB Customizer 之类的应用程序可能是导致此问题的根源。它们可能在 /etc/grub.d 中创建了不必要的额外文件。
在终端中输入ls -al /etc/grub.d
,你的输出应该类似于:
-rwxr-xr-x 1 root root 9.6K Oct 14 2015 00_header*
-rwxr-xr-x 1 root root 6.2K Apr 22 18:16 05_debian_theme*
-rwxr-xr-x 1 root root 12K Apr 6 2015 10_linux*
-rwxr-xr-x 1 root root 11K Apr 6 2015 20_linux_xen*
-rwxr-xr-x 1 root root 2.0K Mar 12 2014 20_memtest86+*
-rwxr-xr-x 1 root root 12K Apr 11 2014 30_os-prober*
-rwxr-xr-x 1 root root 1.4K Oct 14 2015 30_uefi-firmware*
-rwxr-xr-x 1 root root 214 Sep 22 2014 40_custom*
-rwxr-xr-x 1 root root 216 Apr 11 2014 41_custom*
-rw-r--r-- 1 root root 483 Apr 11 2014 README
您找到的任何其他文件都可能是 GRUB 菜单中所有额外条目的创建者,因此可能应将其移至桌面(为了安全起见,以防你搞砸了)查找包含一堆电喷条目。再次,在终端中,输入grep -i EFI /etc/grub.d/*
即可轻松找到可疑文件。
一旦额外的文件被移动,您就可以sudo update-grub
重建标准 GRUB 菜单。
干杯,艾尔