|
Uninstalling Linux If you really wanted to "uninstall" Linux, you could run the following two commands (from under DOS or MS Windows):
LOCK C:
which will get rid of LILO--it overwrites the master boot record (MBR) of your first hard drive, where LILO resides. The "lock" command allows "raw" writing to disk, which is normally disallowed on more recent DOS versions as an antiviral measure. The problem with FDISK/MBR is that it does not report back any success or failure, so it is better to proceed it with the "lock" command. After this you can remove the Linux partitions using the DOS "FDISK" utility to re-claim the hard drive space.
Apparently, MS FDISK does not always cope with removing the Linux partitions. In this case, I may use linux fdisk. The simplest may be to boot from the Linux installation floppy/CD, and to remove the partition using the Linux partitioning tool when it pops up during the "installation" procedure. After that I abort the "installation" and Linux is gone. If you still have problems, here are the ultimate solutions for zeroing the MBR Linux-based solution. If you can boot Linux - say via boot floppy - you can simply invoke "dd": dd if=/dev/zero of=/dev/hda bs=512 count=1 This fills up the MBR with zeros. Obviously, you have to be root to do this. DOS-based solution . Boot with a DOS floppy that has "debug" on it; run debug At the '-' prompt, "block-fill" a 512-byte chunk of memory with zeroes: f 9000:0 200 0 Start assembly mode with the 'a' command, and enter the following code: mov dx,9000 Press <Enter> to exit assembly mode, take a deep breath - and press "g" to execute, then "q" to quit "debug". Your HD is now in a virgin state, and ready for partitioning and installation.
|