Nova entrada de menu nos erros GRUB2, “arquivo não encontrado” e “você precisa carregar o kernel primeiro”

2

Eu queria adicionar uma nova entrada de menu à minha lista do GRUB2. Foi assim que tentei fazer isso e informações necessárias:

Erros depois de escolher a entrada do menu "Debian Wheezy" na lista do GRUB2:

error:file not found
error:you need to load the kernel first

/etc/grub.d/12_debian

#!/bin/sh -e
cat << EOF
menuentry "Debian Wheezy" {
set root=(hd0,5)
linux /boot/vmlinuz-3.2.0-3-amd64
initrd /boot/initrd.img-3.2.0-3-amd64
}
EOF

ls / boot

config-3.2.0-3-amd64  initrd.img-3.2.0-3-amd64  vmlinuz-3.2.0-3-amd64
grub                  System.map-3.2.0-3-amd64

Particionamento

sda1 - ntfs - Windows boot
sda2 - ntfs - Windows C:
sda3 - ntfs - Windows D:
sda4 - extended
-sda5 - ext4 - /boot
-sda6 - lvm - Debian testing
And inside sda6 there's LVM group calld G1 divided into volumes:
home, root, tmp, usr, var, swap

Fontes que usei durante o meu insucesso em configurar tudo.

Convenção de nomenclatura do GRUB2

Bootloader do GRUB 2 - Tutorial completo sobre Dedoimedo.com

O que há de errado?

EDIT # 1

fdisk -l

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      206847      102400    7  HPFS/NTFS/exFAT
/dev/sda2          206848    83473739    41633446    7  HPFS/NTFS/exFAT
/dev/sda3        83473799   935802314   426164258    7  HPFS/NTFS/exFAT
/dev/sda4       935802315   976771071    20484378+   f  W95 Ext'd (LBA)
/dev/sda5       935802880   936779775      488448   83  Linux
/dev/sda6       936781824   976771071    19994624   8e  Linux LVM

EDIT # 2

Console do Grub

linux /[TAB]
Possible files are:
lost+found/ bin/ share/ sbin/ lib/ include/ src/ games/ local/

set root=(hd0,msdos5)
linux/[TAB]
Possible files are:
lost+found/ config-3.2.0-3-amd64 vmlinuz-3.2.0-3-amd64 grub/ 
System.map-3.2.0-3-amd64 initrd.img-3.2.0-3-amd64

Console do Grub, teste de inicialização

set root=(hd0,msdos5)
linux /vmlinuz-3.2.0-3-amd64 root=/dev/G1/root
initrd /initrd.img-3.2.0-3-amd64
boot

#Many, many, many lines of text. After few seconds they stop. The most
#interesting i think are:

ALERT! /dev/G1/root does not exist. Dropping to a shell!
/bin/sh: can't access tty; job control turned off

/etc/grub.d/12_debian outra tentativa

#!/bin/sh -e
cat << EOF
menuentry "Debian Wheezy" {
insmod ext4
set root=(hd0,msdos5)
echo 'loading...'
linux /vmlinuz-3.2.0-3-amd64
echo 'starting kernel...'
initrd /initrd.img-3.2.0-3-amd64
}
EOF

Resultado:

error:file not found
loading...
starting kernel...

EDIT # 3

parte do /boot/grub/grub.cfg

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 3.2.0-3-amd64' --class debian --    class gnu-linux --class gnu --class os {
    insmod gzio
    insmod lvm
    insmod part_msdos
    insmod ext2
    set root='(G1-root)'
    search --no-floppy --fs-uuid --set=root 94215fad-dcbe-4339-92be-f562b1b37133
    echo    'Loading Linux 3.2.0-3-amd64 ...'
    linux   /boot/vmlinuz-3.2.0-3-amd64 root=/dev/mapper/G1-root ro  quiet
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-3.2.0-3-amd64
}
### END /etc/grub.d/10_linux ###

/etc/grub.d/12_debian na próxima tentativa

#!/bin/sh -e
cat << EOF
menuentry "Debian Wheezy" {
insmod ext4
set root=(hd0,msdos5)
echo 'loading...'
linux /vmlinuz-3.2.0-3-amd64 root=/dev/mapper/G1-root
echo 'starting kernel...'
initrd /initrd.img-3.2.0-3-amd64
}

Resultado

error:file not found
loading...
starting kernel...
    
por r4czek 22.09.2012 / 01:53

3 respostas

1

Como você tem uma partição dedicada / boot (você provavelmente não precisa de uma), essa partição não possui um diretório chamado / boot, e por isso os arquivos não são encontrados. Remova o / boot do caminho.

    
por 25.04.2013 / 17:11
0
menuentry "Debian Wheezy" {
insmod ext4
set root='(hd0,msdos5)'
echo 'loading ..'
linux /boot/vmlinuz-3.2.0-3-amd64
echo 'starting kernel ...'
initrd /boot/initrd.img-3.2.0-3-amd64
}
    
por 22.09.2012 / 02:38
0

Hmmm ... thread antigo, mas parece que nunca resultou em resposta de trabalho. Recentemente, tive um problema semelhante que agora é corrigido. Para outras pessoas com problemas semelhantes, recomendo mudar

set root='(hd0,msdos5)'

para o seguinte

 search --no-floppy --fs-uuid --set=root '5bbd33b6-3333-3a33-3333-8045d333bb63'

em que 1234-567A é o UUID da partição desejada obtida de

sudo blkid /dev/sda5

O resultado será parecido com o seguinte.

/dev/sda1: LABEL="SYSTEM" UUID="5bbd33b6-3333-3a33-3333-8045d333bb63" TYPE="ext4" PARTLABEL="EFI system partition" PARTUUID="0c33e3ab-d3dc-3af3-333d-a33eee3c333c"
    
por 09.11.2014 / 17:59