kill process by command linux code example
Example 1: how to kill a process with linux
ps ux #list the running proccess
kill -9 <PID>
Example 2: kill process unix
Find PID of process to kill with:
ps ax
Then just specify "kill PID" command as for example:
kill 16320
kill -9 16320 #Force kill in case process is not answering.