Skip to content

CyberShadow/trimcheck

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
August 21, 2013 14:17
October 7, 2015 13:54
April 2, 2015 23:06
June 12, 2016 19:16

trimcheck

This program provides an easy way to test whether TRIM works on your SSD. It uses a similar method to the one described here, but uses sector calculations to avoid searching the entire drive for the sought pattern. It also pads the sought data with 32MB blocks of dummy data, to give some room to processes which may otherwise overwrite the tested deleted disk area.

The program will set up a test by creating and deleting a file with unique contents, then (on the second run) checks if the data is still accessible at the file's previous location.

Download

You can download a compiled version on my website, here.

Usage

Place this program file on the same drive you'd like to test TRIM on, and run it. Administrator privileges and at least 64MB free disk space will be required.

Building from source

A D compiler is required.

You can use the rdmd tool (included with DMD) to build trimcheck:

$ git clone --recursive https://github.com/CyberShadow/trimcheck
$ cd trimcheck
$ rdmd --build-only trimcheck

License

trimcheck is available under the Mozilla Public License, version 2.0.

Changelog

trimcheck v0.7 (2014-08-16)

  • Fix incorrect free space detection

trimcheck v0.6 (2014-03-23)

  • Fix support for drives with big clusters
  • Fix false negatives due to compressed filesystems

trimcheck v0.5 (2013-08-21)

  • Write fully random data as padding instead of a repeating pattern (to avoid possible intervention of deduplication components)
  • Cryptographically sign executable

trimcheck v0.4 (2013-02-18)

  • Remove read checks, as they caused tested data to not be TRIMmed in some configurations
  • Add symlink detection

trimcheck v0.3 (2013-01-09)

  • Add support for SSDs which present cleared sectors as filled with 1s instead of 0s

trimcheck v0.2 (2012-12-10)

  • Pad tested data with 32MB of dummy data on either side

trimcheck v0.1 (2012-12-09)

  • Initial release