Toastie 6 months ago
parent
commit
4549ba87fa
1 changed files with 8 additions and 0 deletions
  1. 8 0
      linux/benchmark/fio.md

+ 8 - 0
linux/benchmark/fio.md

@@ -0,0 +1,8 @@
+https://docs.oracle.com/en-us/iaas/Content/Block/References/samplefiocommandslinux.htm
+
+```
+testfile=/path/to/testfile.fio
+touch $testfile
+fio --filename=$testfile --size=50GB --direct=1 --rw=randrw --bs=64k --ioengine=libaio --iodepth=64 --runtime=20 --numjobs=4 --time_based --group_reporting --name=throughput-test-job --eta-newline=1 
+rm $testfile
+```