add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/fio.md Normal file
View File

@@ -0,0 +1,24 @@
# fio
> 灵活的I/O测试工具通过生成多个线程或进程执行I/O操作。
> 更多信息:<https://fio.readthedocs.io/en/latest/fio_doc.html>。
- 测试随机读取:
`fio --filename={{path/to/file}} --direct=1 --rw=randread --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly`
- 测试顺序读取:
`fio --filename={{path/to/file}} --direct=1 --rw=read --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly`
- 测试随机读/写:
`fio --filename={{path/to/file}} --direct=1 --rw=randrw --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1`
- 使用作业文件中的参数进行测试:
`fio {{path/to/job_file}}`
- 将特定作业文件转换为命令行选项:
`fio --showcmd {{path/to/job_file}}`