How to Wipe an HDD : antiforensics | Torhoo darknet markets
To properly wipe a hard drive you should boot into a live linux USB or live cd. Once you have booted into a linux distribution, you can use the fdisk command to find your hard drive name and dd to wipe your drive with random data and zeros. In addition to this we will also cover how to use ATA secure erase which is an extra way to wipe your drive that you should use in addition to manually overwriting data.
When you boot into your linux OS you should open up a command line interface such as the terminal application. You will type the following command.
sudo fdisk -l
This command will list your hard drives and external media. You will locate your drive by the size of the volume. The average hard drive will likely be named /dev/sda. in this case the commands to wipe would be
sudo dd if=/dev/urandom of=/dev/sda status=progress
sudo dd if=/dev/zero of=/dev/sda status=progress
I would do two passes even though technically it has not been proven that you can recover reliablyc even after 1 pass. I would not take a gamble and use two passes in addition to secure Erase tbh just in case. I feel the same way about things like Qubes combined with Whonix.
If you are going to use Tor Browser, you might as well combine it with Qubes and a whonix virtual machine because that little bit of extra effort will help you out a lot by not allowing you to make as many mistakes. Everyone makes mistakes but one thing Qubes will do is help you compartmentalize things automatically so that you do not have as much of a chance of human error. :)
I have secure erased and manually wiped my hard drive dozens and dozens of times over 10 years. It is still functioning to this day. This is just my anecdotal experience though and you should just be aware this will wear out your drive faster and possibly cause heat build up. If you are wiping your drive just make sure it has proper cooling because you will be continuously writing to it for a long time. To use the secure erase command you can read the documentation below
https://ata.wiki.kernel.org/index.php/ATA_Secure_Erase
Edit : Please avoid the use of SSDs or solid state drives. There is no reliable way to wipe them as far as I am aware, they must be destroyed and in some cases the ATA secure erase command has failed on solid state drives as well. I would wipe these drives from an airgapped system with dd and secure erase and destroy them after.