mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
515 B
Plaintext
23 lines
515 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# fstrim
|
|
|
|
> Discard unused blocks on a mounted filesystem.
|
|
> Only supported by flash memory devices such as SSDs and microSD cards.
|
|
> More information: <https://manned.org/fstrim>.
|
|
|
|
- Trim unused blocks on all mounted partitions that support it:
|
|
|
|
`sudo fstrim {{[-a|--all]}}`
|
|
|
|
- Trim unused blocks on a specified partition:
|
|
|
|
`sudo fstrim {{/}}`
|
|
|
|
- Display statistics after trimming:
|
|
|
|
`sudo fstrim {{[-v|--verbose]}} {{/}}`
|