Eu quero inicializar meu laptop usando RedHat e Ubuntu em diferentes partições. Meu disco rígido contém as seguintes partições:
/boot ==> redhat boot partition 300MB
/SWAP ===> 8GB
/ ===> UBUNTU ROOT
/ ===> RedHat Root.
/Sharing ==> to be shared between the two linux os.
Eu instalei o RedHat primeiro sem a opção grub, seguida pelo Ubuntu com o grub instalado em "/ dev / sda" (MBR). Meu problema é que eu não consegui inicializar o RedHat, Eu tentei todas as ferramentas disponíveis para configurar o grub, mas eu falhei. Eu atualizei o grub legado para o Grub2 no Ubuntu.
abaixo é a entrada do grub para o 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.=================
Por favor, ajude por um guia passo a passo para instalar os dois sistemas operacionais linux e configurar o grub para dualboot.