Init-Scripts verwalten mit chkconfig
Auflisten aller Services die unter Runlevel 1 laufen:
$ chkconfig --list | grep 1:on
Enable a service:
$ chkconfig cups on
Disable a service:
$ chkconfig cups off
Enable a service at run level 2:
$ chkconfig --level 2 cups on
Disable a service at run level 5:
$ chkconfig --level 5 cups off