linux dd讀取寫(xiě)入磁盤(pán)速度
time有計(jì)時(shí)作用,dd用于復(fù)制,從if讀出,寫(xiě)到of。if=/dev/zero不產(chǎn)生IO,因此可以用來(lái)測(cè)試純寫(xiě)速度。同理of=/dev/null不產(chǎn)生IO,可以用來(lái)測(cè)試純讀速度。bs是每次讀或?qū)懙拇笮?,即一個(gè)塊的大小,count是讀寫(xiě)塊的數(shù)量。
指定出讀取,寫(xiě)入文件到硬盤(pán)的速度
1.測(cè)/目錄所在磁盤(pán)的純寫(xiě)速度:
[root@base-dmz1 /]# time dd if=/dev/zero bs=1024 count=1000000 of=/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 2.57314 seconds, 398 MB/s
real 0m2.787s
user 0m0.920s
sys 0m1.867s
以上是因?yàn)槭褂昧藅ime才顯示的,linux5中不需要使用,在linux4中是不會(huì)有(1024000000 bytes (1.0 GB) copied, 2.57314 seconds, 398 MB/s)部分,因此需要time命令來(lái)計(jì)
算復(fù)制的時(shí)間。
2.測(cè)/目錄所在磁盤(pán)的純讀速度:
dd if=/kvm/ftp/other/1Gb.file bs=64k |dd of=/dev/null
382860+0 records in
382860+0 records out
3136389120 bytes (3.1 GB) copied, 68.38 seconds, 45.9 MB/s
real 1m8.406s
user 0m0.039s
sys 0m4.573s
3.測(cè)讀寫(xiě)速度(這是什么):
dd if=/vat/test of=/oradata/test1 bs=64k
dd: writing `/oradata/test1': No space left on device
5025+0 records in
5024+0 records out
329261056 bytes (329 MB) copied, 23.8813 seconds, 13.8 MB/s
注:理論上復(fù)制量越大測(cè)試越準(zhǔn)確。
關(guān)鍵詞:linux,磁盤(pán)
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 0
- 0
- 0
- 0
- 0