« Отговор #3 -: May 17, 2008, 11:09 »
Here's the quick and easy way to re-enable Grub.
1) Boot off the LiveCD
2) Open a Terminal and type in the following commands, noting that the
first command will put you into the grub "prompt", and the next 3
commands will be executed there. Also note that hd0,0 implies the
first hard drive and the first partition on that drive, which is where
you probably installed grub to during installation. If not, then
adjust accordingly.
Code:
sudo grub
root (hd0,0)
setup (hd0)
exit
Reboot (removing the livecd), and your boot menu should be back.
If you have grub after the install but Windows is not an option try this:
Open the terminal: applications/accessories/terminal
insert this code
Code:
sudo gedit /boot/grub/menu.lst
Copy this code and insert it at the bottom of this open document (In
the title portion you can call windows whatever you like)
Code:
title Windows 95/98/NT/2000
root (hd0,0)
makeactive
chainloader +1
Look at the top of this open document where it annotates that the grub
loader is hidden by default. If you want the selection to be visible
instead of having to hit (esc) when booting place a (#) sign in front
of this line.
Save this document and reboot your system
Note: You should also verify that hd0,0 is the correct location for
Windows. If you had installed Windows on the 4th partition on the
drive, then you should change it to (hd0,3)