John Morales
Overview
- Difficulty: Easy
- Number of Steps: 6
How-To Reinstall Grub after Windows Install Overwrites MBR
This will restore grub if you already had grub installed but lost it to a windows install or some other occurence that erased/changed your MBR so that grub no longer appears at start up or it returns an error.
(This how to is written for Ubuntu but should work on other systems. The only thing to take note of, when you see "sudo" that will mean to you that the following command should be entered at a root terminal.)
1.) Boot into the live Ubuntu CD. This can be a installer CD or any older live session Ubuntu CD.
When you get to the desktop open a terminal.
2.) $> sudo grub
This will get you a "grub>" prompt (i.e. the grub shell). At grub>. enter these commands
3.) grub> find /boot/grub/stage1
This will return a location. If you have more than one, select the installation that you want to provide the grub files.
Next, THIS IS IMPORTANT, whatever was returned for the find command use it in the next line (you are still at grub>. when you enter the next 3 commands)
4.) grub> root (hd?,?)
Again use the value from the find command i.e. if find returned (hd0,1) then you would enter root (hd0,1).
Next enter the command to install grub to the mbr
5.) grub> setup (hd?)
Finally exit the grub shell
6.) grub> quit
That is it, reboot to check Grub was installed to the MBR.
You should see the grub menu at startup.