How do I see what's in the run queue on GNU/Linux?

15,577

Start with top. It should list all or most of the run queue in the first page. Also 'ps r -A' will list all processes in the run queue.

Share:
15,577

Related videos on Youtube

aaronsw
Author by

aaronsw

Updated on September 17, 2022

Comments

  • aaronsw
    aaronsw almost 2 years

    The load on my server is very high, even though there doesn't seem to be much disk activity and the CPU is idle. Using sar, I can see the run queue is getting full, but is there any way to see what's in the run queue?

    • mpez0
      mpez0 about 14 years
      What do you mean by "the load on my server is very high" and "the CPU is idle"? Load average should correspond somewhat to CPU load.
    • billyw
      billyw over 4 years
      @mpez0 In Linux, load average is deceptive. It is measuring what's in the run queue, not the CPU load. This is important to know. It means uninterruptible disk IO could cause a high load average although the CPU is idle.
    • mpez0
      mpez0 over 4 years
      @billyw You did see the "somewhat" in my comment, right?