Get services to start up in Linux
Add Service with default runlevels:
# update-rc.d apache2 defaults
Add Service with custom runlevels:
# update-rc.d apache2 start 50 2 3 4 5 . stop 50 0 1 2 3 4 5 6 .
Remove Service:
# update-rc.d -f apache2 remove
More Infos you can get here:
http://www.debuntu.org/how-to-manage-services-with-update-rc.d
admin on February 24th 2010 in General