l
inux下测试硬盘IO速度的命令
大文件测试,此命令代表用8M区块,读写256次,256次8M就是2G大小,这里显示2.1G是DD计算错误而已。
dd if=/dev/zero of=test bs=8M count=256 oflag=dsync
回车
256+0 records in
256+0 records out
2147483648 bytes (2.1 GB) copied, 6.67411 s, 322 MB/s**
4K小文件测试,此命令代表4K区块,读写16000次,一共64M大小,测试过程比较长,耐心等待,这里显示67M是DD计算错误而已。
dd if=/dev/zero of=test bs=4K count=16K oflag=dsync
回车
16384+0 records in
16384+0 records out
67108864 bytes (67 MB) copied, 17.1472 s, 3.9 MB/s
如果开WEB SERVER(互联网网站服务),建议数值为1MB/S或者以上,绝对不能低于100KB/S,这样才能完全不会受硬盘IO影响打开速度等。