Process Management

Filed in Linux System Leave a comment

Check certain process:
ps aux | grep <keyword>

Check what files are being used by a process:
lsof -p

Kill a process
kill -9 <pid>

TOP