mjd <[EMAIL PROTECTED]> writes: > 1. Started out with NT4 of partition 1. > /dev/hda2 - /boot > /dev/hda3 - / > But when I select it from GRUB during boot up, I get the following error: > rootnoverify (hd0,2) > chainloader +1
Ah, it looks like you're following the instructions for chainloading Windows NT from GRUB. You were getting an error because the bootloader of 7.3 was installed to MBR, not to the partition's boot record, so the partition itself is not bootable. Here's how the GRUB syntax goes: (hd0,0) = /dev/hda1 (Windows NT partition) (hd0,2) = /dev/hda3 (Linux partition, Redhat 7.3) (hd0,3) = /dev/hda4 (Linux partition, Redhat 9) The following commands should boot into Windows NT: rootnoverify (hd0,0) chainloader +1 To fix this, set up your RH properly. You will need to specify the kernel and root parameters. -- Sacha Chua <[EMAIL PROTECTED]> - Ateneo CS faculty geekette interests: emacs, gnu/linux, making computer science education fun http://sacha.free.net.ph/ - PGP Key ID: 0xE7FDF77C -- Philippine Linux Users' Group (PLUG) Mailing List [EMAIL PROTECTED] (#PLUG @ irc.free.net.ph) Official Website: http://plug.linux.org.ph Searchable Archives: http://marc.free.net.ph . To leave, go to http://lists.q-linux.com/mailman/listinfo/plug . Are you a Linux newbie? To join the newbie list, go to http://lists.q-linux.com/mailman/listinfo/ph-linux-newbie
