mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-23 20:51:53 +00:00
Update cheatsheets
This commit is contained in:
26
linux/tune2fs
Normal file
26
linux/tune2fs
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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:
|
||||
|
||||
`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}}`
|
||||
Reference in New Issue
Block a user