/etc/init.d/*
/etc/rc{1-5}.d/*
|
1
|
|||
|
|
|
in one word: This process always has pid of 1 and controls (spawns) all other processes in your unix according to the rules in init is usually called with a number as an argument, e.g. For more information: Wikipedia article for init. Edit: Forgot to mention, what actually controls what rc level you start off in is your bootloader. |
|||
|
|
|
|
As mentioned by px, the proper way to manage the links to scripts from /etc/init.d to /etc/rc?.d is the /sbin/chkconfig command. Scripts should have comments near the top that specify how chkconfig is to handle them. For example, /etc/init.d/httpd:
Also, use the /sbin/service command to start and stop services when run from the shell. |
||
|
|
|
|
/sbin/chkconfig — The /sbin/chkconfig utility is a simple command line tool for maintaining the /etc/rc.d/init.d/ directory hierarchy. |
||
|
|