man grub
man grub-install
the man pages are always a must look.
to install grub on the first HD you would need to do 'grub-install /dev/hda' i think.
Before you do that you need to add the appropriate OSes to the grub.conf.
I think the entry for redhat should look like:
title redhat /*the title that will be in the menu*/
root (hd1,0) /*root of the boot parition which is second harddrive first partition, grub starts counting at zero*/
kernel /boot/vmlinuz-2.4.7-10 ro root=/dev/hdb1 hdd=ide-scsi /*where your kernel image is.. this is just what mine looks like*/
initrd /boot/initrd-2.4.7-10.img
this is what the windows entry should be:
title windoze
root (hd0,0)
makeactive /*makes the partition active*/
chainloader +1 */grub hands off the rest of loading to the partition*/
I am almost positive about the windows entry and not so sure about the redhat entry.
[ July 23, 2002: Message edited by: Master of Reality / Bob ]