Difference between revisions of "Miscellaneous Linux Commands"

From TheBestLinux.com
Jump to navigation Jump to search
Line 6: Line 6:
 
<pre style="color:blue">$ ps ax</pre>
 
<pre style="color:blue">$ ps ax</pre>
 
<br />
 
<br />
To show all processed running by a specific user(This show all processes running by the Apache WebServer):
+
To show all processed running by a specific user(This example shows all processes running by the Apache WebServer):
 
<pre style="color:blue">$ ps -U apache</pre>
 
<pre style="color:blue">$ ps -U apache</pre>
 
<br />
 
<br />

Revision as of 07:00, 14 June 2014

The "ps" Process Command Syntax:


To show all executing processes:

$ ps ax


To show all processed running by a specific user(This example shows all processes running by the Apache WebServer):

$ ps -U apache