यह वास्तव में मुझे कम कर रहा है। मेरे पास Gentoo के साथ Gentoo और Ubuntu दोनों हैं। जेंटू का एक समर्पित /boot
विभाजन है, जबकि उबंटू नहीं है। मेरे पास menuentry
Gentoo में /etc/grub.d/40_custom
बूट करने के लिए Ubuntu है (और Ubuntu बूट ठीक करता है)।
क्योंकि उबंटू ग्रुब के साथ आता है, मैं अपनी प्रविष्टि को बनाए रखने के बजाय उस पर चेनलोड करना चाहता हूं, जो रूट, कर्नेल, initrd और सामान सेट करता है। यह वही है जो मेरे पास चेनलोडर के लिए है (उबंटू चालू है /dev/sda4
और मैंने वहां ग्रब पहले ही स्थापित कर दिया है):
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
उबंटू में है, /dev/sda4
। उबंटू /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
।