Files
tldr/pages.zh/linux/mkfs.fat.md
Kieran Moy d8eadb4b5e mkfs*: add Chinese translation (#12586)
* mkfs*: add Chinese translation

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
Co-authored-by: Ein Verne <git@einverne.info>
2024-04-22 09:29:24 +05:30

21 lines
472 B
Markdown
Raw 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.

# mkfs.fat
> 在分区内创建一个 MS-DOS 文件系统。
> 更多信息:<https://manned.org/mkfs.fat>.
- 在设备 b 的分区 1 内创建一个 FAT 文件系统(`sdb1`
`mkfs.fat {{/dev/sdb1}}`
- 创建一个带有卷名的文件系统:
`mkfs.fat -n {{volume_name}} {{/dev/sdb1}}`
- 创建一个带有卷 ID 的文件系统:
`mkfs.fat -i {{volume_id}} {{/dev/sdb1}}`
- 使用 5 个而不是 2 个文件分配表:
`mkfs.fat -f 5 {{/dev/sdb1}}`