Post

How To Prepare Your Old Computer's Hard Drive For Disposal

Disclaimer

This tutorial can be helpful for making sure your data does not fall into someone else's hands when disposing of old hard drives or computers.

In today's throwaway world, most of us have faced the issue of buying a new computer and getting rid of the old one. These old computers are ripe for the picking for those who know how to recover information from the old computer's hard drive. Most users do not even think or realize the amount of personal data that their old hard drive may contain. This tutorial will show you how to overwrite the data on your old hard drive with a series of random characters in no particular order. This will make it very difficult (NOT IMPOSSIBLE) to recover the data from the hard drive using basic tools.

I must mention that the process used in this article is only a small, first line of defense against data theft when disposing of an old computer. There are more advanced steps that may need to be taken by a professional depending on your specific needs, but this will get most average users started on keeping their old data out of the wrong hands.

BE SURE YOU HAVE ALL IMPORTANT DATA FROM YOUR OLD HARD DRIVE BACKED UP TO A DIFFERENT DRIVE OR YOU MAY LOSE THE DATA PERMANENTLY!!!

Prerequisites

  • Etcher to create live USB: Etcher
  • ISO image of a linux distribution called TinyCore: TinyCore
  • USB flash drive of 1Gb or larger.
      This process will erase the contents on the flash drive.

    How To

    1. Start by downloading the Etcher program for your Operating System using the link above.
        Follow the steps provided by Balena to install the Etcher program. If you prefer a different live USB creator, such as unetbootin, feel free to use it in place of Etcher.
    2. Download an ISO of TinyCore linux distribution from the link above. Remember the location of where you save the downlaoded ISO.
    3. Insert your USB flash drive into your Computer. Start the Etcher Program
    4. Once the Etcher program is started, use the "select from file" option to select the TinyCore-current.iso from the location you downloaded the ISO in step 2. Next, select the "Select target" and choose your USB flash drive. Last, select "Flash!". This will create a live USB which can be used to boot into TinyCore linux.
    5. After the Etcher program has created your new live USB, insert the USB into the machine in which you want to erase ALL data.
    6. Power on the machine and immediately repeatedly press the boot option key.
        This key is different based on the manufacturer of the computer. You may need to research which key you need to press for the boot menu.

        Also, you may need to research the proper BIOS settings for the computer in order to boot into a live USB.
    7. When the boot options for TinyCore appear, select the "default" option. TinyCore Live Operating System should now boot up.
    8. Once TinyCore has started, click on the "Mount Tool" button on the tool bar. This will start a program that will tell you the drive label of your hard drive. One label will be in gree. This is the label of the live USB that you are currently booted into.
        Usually this will be labeled as "sdb" or "sdb1".
    9. In red you should see "sda","sda1", and so forth (Or something similar). The "sda" is the drive label and "sda1" represents a partition on the "sda" drive. The key is to find the drive that is listed in red as well as all of it's partitions. MAKE NOTE OF THIS LABEL FOR LATER.
      You can ignore any "sr0" and any subsets of "srX"
    10. Next, click on the "Terminal" button on the dock. This will open a Unix terminal where we will run our next command to overwrite the data on the old hard drive.
    11. Type the following command into the terminal.
        Replace "sdX" where X is the label letter of your drive that you took note of in step 9 of this tutorial. In our example we would replace "sdX" with "sda"
      $ sudo dd if=/dev/urandom of=/dev/sdX bs=1M
    12. It may appear that the terminal stops responding. However, if no command error appears and the cursor is not flashing, then the command was issued successfully. Depending on your hard drive size, this process may take several hours. Once the terminal gives you an outpu of something like the following:

      $ 111108189+0 records in
      $ 111108189+0 records out
      $ 56887392768 bytes (57GB) copied, 85620, 7 seconds, 667kb/s

      Then the process is complete and you can shut down the machine. Now your old computer is ready to be disposed of.
  • This post is licensed under CC BY 4.0 by the author.