Flashing DBAN from Linux: A Step-by-Step Guide
If you are looking to securely erase your hard drive or solid-state drive (SSD), DBAN (Darik's Boot and Nuke) is a popular and effective tool. In this guide, we will walk you through the process of flashing DBAN from Linux, ensuring your data is completely wiped and unrecoverable.
Step 1: Download DBAN
First, you need to download the DBAN ISO file. Open your web browser and navigate to the DBAN website. Look for the "Download" section and click on the appropriate version for Linux.
Step 2: Prepare a Bootable USB Drive
Once the DBAN ISO file is downloaded, you will need to create a bootable USB drive. Connect a blank USB drive to your Linux computer. Open a terminal and run the following command to identify the USB drive:
lsblk
Make a note of the device name for your USB drive (e.g., /dev/sdb). Be cautious not to select the wrong device, as this process will erase all data on the chosen drive.
Next, use the following command to write the DBAN ISO file to the USB drive:
sudo dd if=/path/to/dban.iso of=/dev/sdX bs=4M status=progress
Replace "/path/to/dban.iso" with the actual path to the downloaded DBAN ISO file, and "/dev/sdX" with the device name of your USB drive.
Step 3: Boot from the USB Drive
Now that you have a bootable USB drive with DBAN, you need to restart your computer and boot from it. Before doing so, make sure to back up any important files as the process will erase all data on the target drive.
Insert the USB drive into your computer and restart it. As the computer boots up, press the key to enter the boot menu (usually F12 or Esc). Select the USB drive from the list of bootable devices.
Step 4: Start DBAN
Once you have successfully booted from the USB drive, you will see the DBAN menu. Select the default option, "Interactive mode," and press Enter.
DBAN will now start scanning for available drives. Once the scan is complete, you will see a list of detected drives. Use the arrow keys to select the drive you want to wipe and press the spacebar to mark it for erasure. If you have multiple drives, repeat this process for each one.
Once you have selected the drives, press F10 to start the erasure process. DBAN will now securely erase the selected drives, making the data unrecoverable.
Step 5: Completion and Cleanup
After DBAN has finished erasing the drives, you will see a completion message. At this point, you can safely remove the USB drive and restart your computer.
Remember, the erased data is irrecoverable, so be absolutely certain that you have backed up any important files before running DBAN.
References
| Source | Link |
|---|---|
| DBAN Website | https://dban.org/ |