-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ssd.md: Implemented fstrim in a more general manner. Added instructions. #577
Open
lefuglyduck
wants to merge
1
commit into
void-linux:master
Choose a base branch
from
lefuglyduck:ssd1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,18 @@ solid state drive partition does not show TRIM support, please verify that you | |
chose a file system with TRIM support (ext4, Btrfs, F2FS, etc.). Note that F2FS | ||
requires kernel 4.19 or above to support TRIM. | ||
|
||
To run TRIM one-shot, you can run | ||
[`fstrim(8)`](https://man.voidlinux.org/fstrim.8) manually. For example, if your | ||
/ directory is on an SSD: | ||
To run TRIM once, you can run [fstrim(8)](https://man.voidlinux.org/fstrim.8) | ||
manually. For example, to trim all mounted filesystems mentioned in `/etc/fstab` | ||
on devices that support the discard operation: | ||
|
||
``` | ||
# fstrim / | ||
# fstrim --fstab | ||
``` | ||
|
||
To automate running TRIM, use cron or add the `discard` option to `/etc/fstab`. | ||
Note: using `discard` is not recommended. The `discard` method might cause the | ||
system to slow down because it forces the system to apply TRIM instantly on | ||
every individual file deletion. | ||
Comment on lines
24
to
+27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this downside should be mentioned in the |
||
|
||
## Periodic TRIM with cron | ||
|
||
|
@@ -30,7 +33,7 @@ Add the following lines to `/etc/cron.daily/fstrim`: | |
``` | ||
#!/bin/sh | ||
|
||
fstrim / | ||
fstrim --fstab | ||
``` | ||
|
||
Finally, make the script executable: | ||
|
@@ -39,6 +42,14 @@ Finally, make the script executable: | |
# chmod u+x /etc/cron.daily/fstrim | ||
``` | ||
|
||
## TRIM on system start or system shutdown | ||
|
||
Append the following line to `/etc/rc.local` or `/etc/rc.shutdown`: | ||
|
||
``` | ||
fstrim --fstab | ||
``` | ||
|
||
## Continuous TRIM with fstab discard | ||
|
||
You can use either continuous or periodic TRIM, but usage of continuous TRIM is | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should mention the new method in this list: "To automate running TRIM, use cron, run
fstrim
at boot or shutdown time, or add thediscard
option to/etc/fstab
.