Kill (command)
In computing,
kill
is a command that is used in several popular operating systems to send signals to running processes.Implementations
Unix and Unix-like
In Unix and Unix-like operating systems,kill
is a command used to send a signal to a process. By default, the message sent is the termination signal, which requests that the process exit. But kill is something of a misnomer; the signal sent may have nothing to do with process killing. The kill
command is a wrapper around the kill
system call, which sends signals to processes or process groups on the system, referenced by their numeric process IDs or process group IDs. kill
is always provided as a standalone utility as defined by the POSIX standard. However, most shells have built-in kill
commands that may slightly differ from it.There are many different signals that can be sent, although the signals in which users are generally most interested are SIGTERM and SIGKILL. The default signal sent is SIGTERM. Programs that handle this signal can do useful cleanup operations before quitting. However, many programs do not implement a special handler for this signal, and so a default signal handler is called instead. Other times, even a process that has a special handler has gone awry in a way that prevents it from properly handling the signal.
All signals except for SIGKILL and SIGSTOP can be "intercepted" by the process, meaning that a special function can be called when the program receives those signals. The two exceptions SIGKILL and SIGSTOP are only seen by the host system's kernel, providing reliable ways of controlling the execution of processes. SIGKILL kills the process, and SIGSTOP pauses it until a SIGCONT is received.
Unix provides security mechanisms to prevent unauthorized users from killing other processes. Essentially, for a process to send a signal to another, the owner of the signaling process must be the same as the owner of the receiving process or be the superuser.
The available signals all have different names, and are mapped to certain numbers. It is important to note that the specific mapping between numbers and signals can vary between Unix implementations. SIGTERM is often numbered 15 while SIGKILL is often numbered 9.
Examples
A process can be sent a SIGTERM signal in four ways :kill 1234
kill -s TERM 1234
kill -TERM 1234
kill -15 1234
The process can be sent a SIGKILL signal in three ways:
kill -s KILL 1234
kill -KILL 1234
kill -9 1234
Other useful signals include HUP, TRAP, INT, SEGV and ALRM. HUP sends the SIGHUP signal. Some daemons, including Apache and Sendmail, re-read configuration files upon receiving SIGHUP, so the kill command may be used for this too. A SIGINT signal can be generated very simply by pressing Control-C| in most Unix shells. It is also common for Control-Z| to be mapped to SIGTSTP, and for Control-\| to be mapped to SIGQUIT, which can force a program to do a core dump.
Related programs
- killall - on some variations of Unix, such as Solaris, this utility is automatically invoked when the system is going through a shutdown. It behaves much like the kill command above, but instead of sending a signal to an individual process, the signal is sent to all processes on the system. However, on others such as IRIX, Linux, and FreeBSD, an argument is supplied specifying the name of the process to kill. For instance, to kill a process such as an instance of the XMMS music player invoked by
xmms
, the user would run the commandkillall xmms
. This would kill all processes namedxmms
, and is equivalent tokill `pidof xmms`
on systems like Solaris. - pkill - signals processes based on name and other attributes. It was introduced in Solaris 7 and has since been reimplemented for Linux, NetBSD and OpenBSD. pkill makes killing processes based on their name much more convenient: e.g. to kill a process named firefox without pkill, one would have to type
kill `ps --no-headers -C firefox -o pid`
whereas with pkill, one can simply typepkill firefox
. - xkill - if called without any parameters, the mouse cursor changes from an arrow to an "x" icon, and the user can click on a window to force the X server to close the connection with the client owning the window. This often causes the process to terminate when it detects that its connection to the X server has been closed.
Microware OS-9
kill
command is also available as a shell builtin in the OS-9 shell. It is used to kill another process by process ID.Example
Stop the process with the process ID "7":$ kill 7
Microsoft Windows and ReactOS
In Microsoft's command-line interpreter Windows PowerShell,kill
is a predefined command alias for the Stop-Process
cmdlet.Microsoft Windows XP, Vista and 7 include the command
taskkill
to terminate processes. The usual syntax for this command is taskkill /im "IMAGENAME"
. An "unsupported" version of kill
was included in several releases of the Microsoft Windows Resource Kits available for Windows 98.GNU versions of
kill
have been ported via Cygwin and run inside of the Unix environment subsystem that Microsoft Windows Services for UNIX provides.The ReactOS implementation is based on the Windows variant. It was developed by Andrew Riedi, Andrew Nguyen, and He Yang. It is licensed under the GPLv2.1 or later.
Examples
Find all processes beginning with the letter "p" that were developed by Microsoft and use more than 10 MB of memory and kill them:PS C:\> ps p* | where | kill -confirm
Confirm
Are you sure you want to perform this action?
Performing operation "Stop-Process" on Target "powershell ".
Yes Yes to All No No to All Suspend Help : A
PS C:\>
Here is a simpler example, which asks the process Explorer.exe to terminate:
This example forces the process to terminate:
Processes can also be killed by their PID number:
Microsoft Singularity
, the standard shell for Microsoft Research's microkernel operating system Singularity includes akill
command to terminate background processes.Examples
Stop the process with the name "SampleProcess":Singularity>kill SampleProcess
Stop the process with the process identifier "42":
Singularity>kill 42
Plan 9 from Bell Labs
Under Plan 9 from Bell Labs, the kill program does not actually perform this termination, nor does it take process IDs. Rather, it takes the actual names of processes and outputs the commands for rc, the shell used by Plan 9, to kill the process.A similar command provided is called
slay
, which does the same but for processes that refuse to be killed this way.Examples
For example, to kill all instances of troff, one types:kill troff | rc