source: chapter07/usage.xml@ 9966f76

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.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 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 9966f76 was b838f52, checked in by Jeremy Utley <jeremy@…>, 20 years ago

Corrected that annoying typo of How Work These Scripts

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

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-scripts-usage">
7<title>How do these bootscripts work?</title>
8<?dbhtml filename="usage.html"?>
9
10<indexterm zone="ch-scripts-usage">
11<primary sortas="a-Bootscripts">Bootscripts</primary>
12<secondary>usage</secondary></indexterm>
13
14<para>Linux uses a special booting facility named SysVinit. It's based on a
15concept of <emphasis>run-levels</emphasis>. It can be widely different
16from one system to another, so it can't be assumed that because things
17worked in &lt;insert distro name&gt; they should work like that in LFS
18too. LFS has its own way of doing things, but it respects generally
19accepted standards.</para>
20
21<para>SysVinit (which we'll call <emphasis>init</emphasis> from now on) works
22using a run-levels scheme. There are 7 (from 0 to 6) run-levels
23(actually, there are more run-levels but they are for special cases and
24generally not used. The <command>init</command> man page describes those details), and each
25one of those corresponds to the things the computer is supposed to do when
26it starts up. The default run-level is 3. Here are the descriptions of the
27different run-levels as they are often implemented:</para>
28
29<literallayout>0: halt the computer
301: single-user mode
312: multi-user mode without networking
323: multi-user mode with networking
334: reserved for customization, otherwise does the same as 3
345: same as 4, it is usually used for GUI login (like X's xdm or KDE's kdm)
356: reboot the computer</literallayout>
36
37<para>The command used to change run-levels is <command>init
38&lt;runlevel&gt;</command> where &lt;runlevel&gt; is the target run-level. For
39example, to reboot the computer, a user would issue the <userinput>init
406</userinput> command. The <command>reboot</command> command is just an alias for
41it, as is the <command>halt</command> command an alias for <command>init
420</command>.</para>
43
44<para>There are a number of directories under <filename class="directory">/etc/rc.d</filename>
45that look like like <filename class="directory">rc?.d</filename> (where ? is the
46number of the run-level) and <filename class="directory">rcsysinit.d</filename>
47all containing a number of symbolic links. Some begin with a K, the others begin
48with an S, and all of them have two numbers following the initial letter. The K
49means to stop (kill) a service, and the S means to start a service. The numbers
50determine the order in which the scripts are run, from 00 to 99; the lower the
51number the sooner it gets executed. When init switches to another run-level, the
52appropriate services get killed and others get started.</para>
53
54<para>The real scripts are in <filename class="directory">/etc/rc.d/init.d</filename>.
55They do all the work, and the symlinks all point to them. Killing links and starting links
56point to the same script in <filename class="directory">/etc/rc.d/init.d</filename>.
57That's because the scripts can be called with different parameters like
58<parameter>start</parameter>, <parameter>stop</parameter>,
59<parameter>restart</parameter>, <parameter>reload</parameter>,
60<parameter>status</parameter>. When a K link is encountered, the appropriate
61script is run with the <parameter>stop</parameter> argument. When an S link is
62encountered, the appropriate script is run with the <parameter>start</parameter>
63argument.</para>
64
65<para>There is one exception. Links that start with an S in the
66rc0.d and rc6.d directories will not cause anything to be started. They
67will be called with the parameter <parameter>stop</parameter> to stop
68something. The logic behind it is that when you are going to reboot or
69halt the system, you don't want to start anything, only stop the
70system.</para>
71
72<para>These are descriptions of what the arguments make the
73scripts do:</para>
74
75<variablelist>
76<varlistentry>
77<term><parameter>start</parameter></term>
78<listitem><para>The service is started.</para></listitem>
79</varlistentry>
80
81<varlistentry>
82<term><parameter>stop</parameter></term>
83<listitem><para>The service is stopped.</para></listitem>
84</varlistentry>
85
86<varlistentry>
87<term><parameter>restart</parameter></term>
88<listitem><para>The service is stopped and then started again.</para></listitem>
89</varlistentry>
90
91<varlistentry>
92<term><parameter>reload</parameter></term>
93<listitem><para>The configuration of the service is updated.
94This is used after the configuration file of a service was modified, when
95the service doesn't need to be restarted.</para></listitem>
96</varlistentry>
97
98<varlistentry>
99<term><parameter>status</parameter></term>
100<listitem><para>Tells if the service is running and with which PIDs.</para></listitem>
101</varlistentry>
102</variablelist>
103
104<para>Feel free to modify the way the boot process works (after all, it's your
105own LFS system). The files given here are just an example of how it can be
106done in a nice way (well, what we consider nice -- you may hate it).</para>
107
108</sect1>
Note: See TracBrowser for help on using the repository browser.