Under CMD, I was wondering what the /1 or /2 ... are? What do they indicate? I couldnt find it in the man page. In general, does anyone have a good understanding of the CMD column that they could share?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Do you mean when you run ps -e -o cmd, you can see entries like:

[kthreadd]
[ksoftirqd/0]
[migration/0]
[watchdog/0]
[events/0]

They are called "kernel threads". Anything with [] around it is a kernel thread.

/0 means it is running on the first CPU, /1 means it is running on the second CPU, etc.

For more information, see:

link|improve this answer
feedback

They represent the core that the given kernel thread is bound to.

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.