Kill
Revision as of 05:38, 9 December 2019 by Welcome (talk | contribs) (→Linux Examples: * <code>kill -9 `lsof -t -u USERNAME`</code>)
kill
is a command that is used in Linux and other operating systems to send signals to running processes. kill commands allows to send SIGKILL (kill -9 PID
) signal that cause the process to terminate immediately (kill).
Linux Examples
"Kill" a process (send SIGKILL signal)
kill -9 56568
orkill -KILL 56568
orkill -s KILL 56568
Send SIGTERM signal
kill -15 56568
orkill -TERM 56568
orkill -s TERM 56568
Kill al process that belongs to a user:
kill -9 `lsof -t -u USERNAME`
See also
killall
,pkill
,xkill
- kill in Windows is an alias for
Stop-Process
cmdlet
Advertising: