0

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?

Kamil
  • 1

1 Answers1

0

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 }'
toppledwagon
  • 4,245
  • 25
  • 15