标签:理论 hit col inux 大小 复制 dev linux file
?1.测/目录所在磁盘的纯写速度:
time dd if=/dev/zero bs=1024 count=1000000 of=/1Gb.file
2.测/目录所在磁盘的纯读速度:
time dd if=/1Gb.file bs=64k |dd of=/dev/null
3.测读写速度:
time dd if=/1Gb.file of=/data0/2.Gb.file bs=64k
理论上复制量越大测试越准确。
? ?
命令解释:
time有计时作用,dd用于复制,从if读出,写到of。
if=/dev/zero不产生IO,因此可以用来测试纯写速度。
同理of=/dev/null不产生IO,可以用来测试纯读速度。
bs是每次读或写的大小,即一个块的大小,count是读写块的数量。
? ?
? ?
标签:理论 hit col inux 大小 复制 dev linux file
原文地址:https://www.cnblogs.com/withfeel/p/12597706.html