Summery
起動しているプロセスを強制終了させる。Construction
$ kill [option] [process-id]
Option
-9 : プロセスの強制終了
Sample
# 16062のプロセスIDを強制終了させる
$ kill -9 16062
Discription
The default signal for kill is TERM. Use -l or -L to list available
signals. Particularly useful signals include HUP, INT, KILL, STOP,
CONT, and 0. Alternate signals may be specified in three ways: -9,
-SIGKILL or -KILL. Negative PID values may be used to choose whole
process groups; see the PGID column in ps command output. A PID of -1
is special; it indicates all processes except the kill process itself
and init.
0 件のコメント:
コメントを投稿