source: chapter07/usage.xml@ 14eaecc

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v3_0 v3_1 v3_2 v3_3 v4_0 v4_1 v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 14eaecc was fa914e5, checked in by Gerard Beekmans <gerard@…>, 23 years ago

text updates

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1114 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 4.1 KB
Line 
1<sect1 id="ch07-usage">
2<title>How does the booting process with these scripts work?</title>
3
4<para>Linux uses a special booting facility named SysVinit. It's based on a
5concept of <emphasis>runlevels</emphasis>. It can be widely different
6from one system to another, so it can not be assumed that because things
7worked in &lt;insert distro name&gt; they should work like that in LFS
8too. LFS has it's own way of doing things, but it respects generally
9accepted standards.</para>
10
11<para>SysVinit (which we'll call <emphasis>init</emphasis> from now on) works
12using a runlevels scheme. There are 7 (from 0 to 6) runlevels
13(actually, there are more runlevels but they are for special cases and
14generally not used. The init man page describes those details), and each
15one of those corresponds to the things the computer is supposed to do when
16it starts up. The default runlevel is 3. Here are the descriptions of the
17different runlevels as they are often implemented:</para>
18
19<literallayout>0: halt the computer
201: single-user mode
212: multi-user mode without networking
223: multi-user mode with networking
234: reserved for customization, otherwise does the same as 3
245: same as 4, it is usually used for GUI login (like X's xdm or KDE's kdm)
256: reboot the computer</literallayout>
26
27<para>The command used to change runlevels is <userinput>init
28&lt;runlevel&gt;</userinput> where &lt;runlevel&gt; is
29the target runlevel. For example, to reboot the computer, a user would issue
30the init 6 command. The reboot command is just an alias, as is the halt
31command an alias to init 0.</para>
32
33<para>The /etc/init.d/rcS script is run at every startup of the computer,
34before any runlevel is executed and runs the scripts listed in
35/etc/rcS.d</para>
36
37<para>There are a number of directories under /etc that look like like rc?.d
38where ? is the number of the runlevel and rcS.d which contain a number of s
39ymbolic links. Some begin with an K, the others begin with an S, and all
40of them have three numbers following the initial letter. The K means to
41stop (kill) a service, and the S means to start a service. The numbers
42determine the order in which the scripts are run, from 000 to 999; the
43lower the number the sooner it gets executed. When init switches to
44another runlevel, the appropriate services get killed and others get
45started.</para>
46
47<para>The real scripts are in /etc/init.d. They do all the work, and the
48symlinks all point to them. Killing links and starting links point to
49the same script in /etc/init.d. That's because the scripts can be
50called with different parameters like start, stop, restart, reload,
51status. When a K link is encountered, the appropriate script is run with
52the stop argument. When a S link is encountered, the appropriate script
53is run with the start argument.</para>
54
55<para>There is one exception. Links that start with an S in the
56rc0.d and rc6.d directories will not cause anything to be started. They
57will be called with the paramater <emphasis>stop</emphasis> to stop
58something. The logic behind it is that when you are going to reboot or
59halt the system, you don't want to start anything, only stop the
60system.</para>
61
62<para>These are descriptions of what the arguments make the
63scripts do:</para>
64
65<itemizedlist>
66
67<listitem><para><emphasis>start</emphasis>: The service is
68started.</para></listitem>
69
70<listitem><para><emphasis>stop</emphasis>: The service is
71stopped.</para></listitem>
72
73<listitem><para><emphasis>restart</emphasis>: The service is
74stopped and then started again.</para></listitem>
75
76<listitem><para><emphasis>reload</emphasis>: The configuration
77of the service is updated.
78This is used after the configuration file of a service was modified, when
79the service doesn't need to be restarted.</para></listitem>
80
81<listitem><para><emphasis>status</emphasis>: Tells if the service
82is running and with which PID's.</para></listitem>
83
84</itemizedlist>
85
86<para>Feel free to modify the way the boot process works (after all it's your
87LFS system, not ours). The files here are just an example of how it can be
88done in a nice way (well what we consider nice anyway. You may hate it).</para>
89
90</sect1>
91
Note: See TracBrowser for help on using the repository browser.