Linux 使用dd命令检测磁盘I/O读写速度

测试系统盘根目录root 写入
time dd if=/dev/zero of=/root/test.file bs=2G count=2 oflag=direct

测试系统盘根目录root 读取
time dd if=/root/test.file of=/dev/null bs=2G  iflag=direct



测试数据盘data 写入
time dd if=/dev/zero of=/data/test.file bs=2G count=2 oflag=direct

测试数据盘data 读取
time dd if=/data/test.file of=/dev/null bs=2G  iflag=direct

要测试哪个盘就进入哪个盘所挂在的目录

例如 测试系统盘,就再root根目录执行

写入测试,使用10G文件
time dd if=/dev/zero of=swapfile bs=1024 count=10485760
读取测试,使用10G文件
time dd if=swapfile of=/dev/null bs=1024

或者要测试数据盘,数据盘挂载再data目录
就先进入data目录再执行
cd /data
写入测试,使用10G文件
time dd if=/dev/zero of=swapfile bs=1024 count=10485760
读取测试,使用10G文件
time dd if=swapfile of=/dev/null bs=1024
sanradar
sanradar
文章: 104

4 评论

  1. Hello! Do you know if they make any plugins to assist with Search
    Engine Optimization? I’m trying to get my blog to rank for some targeted keywords but I’m
    not seeing very good gains. If you know of any please share.
    Thank you! I saw similar blog here: Blankets

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注