|
Where is your current grub? It should be in /boot/grub, that's the logical place for it. So what I would do is this:
./configure --prefix=/usr
make
make install
cp /usr/share/grub/i386-pc/stage{1,2} /boot/grub
Then to install on your MBR:
grub
root (hd0,0) ***NB hd0,0 should be replaced with the hd label of your root partition***
setup (hd0) ***NB hd0 should be changed if your primary drive is anything but hda (although it probably isn't)***
quit
Easy as that. But as always, keep a boot disc handy when messing around with your MBR.
Guy
Edit: The line "setup (hd0)" is the bit that installs to your MBR. That's the point of no return. Just so you know.
Last edited by guygriffiths; 01-14-2004 at 05:58 AM.
|