Check certain process:
ps aux | grep <keyword>
Check what files are being used by a process:
lsof -p
Kill a process
kill -9 <pid>
Learn, write, then share
Check certain process:
ps aux | grep <keyword>
Check what files are being used by a process:
lsof -p
Kill a process
kill -9 <pid>