Friday, February 11, 2011

How to know about particular process running in linux

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

1 comment: