To kill a process in Linux, you can use `kill` command that sends signals to a process. ``` kill -9 <PID> ``` Above command means that we are sending signal 9 (SIGKILL) to a process that has specific PID. ### See also 1. [[SIGKILL]] 2. [[What is Signal in Linux?]] 3. [[What is process in Linux?]]