Tip: SSD and Linux. Enable TRIM and check if it works

What is TRIM?

On hard disks, with spinning magnetic platters, you don’t care if a particular sector is being used by the operating system or not. If you want to use it again, just ask the controller to write into it, and the controller will just overwrite whatever was in that sector.

With SSD, if the sector already contains some information and you want to write into it, the old data needs to be deleted (zeroed out) first, and then the new data written. Zeroing out the old data takes considerable time, so it would make sense if we could tell the controller that the sector is no longer being used, allowing the controller to zero out the sector data in the background, and then when we need to use the sector again, it will be ready to be written into immediately, saving us a lot of time.

This is what the TRIM command does, it tells the controller that the sector is no longer used and can be zeroed out.

For the TRIM command to work, we need ext4 and the kernel to be 2.6.33 or higher. In this example we use Fedora.

Install Fedora

If you don’t have it installed yet, or want to make sure that it’s installed correctly for the TRIM command to work, here is a very brief guide.

Installing Fedora is very much a matter of clicking the Next button.

The only important step where you would not click the Next button straight away, is the storage step.

Select the Create Custom Layout option. The reason we are not going with the default here is because we can’t use LVM with SSD.

Create two standard partitions, one swap and one ext4 (mounted as /). Don’t use ext2 or ext3 as they don’t support SSD either, particularly the TRIM command.

Enable TRIM

In default Fedora installation TRIM is not enabled by default. So let’s enable it.

As root, edit the /etc/fstab file and add the “discard” option to the root line.

Restard the machine. Check if / has been mounted with “discard”.

Looks good. It is now time to test the TRIM functionality.

Check if TRIM works

We are going to create a file, check the sector data, then delete the file, and see if the sector data has been zeroed out.

We will be using the hdparm tool, so the following steps need to be done as root.

First, create a file.

This will create a file with 200 lines, about 4k in size. Now make sure it is flushed out to the disk.

Now let’s find out where the file is physically stored on the disk.

You can see the file starts at sector 14927624 and spans 8 sectors. Let’s check what’s in there.

That’s our sector. “3031 3030 2031 6574 7473 6c20 6e69 0a65″ is a hex representation of “10000 test line”.

Now let’s delete the file. Make sure the change is flushed to the disk.

We are now expecting the sector to contain nothing but zeroes.

Perfect, the TRIM command works in Fedora 15.

Recent releases of most popular distributions (Ubuntu, Mint, Sabayon, etc) should also be fine.

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments (1)
Comment By Marianne - Tue, Mar 2nd, 2021 9:06 AM
Hello! Creating the file for checking does not work for me: "Syntax error at unexpected Symbol »;&«"
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Enabling or disabling a repository using Red Hat Subscription Management
Viewed 7890 times since Mon, Oct 29, 2018
RHEL: Extending the maximum inode count on a ext2/ext3/ext4 filesystem
Viewed 2757 times since Sun, May 27, 2018
How to schedule crontab in Unix Operating Systems
Viewed 1713 times since Fri, Jun 8, 2018
YUM How to use yum command on CentOS/RHEL
Viewed 6554 times since Thu, Oct 25, 2018
Using renice and taskset to manage process priority and CPU affinity with Linux OEL 6.4
Viewed 3280 times since Mon, Feb 17, 2020
Stunnel Setup
Viewed 17176 times since Fri, Sep 28, 2018
RHEL: XFS basic operations
Viewed 15435 times since Sat, Jun 2, 2018
RHCS6: Extend an existing Logical Volume / GFS2 filesystem
Viewed 2898 times since Sun, Jun 3, 2018
Do you Know These 5 Use of V$session View ?
Viewed 98450 times since Thu, Jun 21, 2018
Oracle Linux 7 – How to audit changes to a trusted file such as /etc/passwd or /etc/shadow
Viewed 2651 times since Wed, Jul 25, 2018