First page Back Continue Last page Image
Kill a process
- Ctrl-C (^C)
- Sends interrupt signal SIGINT to foreground process
- kill -[signal] PID...
- Sends signal to specified PID
- Defaults to SIGTERM or 9
- Can specify signal as option
- killall [name]
- Kills processes by name
- Sends SIGTERM to every process