Differences between revisions 1 and 22 (spanning 21 versions)
Revision 1 as of 2005-02-07 10:08:30
Size: 96
Editor: anonymous
Comment:
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:
## Auto-converted by kwiki2moinmoin v2005-10-07
Debian's init scripts are found in /etc/init.d/
## page was renamed from init
#language en
~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[it/init|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 [[inittab|/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|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
 * [[Initrd]]
 * update-rc.d, the equivalent to chkconfig

----
CategoryBootProcess

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