Kill: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* kill command Wikipedia http://en.wikipedia.org/wiki/Kill_%28command%29
=Internal=
=Internal=


* [[Linux#Commands|Linux]]
* [[Linux#Commands|Linux]]
=Overview=
Without any argument, it sends [[Linux Signals#SIGTERM_.2815.29|SIGTERM]] - the termination signal. The SIGTERM signal is sent to a process to request its termination. Unlike the [[Linux Signals#SIGKILL_.289.29|SIGKILL]] signal, it can be caught and interpreted or ignored by the process. This allows the process to perform nice termination releasing resources and saving state if appropriate. SIGINT is nearly identical to SIGTERM.
=See Also=
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Linux Signals]]
</blockquote>

Latest revision as of 04:26, 5 March 2016

External

Internal

Overview

Without any argument, it sends SIGTERM - the termination signal. The SIGTERM signal is sent to a process to request its termination. Unlike the SIGKILL signal, it can be caught and interpreted or ignored by the process. This allows the process to perform nice termination releasing resources and saving state if appropriate. SIGINT is nearly identical to SIGTERM.

See Also

Linux Signals