linux测试磁盘读写速度
创建:2025-04-27 23:55
更新:2025-04-27 23:55
dd if=/dev/zero of=./testfile bs=1G count=1 oflag=direct  # 写入测试(绕过缓存)
dd if=./testfile of=/dev/null bs=1G count=1 iflag=direct  # 读取测试