Linux下硬盘测试和测速

 Linux下硬盘测试和测速

---------------------------

[root@localhost FCsan]# time dd if=/dev/zero bs=1024 count=1000000 of=/FCsan/1Gb.file

(在空介质生成一个1Gb文件用于测试)

  
  
  
  
  1. Device Boot Start End Blocks Id System
  2. /dev/sdb1 1 267350 2147483647+ ee EFI GPT
  3. [root@localhost /]# time dd if=/dev/zero bs=1024 count=1000000 of=/FCsan/1Gb.file
  4. 1000000+0 records in
  5. 1000000+0 records out
  6. 1024000000 bytes (1.0 GB) copied, 3.2225 seconds, 318 MB/s
  7. real 0m3.514s
  8. user 0m0.191s
  9. sys 0m2.846s

 

[root@localhost FCsan]# time dd if=/FCsan/1Gb.file bs=64k |dd of=/dev/null

(将1g文件复制到空介质,测试读性能)

 

 

  
  
  
  
  1. [root@localhost /]# time dd if=/FCsan/1Gb.file bs=64k |dd of=/dev/null 
  2. 15625+0 records in 
  3. 15625+0 records out 
  4. 1024000000 bytes (1.0 GB) copied, 2.65249 seconds, 386 MB/s 
  5. 2000000+0 records in 
  6. 2000000+0 records out 
  7. 1024000000 bytes (1.0 GB) copied, 2.65263 seconds, 386 MB/s 
  8.  
  9. real    0m2.654s 
  10. user    0m0.162s 
  11. sys     0m2.541s 

 

你可能感兴趣的:(linux,磁盘测试,测试速度)