How to Kill a Process?
To kill a specified process, first you can search the process by executing:
$ ps aux | grep <process-name>
Then, once you have the pid
, you can kill it by running
$ kill -9 <pid>
To kill a specified process, first you can search the process by executing:
$ ps aux | grep <process-name>
Then, once you have the pid
, you can kill it by running
$ kill -9 <pid>