To know about a particular process running on Linux use the piping and filtering together to get powerful features of these constructs in Linux.
use following command syntax
ps aux | grep "the process about to know"
for example you want to know about which java process is running on Linux
ps aux | grep java
this is so much helpful in my outgoing project
ReplyDelete