|
发表于 2008-7-31 10:36:31
|
显示全部楼层
- The command kill sends the specified signal to the specified process or process group. If no signal is specified, the
- TERM signal is sent. The TERM signal will kill processes which do not catch this signal. For other processes, it may
- be necessary to use the KILL (9) signal, since this signal cannot be caught.
- -s signal
- Specify the signal to send. The signal may be given as a signal name or number.
复制代码- Signal Value Action Comment
- -------------------------------------------------------------------------
- SIGHUP 1 Term Hangup detected on controlling terminal
- or death of controlling process
- SIGINT 2 Term Interrupt from keyboard
- SIGQUIT 3 Core Quit from keyboard
- SIGILL 4 Core Illegal Instruction
- SIGABRT 6 Core Abort signal from abort(3)
- SIGFPE 8 Core Floating point exception
- SIGKILL 9 Term Kill signal
- SIGSEGV 11 Core Invalid memory reference
- SIGPIPE 13 Term Broken pipe: write to pipe with no readers
- SIGALRM 14 Term Timer signal from alarm(2)
- SIGTERM 15 Term Termination signal
- SIGUSR1 30,10,16 Term User-defined signal 1
- SIGUSR2 31,12,17 Term User-defined signal 2
- SIGCHLD 20,17,18 Ign Child stopped or terminated
复制代码 |
|