How to force kill a process
$ kill -9 [PID]
- Command
- kill
- Description
- Forcibly terminate a process that is unresponsive. Usage: kill -9 [PID]
- Deep Dive
- -9 sends the SIGKILL signal. Use this only when a standard `kill [PID]` (SIGTERM) fails.
$ kill -9 [PID]