1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 23:46:00 +02:00

tune2fs: add page (#4297)

This commit is contained in:
Samuel Woon 2020-09-05 06:42:27 -05:00 committed by GitHub
parent 87780d9612
commit 7229778c1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/linux/tune2fs.md Normal file
View file

@ -0,0 +1,20 @@
# tune2fs
> Adjust parameters of an ext2, ext3 or ext4 filesystem.
> May be used on mounted filesystems.
- Set the max number of counts before a filesystem is checked to 2:
`tune2fs -c {{2}} {{/dev/sdXN}}`
- Set the filesystem label to MY_LABEL:
`tune2fs -L {{'MY_LABEL'}} {{/dev/sdXN}}`
- Enable discard and user-specified extended attributes for a filesystem:
`tune2fs -o {{discard,user_xattr}} {{/dev/sdXN}}`
- Enable journaling for a filesystem:
`tune2fs -o^{{nobarrier}} {{/dev/sdXN}}`