update-grub mostra três imagens?

0

Quando estou executando o update-grub get da seguinte saída:

Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.5.0-26-generic
Found initrd image: /boot/initrd.img-3.5.0-26-generic
Found linux image: /boot/vmlinuz-3.5.0-25-generic
Found initrd image: /boot/initrd.img-3.5.0-25-generic
Found linux image: /boot/vmlinuz-3.5.0-17-generic
Found initrd image: /boot/initrd.img-3.5.0-17-generic
Found memtest86+ image: /boot/memtest86+.bin
done

Por que há três imagens listadas?

Eu li " grub mostra a mesma imagem do Linux duas vezes " também . Isso não resolveu meu problema.

O conteúdo do meu /etc/grub.d/ é:

$ ls -l
-rwxr-xr-x 1 root root  7541 okt 14 19:36 00_header
-rwxr-xr-x 1 root root  5488 okt  4 11:30 05_debian_theme
-rwxr-xr-x 1 root root 10891 okt 14 19:36 10_linux
-rwxr-xr-x 1 root root 10258 okt 14 19:36 20_linux_xen
-rwxr-xr-x 1 root root  1688 okt 11 16:10 20_memtest86+
-rwxr-xr-x 1 root root 10976 okt 14 19:36 30_os-prober
-rwxr-xr-x 1 root root  1426 okt 14 19:36 30_uefi-firmware
-rwxr-xr-x 1 root root   214 okt 14 19:36 40_custom
-rwxr-xr-x 1 root root   216 okt 14 19:36 41_custom
-rw-r--r-- 1 root root   483 okt 14 19:36 README
    
por Frederik Spang 01.04.2013 / 14:57

1 resposta

1

Consegui encontrar isso por meio de alguns googling:

current='uname -r' && uninstall="" && for version in 'dpkg -l linux-image* | grep ii | awk '{ print $2}''; do if [[ "$version" < "linux-image-$current" ]]; then uninstall=$uninstall" $version"; fi; done && sudo apt-get purge $uninstall -y && sudo update-grub2

Remove os kernels antigos e atualiza o grub. Isso resolveu meu problema.

    
por Frederik Spang 01.04.2013 / 15:10