linux dd讀取寫入磁盤速度
time有計時作用,dd用于復(fù)制,從if讀出,寫到of。if=/dev/zero不產(chǎn)生IO,因此可以用來測試純寫速度。同理of=/dev/null不產(chǎn)生IO,可以用來測試純讀速度。bs是每次讀或?qū)懙拇笮?,即一個塊的大小,count是讀寫塊的數(shù)量。
指定出讀取,寫入文件到硬盤的速度
1.測/目錄所在磁盤的純寫速度:
[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
以上是因為使用了time才顯示的,linux5中不需要使用,在linux4中是不會有(1024000000 bytes (1.0 GB) copied, 2.57314 seconds, 398 MB/s)部分,因此需要time命令來計
算復(fù)制的時間。
2.測/目錄所在磁盤的純讀速度:
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.測讀寫速度(這是什么):
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ù)制量越大測試越準(zhǔn)確。
關(guān)鍵詞:linux,磁盤
閱讀本文后您有什么感想? 已有 人給出評價!
- 0
- 0
- 0
- 0
- 0
- 0