Linux-Noob Forums

Full Version: How to get a list of processes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

Sometime you will have to find out what processes are running on your box. To get a complete list issue the command

 

ps -aux

 

however if you want to find the process info for say named then you could issue the command

 

ps -aux | grep named

 

and this will return info for all instances of named that are running.