I am running linux top command to see processes running inside qemu VM. Sometimes, a process does not appear in them, but if I run,

ps -eo psr,pcpu,comm | grep myprocessname

then the process is shown there. Also, such processes have low CPU utilization. Can you tell a reason of why it is so and whether it is due to the fact that processes are sleeping or something else. Thanks.

link|improve this question
feedback

migrated from stackoverflow.com Jan 11 at 17:56

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 4 down vote accepted

Top only displays the most cpu heavy tasks, take a look at the documentation.

http://linux.about.com/od/commands/l/blcmdl1_top.htm

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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