chkconfig Command Examples
chkconfig command is used to setup, view, or change services that are configured to start automatically during the system startup. chkconfig has five distinct functions: adding new services for management, removing services from management, listing the current startup information for services, changing the startup information for services, and checking the startup state of a particular service. chkconfig --list [ name ] chkconfig --add name chkconfig --del name chkconfig [ --level levels ] name < on | off | reset > chkconfig [ --level levels ] name OPTIONS --level levels Specifies the run levels an operation should pertain to. It is given as a string of numbers from 0 to 7. For example, --level 35 specifies runlevels 3 and 5. --add name This option adds a new service for management by chkconfig . --del name The service is removed from chkconfig management. --list name This option lists all of the services which chkconfig...