|
AR
|
Posted : Tue, 06 May 2008 16:41:56
Subject :
grub configuration
Just repeat these options to the menu lst each for one os/boot configuration
hd0,0 is the partition (first number is the physical disk, the second one is the partition)
title My Linux 1
root (hd0,0)
kernel /vmlinuz-whatever ro root=/dev/hda1
initrd /initrd-whatever
The good thing is that grub has a shell like interface that you can use BEFORE it boots (press e at the boot prompt) and you can experiment with the options there. It can read EXT2 so you just have to give it the correct filenames on the right partition and you're good to go.
|