psコマンド
実行中の
プロセス
の一覧を表示する
f
を付けると、親子関係が視覚的に見れる
$ ps f
forest
の
f
らしい
これはmacのpsコマンドでは使えない
代わりに
pstreeコマンド
とか
procs
を使う
a
オプションで
プロセスの状態
を見れる
$ ps a
の結果の
STAT
の欄
R
: running
I
: sleeping for longer than about 20 seconds
S
: sleeping for less than about 20 seconds.
T
: stopped
U
: uninterruptible wait
Z
:
ゾンビプロセス
実行してみると、ほとんどが
S
になる
mrsekut.icon