how to kill a process using jobs 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
ps ux #list the running proccess
kill -9 <PID>
kill -KILL PIDnumber ... for example, kill -KILL 12345