1、 在被测试的硬盘根目录创建一个testReadOrWrite文件,用于测试纯写和纯读使用。
2 、在被测试的硬盘根目录创建一个testReadAndWrite文件,用于测试读写使用。
3、测试纯写速度
进入testReadOrWrite文件的目录,
将/dev/zero中的无限输入写到testReadOrWrite文件中(注意我们使用dd使要是用time命令进行计时),
执行命令:time dd if=/dev/zero of=./testReadOrWrite bs=8k count=1000000
py503@py503-GA-970A-D3:~$ time dd if=/dev/zero of=./testReadOrWrite bs=8k count=1000000
记录了1000000+0 的读入
记录了1000000+0 的写出
8192000000字节(8.2 GB,7.6 GiB)已复制,17.5835 s,466 MB/s
real 0m17.586s
user 0m0.475s
sys 0m11.932s
4、测试纯读速度
进入testReadOrWrite文件的目录
执行命令:time dd if=./testReadOrWrite of=/dev/null bs=8k count=1000000
下图结果即为每秒1.2GB,8.2G用了6.79553秒
py503@py503-GA-970A-D3:~$ time dd if=./testReadOrWrite of=/dev/null bs=8k count=1000000
记录了1000000+0 的读入
记录了1000000+0 的写出
8192000000字节(8.2 GB,7.6 GiB)已复制,16.185 s,506 MB/s
real 0m16.187s
user 0m0.382s
sys 0m9.035s
5、测试读写速度
进入testReadAndWrite文件的目录
将testReadOrWrite文件中的数据写入testReadAndWrite文件中,
执行命令:time dd if=./testReadOrWrite of=./testReadAndWrite bs=8k count=1000000
py503@py503-GA-970A-D3:~$ time dd if=./testReadOrWrite of=./testReadAndWrite bs=8k count=1000000
记录了1000000+0 的读入
记录了1000000+0 的写出
8192000000字节(8.2 GB,7.6 GiB)已复制,29.2788 s,280 MB/s
real 0m29.281s
user 0m0.399s
sys 0m16.440s