测试Linux磁盘的读写速度

2025/01/20

参考地址

dd 命令

写入速度测试

dd if=/dev/zero of=/sdb1/testfile bs=1G count=1 oflag=direct

读取速度测试

dd if=/sdb1/testfile of=/dev/null bs=1G count=1 iflag=direct

目录