If I use "top" I can see what CPU is busy and what process is using all of my CPU.

If I use "iostat -x" I can see what drive is busy.

But how do I see what process is using all of the drive's throughput?

link|improve this question
Install Windows, use Process Monitor ;) – Leonidas Jan 28 '09 at 18:54
9  
In windows you know already, it's always windows itself ;) – krosenvold Jan 28 '09 at 18:59
Not programming related. Try stackoverflow.com/questions/321618/… But the answer you need is Process Monitor from Sysinternals: technet.microsoft.com/en-us/sysinternals/bb896645.aspx – Adam Davis Jan 28 '09 at 19:16
feedback

2 Answers

up vote 20 down vote accepted

You're looking for iotop (assuming you've got kernel >2.6.20 and Python 2.5). Failing that, you're looking into hooking into the filesystem. I recommend the former.

link|improve this answer
feedback

Have you considered lsof (list open files)?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown