There’s a very long list of Unix signals, which you can view on Wikipedia. Somewhat confusingly, you can actually use kill
to send any signal to a process. For instance, kill -SIGSTOP 12345
forces process 12345 to pause its execution, while kill -SIGCONT 12345
tells it to resume. A slightly less cryptic version of kill -9
is kill -SIGKILL
.