這是在伺服器上,讀寫超快。
寫速度$dd if=/dev/zero bs=1k count=1000000 of=1gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 gb) copied, 5.13676 seconds, 199 mb/s
讀速度$dd if=1gb.file bs=64k |dd of=/dev/null
[haibo@localhost ~]$ dd if=1gb.file bs=64k |dd of=/dev/null
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 gb) copied, 6.37813 seconds, 161 mb/s
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 gb) copied, 6.37891 seconds, 161 mb/s
讀寫速度
$dd if=1gb.file of=2gb.file bs=64k
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 gb) copied, 2.21364 seconds, 463 mb/
這是在本地的虛擬機器上
[root@localhost ~]# dd if=/dev/zero bs=1k count=1000000 of=1gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 gb) copied, 39.6289 seconds, 25.8 mb/s
[root@localhost ~]#
[root@localhost ~]#
[root@localhost ~]# dd if=1gb.file bs=64k |dd of=/dev/null
2000000+0 records in
2000000+0 records out
1024000000 bytes (1.0 gb) copied, 39.8982 seconds, 25.7 mb/s
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 gb) copied, 39.9039 seconds, 25.7 mb/s
[root@localhost ~]# dd if=1gb.file of=2gb.file bs=64k
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 gb) copied, 46.391 seconds, 22.1 mb/s
linux4版本用time來計時
[***]$ time dd if=/dev/zero bs=1k count=1000000 of=1gb.file
1000000+0 records in
1000000+0 records out
real0m2.035s
user0m0.114s
sys0m1.921s
寫速度:
1000m/2.035=491m
[***]$ time dd if=1gb.file bs=64k |dd of=/dev/null
15625+0 records in
15625+0 records out
2000000+0 records in
2000000+0 records out
real0m2.420s
user0m0.368s
sys0m1.889s
讀速度:
1000m/2.420=413m
測試Centos硬碟讀寫速度
yum install hdparm 引數 a 快取分割槽 設定讀取檔案時,預先存入塊區的分割槽數,若不加上 快取分割槽 選項,則顯示目前的設定。a 0或1 啟動或關閉讀取檔案時的快取功能。c 設定磁碟的dma模式。f 將記憶體緩衝區的資料寫入硬碟,並清楚緩衝區。g 顯示硬碟的磁軌,磁頭,磁區等引數...
linux下硬碟讀寫速度測試
haparm tt dev fdisk l disk dev xvdf 365.0 gb,365041287168 bytes 255 heads,63 sectors track,44380 cylinders units cylinders of 16065 512 8225280 bytes ...
linux測試硬碟讀寫速度
time有計時作用,dd用於複製,從if讀出,寫到of。if dev zero不產生io,因此可以用來測試純寫速度。同理of dev null不產生io,可以用來測試純讀速度。bs是每次讀或寫的大小,即乙個塊的大小,count是讀寫塊的數量。1.測 目錄所在磁碟的純寫速度 time dd if de...