lucky13
Group: Members
Posts: 1478
Joined: Feb. 2007 |
|
Posted: Dec. 26 2007,18:41 |
|
Did you wipe your MBR? Or just delete partitions? (That's not the same thing -- grub and lilo can persist in MBR.) To wipe it:
Code Sample | dd if=/dev/zero of=/dev/hda bs=512 count=1 |
Wipe MBR but keep partition table intact (then reinstall grub/lilo):
Code Sample | dd if=/dev/zero of=/dev/hda bs=446 count=1 |
Make a copy of your MBR to a floppy from which to boot (which will be useless in your case right now since grub errs):
Code Sample | dd if=/dev/hda of=/dev/fd0 bs=512 count=1 |
-------------- "It felt kind of like having a pitbull terrier on my rear end." -- meo (copyright(c)2008, all rights reserved)
|