Is there a clone of the windows recovery console for windows xp because I no longer have the disc to restore the MBR. I also need to be able to run this off a flash drive because my dvd reader is broken.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

ok I see you didn't install the recovery console locally then! or store the ISO.

There is the windows xp 6 file disk set http://support.microsoft.com/kb/310994

so-called "Windows XP Setup disks"

It can get you to a recovery console.

You could also try a Windows 98 boot disk. Downloadable.. FDISK /MBR that might do it.

Maybe there are some more modern better ways and then that'd probably be a better answer.

link|improve this answer
I ended up finding just the recovery console to download and found a tutorial to make it bootable. ill make this as a answer because i basically did this. – Adam543i Oct 14 '11 at 6:29
1  
well, better to either post what you foiund as an answer or in comments, but to post it, for others. Since you mention downloading the recovery console, I found this forums.pcpitstop.com/index.php?/topic/… mentions this link thecomputerparamedic.com/files/rc.iso and credits wannabe1 from Geeks to Go. – barlop Oct 14 '11 at 10:55
feedback

You can do it with Linux. Either boot a USB stick; or if Linux is already installed, you can rewrite the MBR as a "final act", which will make it inaccessible (until you reinstall Linux).

First you have to identify the disk. In the Terminal:

sudo fdisk -l

to list the partitions. The disk will probably be either /dev/sda or /dev/hda. Then:

sudo apt-get install lilo
sudo lilo -M /dev/sda mbr

lilo is no longer installed by default, so the first line will do it (on Debian-based distros, including Ubuntu) if necessary.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.