Common kill signals Flashcards
(11 cards)
what is the sighup kill signal?
known as hangup stops a processes then restarts it via the same PID
what is the number for signup?
1
what is SIGNT?
sends an interrupt to a proccess and is le weakest
what is an example of SIGNT?
ctrl c when running a program
what is the number for signt?
2
what is SIGQUIT?
aka core dump kills a processes by taking the information in memory and dumping it to a file called core in current working directory
what is the number for sigquit?
3
what is SIGTERM?
the default kill signal used by the kill command also know as software term
what is sigterm number?
15
what is SIGKILL?
absolute kill signal | directs the the processes to the /dev/null file
what is the number for sigkill?
9