LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   loading grub on MBR (https://www.linuxquestions.org/questions/linux-software-2/loading-grub-on-mbr-90382/)

Xing 09-08-2003 12:31 AM

loading grub on MBR
 
i have a dual boot machine with XP and RH8.0
i had to format my c drive and hence the MBR also got formatted and so did the grub. how do i reinstall grub in MBR?i do not want to destgroy the data. so no reload for me!:)

croakofonix 09-08-2003 12:48 AM

Xing,

I faced the same problem a couple of weeks back. I found a solution online and am pasting from the same document.

Put the redhat boot disk you created on the installation on the floppy
drive, boot the system and run grub command



Remember that for grub (hd0,1) means hda (primary controller master), second partition.



Now we need to tell grub where are the grub files:

If you know where they are type something like:
root (hd0,1)

else if you have no idea, type:
find /boot/grub/stage1
and then the root command with the correct parameters

setup (hd0)
to install it on hd0 that is MBR of the first HD

type quit and reboot

Another solution is :

If you didn't create the boot disk, boot with the Red Hat Linux CD number 1 and choosse rescue mode typing:
linux rescue



Now you need to repair the ext3 filesystem because now it's bigger than before and the journal file must be created again



First, check the filesystem:



fsck.ext3 /dev/hda2



Now, create again the journaling ext3 file:



tune2fs -j /dev/hda2



Now mount the root filesystem on /mnt/sysimage and run grub



mount -t ext2 /dev/hda2 /mnt/sysimage
cd /mnt/sysimage
cd sbin
grub

Once started, GRUB will show the command-line interface . First, set the GRUB's root device1 to the boot directory, like this:
grub> root (hd0,1)
If you are not sure which partition actually holds these files, use the command find, like this:
grub> find /boot/grub/stage1
This will search for the file name /boot/grub/stage1 and show the devices which contain the file.

Note added by: John Neuhaus
If you are using a separate /boot partition , as the official documentation says:
"... if you have the partition /boot and you install GRUB images into the directory /boot/grub, GRUB recognizes that the images lies under the directory /grub but not /boot/grub"
Then if 'find /boot/grub/stage1' does not find the file, try 'find /grub/stage1'

Once you've set the root device correctly, run the command setup :
grub> setup (hd0)
This command will install GRUB on the MBR in the first drive.

-Akshar

Xing 09-08-2003 01:06 AM

thnx
 
thnx akshar,

i will defenitely try this at home today.
till then any more suggestions are most welcome.

Regards
Xing

Umasankar 09-08-2003 06:04 AM

Boot into rescue mode and run grub-install /dev/hda to install Grub in the MBR.

Note: Documents say, using grub interactively is better than running grub-install. But grub-install always worked for me.

Xing 09-09-2003 12:18 AM

akshar , your method worked.

umashanker, i had given forst shot to your method (because it was short and hence easy:D ) but it di not work. i got the message..

grub: could not find file or directory.

Thnx anyway.

and akshar, if possible send me the address of this document which u had pasted as solution to my problem.. i m assembling all the useful links on my website for use of other people.. so kindle oblige.
(once more :D )

regards
Xing

croakofonix 09-09-2003 11:33 AM

Xing,

'Twas a long time back (in computer years) that I looked it up online. I think your option would be to google and find the page....check out "Restoring Grub" on Google, thats how I got to the site.
Glad to know that I could be of help....

-Akshar

patientzero 09-09-2003 12:57 PM

Ok, but was your XP partition NTFS or FAT32? I understand there are problems with grub and NTFS doing a multiboot?

Xing 09-10-2003 12:38 AM

patientzero

my XP partition was FAT32.. so no troubles... i try to keep my drives in FAT32 only because NTFS poses problems even with win OS'.

regards
vishesh


All times are GMT -5. The time now is 05:29 PM.