2020-09-05 06:42:27 -05:00
|
|
|
# tune2fs
|
|
|
|
|
|
|
|
> Adjust parameters of an ext2, ext3 or ext4 filesystem.
|
|
|
|
> May be used on mounted filesystems.
|
2021-06-28 23:48:24 +01:00
|
|
|
> More information: <https://manned.org/tune2fs>.
|
2020-09-05 06:42:27 -05:00
|
|
|
|
|
|
|
- Set the max number of counts before a filesystem is checked to 2:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`tune2fs -c 2 {{/dev/sdXN}}`
|
2020-09-05 06:42:27 -05:00
|
|
|
|
|
|
|
- Set the filesystem label to MY_LABEL:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`tune2fs -L 'MY_LABEL' {{/dev/sdXN}}`
|
2020-09-05 06:42:27 -05:00
|
|
|
|
|
|
|
- Enable discard and user-specified extended attributes for a filesystem:
|
|
|
|
|
|
|
|
`tune2fs -o {{discard,user_xattr}} {{/dev/sdXN}}`
|
|
|
|
|
|
|
|
- Enable journaling for a filesystem:
|
|
|
|
|
2025-04-27 10:57:41 +03:00
|
|
|
`tune2fs -o ^{{nobarrier}} {{/dev/sdXN}}`
|