PS


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers PS
# 1  
Old 06-01-2010
PS

Hi All.

having a blonde moment here... can someone please tell me how to check ALL processors currently running on my Unix Host?

thank you

Brian
# 2  
Old 06-01-2010
Use ps aux command to check all process

to check particular process you can use

ps aux | grep processname command
# 3  
Old 06-01-2010
Some Unices need:
Code:
ps -ef

instead of aux
 
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question