mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
fio:edit page (#10847)
This commit is contained in:
parent
e2db0e2505
commit
5b971af23d
1 changed files with 4 additions and 4 deletions
|
@ -6,19 +6,19 @@
|
|||
|
||||
- Test random reads:
|
||||
|
||||
`sudo 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=randread --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly`
|
||||
|
||||
- Test sequential reads:
|
||||
|
||||
`sudo 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=read --bs=4k --ioengine=libaio --iodepth=256 --runtime=120 --numjobs=4 --time_based --group_reporting --name={{job_name}} --eta-newline=1 --readonly`
|
||||
|
||||
- Test random read/write:
|
||||
|
||||
`sudo fio --filename={{path/to/file}} --size=500GB --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 --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`
|
||||
|
||||
- Test with parameters from a job file:
|
||||
|
||||
`sudo fio {{path/to/job_file}}`
|
||||
`fio {{path/to/job_file}}`
|
||||
|
||||
- Convert a specific job file to command-line options:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue