A command to terminate the process with the specified process ID.
$kill process number (PID)
$ ps #Check the currently running process
$ ps ax | grep gedit #Show only processes with the name "gedit"
16619 ? Sl 0:01 gedit
$ kill 16619
$ kill -9 16619
command | Overview |
---|---|
-s signal | Send the specified signal name or signal number |
-signal | Send the specified signal name or signal number |
-l [] | Display the correspondence between signal names and signal numbers |
Recommended Posts