Explorar el Código

```修改磁盘速度测试脚本的输出信息

将脚本中测试读取操作的输出信息修改为测试写入操作,以与实际执行的操作相符。
```
tianyun hace 7 meses
padre
commit
7a07be9670
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      sh_config.sh

+ 1 - 1
sh_config.sh

@@ -489,7 +489,7 @@ function disk_speed_test() {
     # 首先同步缓存,确保测试准确
     sync; echo 3 > /proc/sys/vm/drop_caches
 
-    echo "测试读取"
+    echo "测试写入"
     # 测试写入速度 (写入1GB数据)
     dd if=/dev/zero of=./testfile bs=1M count=1024 conv=fdatasync