• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

How can i benchmark the disk speed on my server ?

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

juliendogg

Member
Joined
Nov 29, 2001
Location
NC, USA
I need some numbers for the filesystem/disk array performance on my server. Running CentOS linux. Anyone know of good apps or a way to do this ? Pretty much anything that will run on redhat will run on centos.
 
You mean something like time dd if=/dev/zero of=/mnt/partition/bigfile bs=1024 count=1048576 ? You can get more creative if you need to test the speed of creating/deleting/reading/writing or what not, but I'm sure that most of the info you want could be hacked together into a simple shell script.
If you don't know shell scripting, google around or post back here and someone should be able to find something for you.
 
What about hdparm -Tt /dev/hda of course change hda to your actual device. Its not the best benchmark but it gives a good idea.

I think for raid it will be hdparm -Tt /dev/md0
 
Back