how to find a process id and kill process in linux code example
Example 1: how to kill a process with linux
ps ux #list the running proccess
kill -9 <PID>
Example 2: how to kill a process in linux
kill -KILL PIDnumber ... for example, kill -KILL 12345