View Single Post
Old 15-02-2009, 11:03   #6
Raistlin
Inactive
 
Join Date: Feb 2004
Location: There's no place like 127.0.0.1
Services: Depends on the person and the price they're offering
Posts: 12,384
Raistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered stars
Raistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered starsRaistlin is seeing silvered stars
Re: Hard Disk Problem

For future reference there's an awesome utility within Linux called dd.

You can use it to write zeros to every bit on a drive. This includes the space occupied by the MBR.

Where # is the drive you want to zero:

Code:
dd if=/dev/zero of=/dev/hd#
The drive should not be mounted when you start the process, and you should direct 'of' to the drive and not to individual partitions (unless you want to zero a partition of course.....). You'll need to format the drive when you're done and you will lose every piece of data on the drive
Raistlin is offline   Reply With Quote