From 9b7ce5467176712b63bfa2e9c8b42f8eb327c435 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 4 Aug 2021 16:47:48 +0200 Subject: Added blkdiscard blog article --- content/blog/miscellaneous/blkdiscard.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 content/blog/miscellaneous/blkdiscard.md (limited to 'content/blog/miscellaneous/blkdiscard.md') diff --git a/content/blog/miscellaneous/blkdiscard.md b/content/blog/miscellaneous/blkdiscard.md new file mode 100644 index 0000000..2ea1cd5 --- /dev/null +++ b/content/blog/miscellaneous/blkdiscard.md @@ -0,0 +1,32 @@ +--- +title: How to discard a whole ssd +date: 2021-08-04 +description: How to discard ssd partitions, and not just mounted devices +tags: + - linux +--- + +## Introduction + +You are probably aware already that Solid State Drives are affected by wear and tear. One of the mechanisms to manage this is to make sure your operating system properly discards unused sectors when deleting files. + +## Automatic discards + +There are multiple ways to do this automatically, for example : +- cryptsetup has the `--allow-discards` flag +- lvm has an `issue_discards` option in lvm.conf +- standard partition can be mounted with the `discard` mount option + +The root partition is a special case when encrypted, for example on Gentoo the cryptsetup flag is passed by genkernel with the non standard `root_trim=yes` on the grub's kernel command line. Other linux distributions will differ in this regard. + +## Manual discards + +If some of your ssd's discards were not issued for one reason or another, you can run a manual discard job on your mounted filesystems with : +``` +fstrim -a +``` + +But what if you need to do this for a drive or partition that is not mounted? That's what I discovered today and triggered me writing this post : enter `blkdiscard` which like its name suggests, manipulates block devices : +``` +blkdiscard /dev/sda +``` -- cgit v1.2.3