2003-12-15, 04:23 PM
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.