磁盘写入和读取测试命令

写入测试:

dd if=/dev/zero of=/test bs=1M count=500 conv=fsync
测试效果:
500+0 records in
500+0 records out
524288000 bytes (524 MB, 500 MiB) copied, 3.15993 s, 166 MB/s

读取测试:

dd if=/test of=/dev/null bs=1M
测试效果:
500+0 records in
500+0 records out
524288000 bytes (524 MB, 500 MiB) copied, 0.295542 s, 1.8 GB/s

测试其他设备写入:
dd if=/dev/zero of=/media/linux/boot/test bs=1M count=500 conv=fsync
测试其他设备读取:
dd if=/media/linux/boot/test of=/dev/null bs=1M

发表回复

登录... 后才能评论