Differences between revisions 21 and 22
Revision 21 as of 2011-07-04 17:44:43
Size: 1218
Comment: add to CategoryBootProcess
Revision 22 as of 2011-07-04 18:21:07
Size: 1249
Comment: first letter should be uppercased
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from init

Translation(s): English - ?Italiano


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 ?/etc/inittab configuration 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 (in /etc/rcS.[0-9]/*).

See also


CategoryBootProcess