YellowDog said:
When I remove the harddisk the laptop will start up from a cd/dvd. When
during startup the HD is connected again I was able to format it.
However it's not possible to instal any system on it. The laptop still
won't startup from the cd/dvd when the now formatted HD is in place.
When starting op with MSDOS on a cd andtrying to acces the C: drive the
system goes crazy running loads of text over the screen again and again.
Could there be a harddisk password something that blocks of any attempt
to install anything on it?
Maybe there is something living in the MBR ? Try replacing the
MBR, or use a better "eraser".
This is one way to erase a drive.
*******
http://blogs.zdnet.com/storage/?p=129
http://cmrr.ucsd.edu/people/Hughes/SecureErase.shtml
http://groups.google.ca/group/alt.comp.hardware/msg/70611e7925a22f31?dmode=source
*******
If you have access to a Linux LiveCD, you could also use
the DD command. For example, in Knoppix, this would delete
the first block on the disk. Bump up the count, to erase
more of the disk. I've used "count=10000", to restore
a disk to a state where it would accept an installation.
sudo dd if=/dev/zero of=/dev/sda bs=512 count=1
Sudo is needed with a Knoppix CD, to gain root access.
In other Linux situations, you may already be logged in
as root, in which case the "sudo" can be removed. In
addition, you should adjust the output file name (device)
to suit the device being erased. The raw device might not
be /dev/sda in every scenario. And it would help to only
have the disk connected, that you wish to erase. It is
much more risky to have multiple disks connected, as you
could really mess up another disk if you select that
one instead.
There is even a Windows version of "dd", but for obvious
(risk) reasons, I've never tried this.
http://www.chrysocome.net/dd
Using "dd --list" with that one, you can see how Windows
names disk drives. So that would give some idea of all
of their names. Perhaps an option like that works in the
Linux version as well.
If a Host Protected Area is being used, I think even
DD could not touch it. The HPA would have to be
removed first. But I'm not certain that the HPA
concept would prevent an installation. The MBR
seems a better place to hide something.
Paul