Thursday, February 9, 2012

Use ps -ef to see current processes in Linux


Display full information about each of the processes currently running in Linux.
$ps -ef

You can use ps -ef together with grep command to search for a process with a given keyword.

$ps -ef |grep oracle

No comments:

Post a Comment