2

enter image description here

I ran top in kali linux 2018.1 and was unable to figure out a few things.

What does I stands for in the process status coloumn. I know about R,S,D,K,T and Z but don't have any idea about I.

Also while monitoring the with top it came to my notice that total task count is way more than sleeping+running taks count. Souldn't it be total=running+sleeping.

Thanks

1 Answers1

2

I stands for “idle”.

Regarding the number of tasks, top shows the total number of tasks, and the numbers of running, sleeping, stopped, and zombie tasks. This ignores uninterruptible tasks and idle tasks, which should account for the difference. You can see the detailed counts by state with the following command:

ps -e -o state | sort | uniq -c
Stephen Kitt
  • 434,908