kill
apenas envia um sinal para o processo em questão. O -9
informa qual sinal enviar.
Números diferentes correspondem a diferentes sinais comuns. SIGINT
, por exemplo, é 2, então, para enviar um processo, o sinal SIGINT
emite o comando
$ kill -2 <pid>
A página de manual aqui especifica:
The default signal for kill is TERM.
A página do manual também fornece uma tabela de sinais que você pode enviar. De acordo com essa tabela, TERM
é 15
, portanto, todos são equivalentes:
kill <pid>
kill -15 <pid>
kill -TERM <pid>
O aviso 9 é o sinal KILL
.
Name Number Action
-----------------------
ALRM 14 exit
HUP 1 exit
INT 2 exit
KILL 9 exit this signal may not be blocked
PIPE 13 exit
POLL exit
PROF exit
TERM 15 exit [Default]
USR1 exit
USR2 exit
VTALRM exit
STKFLT exit may not be implemented
PWR ignore may exit on some systems
WINCH ignore
CHLD ignore
URG ignore
TSTP stop may interact with the shell
TTIN stop may interact with the shell
TTOU stop may interact with the shell
STOP stop this signal may not be blocked
CONT restart continue if stopped, otherwise ignore
ABRT 6 core
FPE 8 core
ILL 4 core
QUIT 3 core
SEGV 11 core
TRAP 5 core
SYS core may not be implemented
EMT core may not be implemented
BUS core core dump may fail
XCPU core core dump may fail
XFSZ core core dump may fail