Click to See Complete Forum and Search --> : What Daemons and apps are running


FNGUY
06-28-2001, 10:31 AM
I can't tell what Daemons and apps are running. Can someone point me to the right command. thx fnguy

jscott
06-28-2001, 10:45 AM
ps -aux is a good start. Try man ps for more deatils.

Bradmont4
06-28-2001, 12:30 PM
take the - out. just ps aux

Radar
06-28-2001, 12:37 PM
ps -e as well

GonzoJohn
06-28-2001, 01:50 PM
Although ps does the job, many server daemons run from other daemons (like inetd and xinetd). To best tell what is running on your system, use /sbin/chkconfg, which tells you what daemons run during your various system run levels. By default, run level 5 is what most Linux users operate in. So daemons listed next to the #5 are the ones that are on/off during normal operations.

The command to use is /sbin/chkconfig --list

Enjoy.

datadan
06-28-2001, 02:46 PM
I have always been interested in what is active and how active is it. For this try:

top -i or just top.

You also may want to look at real time traffic monitors like:
trafshow and tcdpdum.

Good Luck!