vote up 3 vote down star
1

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?

flag
Install Windows, use Process Monitor ;) – Leonidas Jan 28 at 18:54
In windows you know already, it's always windows itself ;) – krosenvold Jan 28 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/… – Adam Davis Jan 28 at 19:16

2 Answers

vote up 5 vote down check

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|flag
vote up 0 vote down

Have you considered lsof (list open files)?

link|flag

Your Answer

Get an OpenID
or

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