Possible Duplicate:
How Can Linux Top Show 2% Idle, but Load Say 1.20?

Something strange has suddenly happend and I need help. top shows only 1 running process with >300 waiting. CPU load is > 100, but only a few %. What could be the problem?

link|improve this question
feedback

closed as exact duplicate by Ignacio Vazquez-Abrams, splattne Oct 8 '11 at 7:07

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

There might be processes in IOWait contributing to the higher load.

One way of finding those is by running this command:

ps fauxw  | awk '$8 == "D" { print }'
link|improve this answer
There are some processes with D, but most are S or Ss. – Kamil Oct 8 '11 at 6:49
feedback

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