Linux测试磁盘IO性能(随机读写)
我们常用dd命令测试Linux磁盘IO情况,dd只是测试顺序读写性能。对于随机读写性能测试,可采用FIO工具。 一、安装 下载并安装
1 2 3 4 5 6 7 8 |
wget http://brick.kernel.dk/snaps/fio-2.2.5.tar.gz yum install libaio-devel gcc -y tar -zxvf fio-2.2.5.tar.gz cd fio-2.2.5 make make install |
二、FIO参数 随机读: # fio -filename=/tmp/test_randread -direct=1 -iodepth 1 -thread -rw=randread -io
Read more