When you get to the desktop open a terminal and enter. (I am going to give you the commands and then I will explain them later)
Code:
sudo grub
Code:
find /boot/grub/stage1
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)
Code:
root (hd?,?)
Next enter the command to install grub to the mbr
Code:
setup (hd0)
Code:
quit
When you reboot, you will have the grub menu at startup.
Now the explanation.
Sudo grub gets you the grub shell.
Find /boot/grub/stage1 has grub locate the file stage1. What this does is tell us where grub's files are. Only a small part of grub is located on the mbr, the rest of grub is in your boot folder. Grub needs those files to run the setup. So you find the files and then you tell grub where to locate the files it will need for setup.
So root (hd?,?) tells grub it's files are on that partition.
Finally setup (hd0) tells grub to setup on hd0. When you give grub the parameter hd0 with no following value for a partition, grub will use the mbr. hd0 is the grub label for the first drive's mbr.
Quit will exit you from the grub shell.
1 comment:
പോസ്റ്റ് വായിച്ചു...
ഓ.ടോ
തോന്ന്യാക്ഷരങ്ങളെ പറ്റി നടത്തിയ തെരച്ചിലില് കുറെയധികം തോന്ന്യാക്ഷരങ്ങള് കണ്ടെത്തിയ വാര്ത്ത ഇവിടെ ഈ പോസ്റ്റില് കൊടുത്തിരിക്കുന്നു. വായിക്കുക..
Post a Comment