# 一、Linux系统下的性能测试
##### 可通过以下命令进行安装。
##### 如果您使用CentOS、Redhat、Aliyun Linux等操作系统,运行以下命令
sudo yum install fio
##### 如果您使用Ubuntu或Debian操作系统,运行以下命令
sudo apt-get update
sudo apt-get install fio
##### 下面提供一些通用的性能测试样例。
###### 随机读IOPS设置
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=4K -size=1G -time_based -runtime=60 -name=Fio -directory=/mnt
###### 例如:单机预估值:14k
###### 随机写IOPS设置
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=4K -size=1G -time_based -runtime=60 -name=Fio -directory=/mnt
###### 例如:单机预估值:10k
###### 随机读吞吐
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randread -bs=1M -size=1G -time_based -runtime=60 -name=Fio -directory=/mnt
###### 例如:容量型单机预估值:150 MB/s
###### 随机写吞吐
fio -numjobs=1 -iodepth=128 -direct=1 -ioengine=libaio -sync=1 -rw=randwrite -bs=1M -size=1G -time_based -runtime=60 -name=Fio -directory=/mnt
###### 例如:容量型单机预估值:150 MB/s
# 二、Windows系统下的性能测试
##### Windows操作系统上,您可以下载msi格式的安装包进行安装。安装包下载地址,请[参见fio官方链接](https://bsdio.com/fio/?spm=a2c4g.11186623.0.0.40a61e95ll7NmB "参见fio官方链接")
###### 随机读IOPS设置
"c:\Program Files\fio\fio.exe" -name=Fio -numjobs=2 -iodepth=128 -direct=1 -ioengine=windowsaio -sync=1 -rw=randread -bs=4K -size=1G -time_based -runtime=60 -group_reporting -thread -directory=Z\:\
###### 例如:单机预估值:14k
###### 随机写IOPS设置
"c:\Program Files\fio\fio.exe" -name=Fio -numjobs=2 -iodepth=128 -direct=1 -ioengine=windowsaio -sync=1 -rw=randwrite -bs=4K -size=1G -time_based -runtime=60 -group_reporting -thread -directory=Z\:\
###### 例如:单机预估值:10k
###### 随机读吞吐
"c:\Program Files\fio\fio.exe" -name=Fio -numjobs=2 -iodepth=128 -direct=1 -ioengine=windowsaio -sync=1 -rw=randread -bs=1M -size=1G -time_based -runtime=60 -group_reporting -thread -directory=Z\:\
###### 例如:容量型单机预估值:150 MB/s
###### 随机写吞吐
"c:\Program Files\fio\fio.exe" -name=Fio -numjobs=2 -iodepth=128 -direct=1 -ioengine=windowsaio -sync=1 -rw=randwrite -bs=1M -size=1G -time_based -runtime=60 -group_reporting -thread -directory=Z\:\文章来源:https://www.toymoban.com/news/detail-854708.html
例如:容量型单机预估值:150 MB/s文章来源地址https://www.toymoban.com/news/detail-854708.html
到了这里,关于linux与windows系统性能测试的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!