これは本当に私を失望させています。GentooとUbuntuがあり、どちらもGrub2を使用しています。Gentooには専用/boot
パーティションがありますが、Ubuntuにはありません。私はmenuentry
Gentooで/etc/grub.d/40_custom
Ubuntuを起動します(Ubuntuは起動します)。
UbuntuにはGrubが付属しているため、ルート、カーネル、initrdなどを設定するエントリを維持するのではなく、Grubにチェーンロードしたいと考えています。これは私がチェーンローダー用に持っているものです(Ubuntuはオン/dev/sda4
になっていて、すでにGrubをインストールしています):
menuentry 'Chainloader' {
insmod chain
set root=(hd0,4)
chainloader +1
}
それは私に与えているものでerror: Invalid signature
あり、解決策はありません。誰かが何かを指摘できますか?
これはの結果です </dev/sda4 head -c 512 | hd
00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
00000200
これはの結果ですfdisk -l
。/dev/sda1
は/boot
Gentooのもので、Gentooはにあり/dev/sda2
、Ubuntuはにあり/dev/sda4
ます。Ubuntu /boot
も入ってい/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
にエラーはありません 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
。複数のディスクがありますか?あなたのパーティションテーブルは何ですか?の出力とfdisk -l
からのメッセージを投稿してくださいgrub-install /dev/sda4 --no-floppy --force
。