• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

"Cleaning" an SSD

cctaylor88

Senior member
Just moved to a 100% new build, I have my old 120gb SSD that has a Win7 OS on it from my previous build. Anyways... really want to start fresh with that SSD in my new system and don't want much/if anything on it. What are my options? Should I "format" it or should I just utilize a tool to clean it etc? Operating with Windows 10 at the moment. I've heard you aren't supposed to wipe SSDs all that often but I'm not really worried about that here as I have only formatted it a few times but quite some time ago. I forget the process to be honest.
 
Since you will not be giving it away, the best approach is literally to delete all partitions and perform a quick format of the drive. It will not reduce the entire thing's lifecycle by one and TRIM takes care of the rest. This is best done while booted to another drive and formatting from the OS and then letting it sit for a while (<1HR) without any activity to the SSD.
 
Download a live Linux bootable distro (I used gparted)
Run the following (make sure your SSD is the only device connected to avoid any OOPs)

sudo hdparm -I /dev/sda

If the above says it's FROZEN, unplug SATA power, replug SATA power, the rerun the command to make sure it's NOT FROZEN.

Then run

sudo hdparm --user-master u --security-set-pass poop /dev/sda
sudo hdparm --user-master u --security-erase poop /dev/sda
 
Download a live Linux bootable distro (I used gparted)
Run the following (make sure your SSD is the only device connected to avoid any OOPs)

sudo hdparm -I /dev/sda

If the above says it's FROZEN, unplug SATA power, replug SATA power, the rerun the command to make sure it's NOT FROZEN.

Then run

sudo hdparm --user-master u --security-set-pass poop /dev/sda
sudo hdparm --user-master u --security-erase poop /dev/sda

Does gparted provide a list-box selection of recognized drives? Or do you have to type in a drive identifier with those commands, or otherwise enter a command in a DOS interface?
 
Does gparted provide a list-box selection of recognized drives? Or do you have to type in a drive identifier with those commands, or otherwise enter a command in a DOS interface?
Yes, gparted fires up right off the bat and you can identify the appropriate device path that way (eg. /dev/sda, /dev/sdb)

I've never had much luck with secure erase utilities in Windows, whereas *nix works every time.
 
Back
Top