

InterviewSolution
Saved Bookmarks
1. |
Solve : GRUB - Fixmbr? |
Answer» GRUB:Where is GRUB located? Will deleting the Ubuntu partition get rid of grub? Where is GRUB located?There are different stages of the grub. Stage 1 is located in the master boot record thats on the boot SECTOR of your hard drive. The boot sector is physically located on the first sector of your hard drive. Stage 2 is usually at /boot/grub in the root partition and can physically located at just about any part of the Ubuntu partition. Quote Will deleting the Ubuntu partition get rid of grub?kinda It will get rid of the useful part of the grub loader - the list of options to choose from. Grub will still be on the master boot record and you will most likely see: "Grub ERROR 22" and you will not be able to boot into windows. Quote What does fixmbr do?It fixes the master boot record. It will replace the data that the grub has written to the mbr with the windows boot loader. Quote Should I use fixmbr before or after I delete the Ubuntu partition?I'd do it after. Quote Will it work?Sure. Although, you may not even have to run the command. First, try the "Startup Repair" option from the Windows DVD. If that doesn't work, then go into the command prompt and type in cd\ and press enter to get to the root of c. At the c prompt type in bootrec.exe /fixmbr and press enter. Awesome, thank you. Startup repair didn't work; however, bootrec.exe /fixmbr worked like a charm. Thanks for the advice and the REASSURANCE (which was what I really needed : ) |
|