码迷,mamicode.com
首页 > 系统相关 > 详细

linux下测试读写

时间:2020-03-30 12:34:55      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:理论   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是读写块的数量。

? ?

? ?

linux下测试读写

标签:理论   hit   col   inux   大小   复制   dev   linux   file   

原文地址:https://www.cnblogs.com/withfeel/p/12597706.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!