View Single Post

  #1 (permalink)  
Old 06-12-2007, 04:40 PM
raj raj is offline
Contributors
User
 
Join Date: Jun 2005
Location: Hyderabad
Posts: 151
Rep Power: 4
raj is on a distinguished road
Default List Services Linux Running

Here is quick command that will list all services linux running:

Show only listening sockets/ports and associated program who opend the port:
Code:
netstat -tulpn
Redhat tool for listing all on services
Code:
chkconfig --list
Just for runlevel 3:
Code:
chkconfig --list | grep 3:on
Control your service
Redhat simple interface for configuring runlevels
Code:
ntsysv
Debian / Ubuntu Linux Runlevel configuration tool
Code:
rcconf
__________________
Raj
Linux rulz.
I have never turned back in my life ; I shall not do so today.. haha

Last edited by raj; 06-12-2007 at 04:41 PM.. Reason: mixup
Reply With Quote