On Linux I would usually use "hdparm -tT device" when I want a quick idea of how an hard drive is performing compared to another; having switched to Mac OS X a few months back I have yet to find something similar and as easy to use.

I have read that diskutil can do similar things on Mac but I am not clear about how I should use it to do something similar to the hdparm command above.

Any ideas on how to do this or on alternatives? Thanks!

link|improve this question
1  
You probably don't need to benchmark it, all Apple users will tell you that its performing GREAT either way ;) – pauska Oct 2 '10 at 13:27
feedback

2 Answers

Some tools I use:

I'm sure there are others I"m not thinking of at the moment. My current favorite is probably DIskfire. I would also check out the Xsanity forums, because they're experts at OS X disk performance, especially in Xsan.

link|improve this answer
feedback

(bear in mind I never used Mac CLI so there can be little differences from what I write)

you could try dd:

dd if=/dev/sda of=/dev/zero bs=4096 count=10240 iflag=direct

This will copy 40MiB of data from the beginning of the drive and show you the average speed.

link|improve this answer
I wouldn't trust this -- in my experience, OS X's version of dd seems to move data much slower than the devices are capable of. – Gordon Davisson Oct 3 '10 at 6:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.