Files
tldr/pages.zh/linux/tune2fs.md

21 lines
527 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# tune2fs
> 调整 ext2、ext3 或 ext4 文件系统的参数。
> 可用于已挂载的文件系统。
> 更多信息:<https://manned.org/tune2fs>。
- 将文件系统检查的最大计数设置为 2
`tune2fs -c {{2}} {{/dev/sdXN}}`
- 将文件系统标签设置为 MY_LABEL
`tune2fs -L {{'MY_LABEL'}} {{/dev/sdXN}}`
- 为文件系统启用丢弃和用户指定的扩展属性:
`tune2fs -o {{discard,user_xattr}} {{/dev/sdXN}}`
- 为文件系统启用日志记录:
`tune2fs -o^{{nobarrier}} {{/dev/sdXN}}`