Killing a Process
- You can kill a running process with the kill command. Simply specify on the command line the process ID of the process to be killed.
- The kill command works by sending the process a SIGTERM or termination, signal. This causes the process to terminate, unless the executing program explicitly handles or masks the SIGTERM signal.
2006-03-17