Я хочу выполнить двойную загрузку моего ноутбука, используя RedHat и Ubuntu в разных разделах. Мой хардиск содержит следующие разделы:

/boot ==> redhat boot partition 300MB
/SWAP ===> 8GB
/ ===> UBUNTU ROOT
/ ===> RedHat Root.
/Sharing ==> to be shared between the two linux os.

Сначала я установил RedHat без параметра grub, а затем Ubuntu с установленным grub в /dev /sda (MBR). Моя проблема в том, что я не смог загрузить RedHat, я перепробовал все доступные инструменты для настройки grub, но мне не удалось. Я обновил устаревший grub до Grub2 в Ubuntu.

ниже находится запись grub для Ubuntu ===>

#BEGIN /etc/grub.d/10_linux
menuentry 'Ubuntu, with Linux 2.6.32-38-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 0275f7b6-ff36-42a2-9d89-03195b9de12a
    linux   /boot/vmlinuz-2.6.32-38-generic root=UUID=0275f7b6-ff36-42a2-9d89-03195b9de12a ro   quiet splash
    initrd  /boot/initrd.img-2.6.32-38-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-38-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 0275f7b6-ff36-42a2-9d89-03195b9de12a
    echo    'Loading Linux 2.6.32-38-generic ...'
    linux   /boot/vmlinuz-2.6.32-38-generic root=UUID=0275f7b6-ff36-42a2-9d89-03195b9de12a ro single 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-2.6.32-38-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    insmod ext2
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 0275f7b6-ff36-42a2-9d89-03195b9de12a
    linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod ext2
    set root='(hd0,1)'
    search --no-floppy --fs-uuid --set 0275f7b6-ff36-42a2-9d89-03195b9de12a
    linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
#RedHat Menu by pato
menuentry 'RedHat Enterprise 5.4' {
    set root='(hd0,4)'
    linux   /boot/vmlinuz-2.6.18-164.el5 root=/dev/sda4
    initrd  /boot/initrd-2.6.18-164.el5.img
}
### END /etc/grub.d/40_custom ###
=====================end of ubuntu Grub.=================

Пожалуйста, помогите пошаговым руководством по установке двух операционных систем linux и настройке grub для двойной загрузки.

0