|
Size: 868
Comment: The system initialization process
|
Size: 1214
Comment: merge "sysinit" here.
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 4: | Line 4: |
| Debian's init scripts (the scripts that runs at ["Boot"] time ) are found in the directory /etc/init.d/ | Init is the first program to run after your system is booted, and continues to run as process number 1 until your system halts. Init's job is to start other programs that are essential to the operation of your system. All processes are descended from init. For more information, see the manual page init(8). |
| Line 6: | Line 6: |
| Init is the first program to run after your system is booted, and continues to run as process number 1 until your system halts. Init's job is to start other programs that are essential to the operation of your system. All processes are descended from init. For more information, see the manual page init(8). | Overview : The system initialization process is handled by the {{{init}}} daemon. The [:inittab:/etc/inittab] configuration contains tells init what to do. Especially it contains the lines : {{{ id:2:initdefault: si::sysinit:/etc/init.d/rcS l2:2:wait:/etc/init.d/rc 2 }}} Which causes the files /etc/init.d/rcS to run initialization scripts (in /etc/rcS.d/*), then scripts for requested [:RunLevel:runlevel] (in /etc/rcS.[0-9]/*). |
["BootProcess"] > init
Init is the first program to run after your system is booted, and continues to run as process number 1 until your system halts. Init's job is to start other programs that are essential to the operation of your system. All processes are descended from init. For more information, see the manual page init(8).
Overview :
The system initialization process is handled by the init daemon.
The [:inittab:/etc/inittab] configuration contains tells init what to do. Especially it contains the lines :
id:2:initdefault: si::sysinit:/etc/init.d/rcS l2:2:wait:/etc/init.d/rc 2
Which causes the files /etc/init.d/rcS to run initialization scripts (in /etc/rcS.d/*), then scripts for requested [:RunLevel:runlevel] (in /etc/rcS.[0-9]/*).
See also:
[http://node1.yo-linux.com/cgi-bin/man2html?cgi_command=init Init man page].
[http://linuxreviews.net/man/init/ Init(8) man page].
http://www.yolinux.com/TUTORIALS/LinuxTutorialInitProcess.html
- ["sysinit"] The system initialization process
- ["Initrd"]
- update-rc.d, the equivalent to chkconfig
