• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

zeroing out just one partition

nightanole

[H]ard|Gawd
Joined
Feb 16, 2003
Messages
2,032
I, and several other people, have pcs with that dam recovery partition on the hard drives. I want to keep that partition for the not so bright folks here. However i want to zero out and reinstall the windows partition. How would i zero out just one ntfs partition, with only a cd rom to boot from. I cant install the hard drive in another machine. I just want to do the old format C:\ job and then zero it out.
 
Let me see that I understand you correctly:
1. you want to leave the recovery partition intact.
2. you want to format the Windows install partition
3. you are planning to reinstall windows.

Why then do you need to zero out the windows partition? Formatting does a fine job for removing the data for a reinstall.

If you really needed to zero out/ wipe a single partition, I am sure that there are some tools (dban ?) that will do such a thing for you. You can probably use them with BartPE.
 
here's a linux solution:

boot with knoppix or fedora recovery cd.
run 'fdisk -l /dev/hda' and identify the partition in question.
use 'dd' to write zero's to the partition: 'dd if=/dev/zero of=/dev/hda1' (assuming hda1 is the partition you identified using fdisk -l)
 
Back
Top