环境检查
查看CPU频率
1 | lscpu | grep -E "CPU MHz|CPU max MHz" | awk '{print $NF}' |
默认解读
查看内存
1 | cat /proc/meminfo | grep MemTotal | awk '{print int($2/1000/1000) }' awk '{print int($2/1000/1000) }' |
这是一个文本处理命令,用于对筛选出的行进行处理。$2表示第二列的值,即总内存大小。int($2/1000/1000)将总内存大小转换为MB单位,并使用int函数进行取整操作
读测试
1 | ./bin/$ARCH/fio -filename=/home/wwlocal/test_randrw -direct=1 -iodepth 1 -thread -rw=randread \ |
默认解读
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.