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>
This commit is contained in:
Kieran Moy
2024-04-22 11:59:24 +08:00
committed by GitHub
parent cc71937640
commit d8eadb4b5e
10 changed files with 150 additions and 0 deletions

17
pages.zh/linux/mkfs.md Normal file
View File

@@ -0,0 +1,17 @@
# mkfs
> 在硬盘分区上建立一个 Linux 文件系统。
> 该命令已被废弃,建议使用特定文件系统的 mkfs.<type> 工具。
> 更多信息:<https://manned.org/mkfs>.
- 在分区上建立一个 Linux ext2 文件系统:
`mkfs {{path/to/partition}}`
- 建立指定类型的文件系统:
`mkfs -t {{ext4}} {{path/to/partition}}`
- 建立指定类型的文件系统并检查坏块:
`mkfs -c -t {{ntfs}} {{path/to/partition}}`