Advertisement
Guest User

fio

a guest
May 13th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.46 KB | None | 0 0
  1. fio --loops=5 --size=1000m --filename=./fiotest.tmp --stonewall --ioengine=libaio --direct=1 \
  2.   --name=Seqread --bs=1m --rw=read \
  3.   --name=Seqwrite --bs=1m --rw=write \
  4.   --name=512Kread --bs=512k --rw=randread \
  5.   --name=512Kwrite --bs=512k --rw=randwrite \
  6.   --name=4kQD32read --bs=4k --iodepth=32 --rw=randread \
  7.   --name=4kQD32write --bs=4k --iodepth=32 --rw=randwrite | tee fioresult.txt
  8. cat fioresult.txt | egrep '\(groupid=[0-9]+, jobs=[0-9]+\)' -A 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement