Questo mi sta davvero abbattendo. Ho Gentoo e Ubuntu, entrambi con Grub2. Gentoo ha una /boot
partizione dedicata , mentre Ubuntu no. Ho un menuentry
in Gentoo /etc/grub.d/40_custom
per avviare Ubuntu (e Ubuntu si avvia OK).
Poiché Ubuntu viene fornito con Grub, voglio caricarlo in quello, invece di mantenere la mia voce che imposta root, kernel, initrd e cose simili. Questo è quello che ho per il chainloader (Ubuntu è acceso /dev/sda4
e ho già installato Grub lì):
menuentry 'Chainloader' {
insmod chain
set root=(hd0,4)
chainloader +1
}
Mi sta dando error: Invalid signature
e non ho trovato alcuna soluzione disponibile. Qualcuno può indicare qualcosa?
Questo è il risultato di </dev/sda4 head -c 512 | hd
00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
00000200
Questo è il risultato di fdisk -l
. /dev/sda1
è /boot
di Gentoo, Gentoo è dentro /dev/sda2
, Ubuntu è dentro /dev/sda4
. Anche Ubuntu /boot
è presente /dev/sda4
.
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xe001152b
Device Boot Start End Blocks Id System
/dev/sda1 1 9 72261 83 Linux
/dev/sda2 10 13064 104864287+ 8e Linux LVM
/dev/sda4 * 18152 19457 10490445 83 Linux
Non ci sono errori con grub-install /dev/sda4 --no-floppy --force
/usr/sbin/grub-setup: warn: Attempting to install GRUB to a partition instead of the MBR. This is a BAD idea..
/usr/sbin/grub-setup: warn: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
Installation finished. No error reported.
/dev/sda4
. Hai più di un disco? Qual è la tua tabella delle partizioni? Si prega di pubblicare l'output difdisk -l
e i messaggi dagrub-install /dev/sda4 --no-floppy --force
.