Disable Unwanted Services - Linux Views : 373
Tagged in : Linux
0 0
Send mail

Disable Unwanted Services


Disable all unnecessary services and daemons (services that runs in the background).
You need to remove all unwanted services from the system start-up.

Type the following command to list all services which are started at boot time in run level # 3:

# chkconfig --list | grep '3:on'

To disable service, enter:

# service serviceName stop
# chkconfig serviceName off
By Geethalakshmi, On - 2009-12-15



    Login to add Comments .