Search notes:

Linux process states

A linux process is in one of the following states:
ps -l shows the state of a process in the first character of the STAT column. There are also optional attributes such as s for a session leader or + if the process is part of a foreground process group.
Additionally, the WCHAN (wait channel) column shows which kernel event a sleeping process is waiting for.

Index