kill 명령어로 줄수 있는 interrupt list
2012.08.17 03:28
원문 : http://www.ischo.net -- 조인상 // 시스템 엔지니어
Writer : http://www.ischo.net -- ischo // System Engineer in Replubic Of Korea
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
원문 : http://www.ischo.net -- 조인상 //시스템 엔지니어
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
kill -<SIG> <PID>
명령어에서 지정 가능한 인터럽트 시그널 리스트
0 : SIGNULL - Null Check access to pid
1 : SIGHUP - Hangup Terminate; can be trapped
2 : SIGINT - Interrupt Terminate;can be trapped
3 : SIGQUIT - Quit Terminate with core dump;can be trapped
9 : SIGKILL - Kill Forced termination;cannot be trapped
15 : SIGTERM - Terminate Terminate;can be trapped
24 : SIGSTOP - Stop Pause the process;cannot be trapped
25 : SIGTSTP - Terminal stop Pause the process;can be trapped
26 : SIGCONT - Continue Run a stopped process
예) # kill -3 <PID> : 해당 프로세스의 코어덤프와 함께 종료