How to get a list of processes - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-59.html) +--- Thread: How to get a list of processes (/thread-3976.html) |
How to get a list of processes - Digerati - 2003-12-15 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. |