| #
|
Name
|
Purpose
|
| 1
|
SIGHUP
|
Hangup signal is sent to a shell’s
children when the shell is exited. This would guarantee the phone
line would be hung up when a user would disconnect from a remote login via modem.
|
| 2
|
SIGINT
|
Interrupt signal is sent to the foreground process when the user types
a preconfigured key, usually ^c
|
| 3
|
SIGQUIT
|
The quit signal is sent to the foreground process causing a core dump
when the user types a preconfigured key, usually ^\
|
| 9
|
SIGKILL
|
this signal cannot be caught or ignored by any process.
It results in the death of the process receiving it.
|
| 15
|
SIGTERM
|
terminate signals are sent to any process when it
it is time for that process to be terminated e.g. when the system shuts down.
|
Signals are sent using the kill command: