2025-03-14 21:59:59 -06:00
|
|
|
# tune2fs
|
|
|
|
|
|
|
|
|
|
> Adjust parameters of an ext2, ext3 or ext4 filesystem.
|
|
|
|
|
> May be used on mounted filesystems.
|
|
|
|
|
> More information: <https://manned.org/tune2fs>.
|
|
|
|
|
|
|
|
|
|
- Set the max number of counts before a filesystem is checked to 2:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sudo tune2fs -c 2 {{/dev/sdXN}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Set the filesystem label to MY_LABEL:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sudo tune2fs -L 'MY_LABEL' {{/dev/sdXN}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Enable discard and user-specified extended attributes for a filesystem:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sudo tune2fs -o discard,user_xattr {{/dev/sdXN}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Enable journaling for a filesystem:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`sudo tune2fs -o has_journal {{/dev/sdXN}}`
|
|
|
|
|
|
|
|
|
|
- Assign a new randomly-generated UUID to a filesystem:
|
|
|
|
|
|
|
|
|
|
`sudo tune2fs -U random {{/dev/sdXN}}`
|