Converter Web ToolsConverter WebTools

Linux Signals List (SIGKILL 9, SIGTERM 15)

This Linux signals reference lists the common process signals and their numbers — used with the kill command. For example kill -9 sends SIGKILL to force-stop a process.

SignalNumberMeaning
SIGHUP1Hangup / reload config
SIGINT2Interrupt (Ctrl+C)
SIGQUIT3Quit (Ctrl+\)
SIGILL4Illegal instruction
SIGKILL9Kill immediately (cannot be caught)
SIGSEGV11Segmentation fault
SIGPIPE13Broken pipe
SIGALRM14Timer alarm
SIGTERM15Terminate gracefully (default kill)
SIGCHLD17Child stopped or exited
SIGCONT18Continue if stopped
SIGSTOP19Stop (cannot be caught)
SIGTSTP20Stop from terminal (Ctrl+Z)

Related tools & charts