快捷搜索:   nginx

测试服务器/VPS硬盘读写性能的命令dd

首先当然是进入SSH,然后通过下面命令建立一个256M的文件测试硬盘的写入速度:
dd if=/dev/zero of=./test.bin bs=1M count=256 conv=fsync
然后测试读取速度:
dd if=./test.bin of=/dev/zero bs=1M count=256 iflag=direct

我的执行结果如下
写入

# dd if=/dev/zero of=./test.bin bs=1M count=256 conv=fsync
256+0 records in
256+0 records out
268435456 bytes (268 MB) copied, 4.55403 seconds, 58.9 MB/s


读取

# dd if=./test.bin of=/dev/zero bs=1M count=256 iflag=direct
256+0 records in
256+0 records out
268435456 bytes (268 MB) copied, 2.94997 seconds, 91.0 MB/s


您可能还会对下面的文章感兴趣: