LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Windowze will overwrite my MBR (https://www.linuxquestions.org/questions/linux-newbie-8/windowze-will-overwrite-my-mbr-90746/)

purefan 09-08-2003 10:38 PM

Windowze will overwrite my MBR
 
Hello. I run Mandrake 9.1. I will be forced to install Windows XP in a week, by doing so It will overwrite the MBR, so I wont be able to run the GRUB to decide which OS I wanna boot. I think the only solution is to copy the LILO or GRUB (either one) to a floppy disc and boot from it after installing XP. the problem---> I dont know how to install grub or Lilo in a floppy.
If there is any other way around please tell me, otherwise I would appreciate any help u can give me.

Thanks
:Pengy:

Demonbane 09-08-2003 11:16 PM

creating a grub boot disk is easy, first insert a floppy, if it's not formatted do:
mke2fs /dev/fd0

then mount it, for example on /mnt/floppy:
mount -t ext2 /dev/fd0 /mnt/floppy

then do:
grub-install --root-directory=/mnt/floppy 'fd0'

and that's it you got yourself a grub bootdisk. When you want to reinstall grub into MBR just boot with the disk, then after you get to the grub prompt first change the root to where your /boot directory is by doing
root (hd0,0)
if its in the first partition of primary master
then:
setup (hd0)
to reinstall it in mbr

quatsch 09-08-2003 11:20 PM

You can do it using the installation CD of mandrake. I forget the exact procedures but search here on the forum and you'll find it.

Another way to do it is to make a boot floppy using the tool available in mandrake control center ->boot. Start mandrake using the floppy and then reinstall lilo or grub once you have mandrake up and running. BTW, having a boot floppy is always a good idea.

croakofonix 09-09-2003 11:44 AM

purefan,

This is one of the solutions that I got off the net. It's for RedHat, but should work with Mandrake also.

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
The menu will appear again.

The other way 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.

It's worked successfully on my RedHat 9.0.

-Akshar

Skyline 09-09-2003 01:03 PM

Another way is just to make a simple boot floppy with mkbootdisk

Put a blank floppy in your drive:

su to root user in a shell then type

mkbootdisk 2.4.21-0.13mdk

You can use this to boot into MAndrake any time - then when your ready just re-install your bootloader as required.

purefan 09-09-2003 06:47 PM

Thank you all for the help, I have my problem totally fixed now and can install the windoze without worries.
I appreciate all your concern.
Have a good day


All times are GMT -5. The time now is 04:11 PM.