LinuxProcesses

kill

Sends a signal (by default SIGTERM) to a process, typically to stop it.

Syntax

kill [-9] <pid>

Examples

Force-kill an unresponsive process

kill -9 12345

Related commands