grub 显示两次相同的 Linux 映像

grub 显示两次相同的 Linux 映像

最近更新后,我在启动菜单中获得了相同 Linux 内核版本的多个条目。我尝试运行,update-grub2但它也列出了两次相同的 Linux 映像版本,即

adnan@adnan-laptop:/boot$ sudo update-grub2
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-2.6.32-26-generic
Found initrd image: /boot/initrd.img-2.6.32-26-generic
Found Windows 7 (loader) on /dev/sda1
Found linux image: /boot/vmlinuz-2.6.32-26-generic
Found initrd image: /boot/initrd.img-2.6.32-26-generic
Found memtest86+ image: /boot/memtest86+.bin
done

可以看到,vmlinuz 和 initrd 出现了多次。但是 /boot 中只有一个 vmlinuz 和 initrd 文件

adnan@adnan-laptop:/boot$ ls -l
total 15120
-rw-r--r-- 1 root root  646144 2010-11-24 15:58 abi-2.6.32-26-generic
-rw-r--r-- 1 root root  110601 2010-11-24 15:58 config-2.6.32-26-generic
drwxr-xr-x 3 root root    4096 2011-01-01 18:59 grub
-rw-r--r-- 1 root root 8335528 2010-12-20 23:36 initrd.img-2.6.32-26-generic
-rw-r--r-- 1 root root  160280 2010-03-23 14:40 memtest86+.bin
-rw-r--r-- 1 root root 2156100 2010-11-24 15:58 System.map-2.6.32-26-generic
-rw-r--r-- 1 root root    1336 2010-11-24 16:00 vmcoreinfo-2.6.32-26-generic
-rw-r--r-- 1 root root 4050080 2010-11-24 15:58 vmlinuz-2.6.32-26-generic

有人能告诉我为什么 update-grub2 会找到 vmlinuz 和 initrd 两次吗?以及如何阻止这种情况发生。

更新:查找 grub.cfg这里

答案1

我怎么想的,你有两个Linux图像查找器/etc/grub.d,删除一个,正确的列表是:

00_header 
05_debian_theme 
10_linux 
20_memtest86+ 
30_os-prober 
40_custom

当您更新 grub 时,这些脚本会查找 OS。

相关内容