garethjmsaunders wrote:
>> According to the latest Mediashield manual,
>>
>> "Clear the MBR (press C, then press Y at the prompt).
>> Delete the array (press D, then press Y at the prompt)."
>>
>> "What does "Clear Disk" mean in the RAID ROM Setup?
>>
>> Clear Disk clears the MBR (Master Boot Record). This is needed to prevent
>> invalid data from appearing in the MBR space on any of the drives included
>> in the array. Not doing so could render the system unstable."
>>
>> http://us.download.nvidia.com/Window...hield_UGv6.pdf
>
> Just to confirm, is that the order that I carry out these operations?
>
> 1. Clear the MBR
> 2. Delete the array
>
> Thanks again
>
> Gareth
It all depends on how exactly Nvidia implemented their clear operation.
The manual doesn't go into details on that.
You could clear the MBR, delete the array, and then attempt to
clear the MBR on each drive separately. Now, whether that last option
is possible, you'll discover when you test it. I don't have any
RAID setups here to test.
To clean a drive, I boot Knoppix or Ubuntu, and use the "dd" command,
to erase part of the drive. Something like this is suggested.
On Knoppix, there is no root account to log into, so the "sudo"
command is prepended to the command, to elevate the user. dd
stands for "disk dump", and in this case is transferring a source
of zeros (the pseudo device /dev/zero) to each sector.
sudo dd if=/dev/zero of=/dev/sda bs=512 count=1
I modify that slightly, like setting the count=10000 and wipe out
a bit more of the drive. I had to use the "dd" command, the last
time I tried to install Windows on a previous Linux disk. I had
to wipe the drive, before Windows would touch it.
sudo dd if=/dev/zero of=/dev/sda bs=512 count=10000
That would zero out about 5 megabytes of storage at the beginning of
the disk drive. The "/dev/sda" must be adjusted, according to the
naming conventions of Linux, for attached disks. Also, be *very*
careful, to erase the proper disk. For safely, you can disconnect
all drives, except the drive(s) to be erased. I've read of
enough accidents by users of DBAN, to know that such a
warning must be given, over and over again.
Paul