source: BOOK/final-system/common/sysvinit.xml @ 834692e

clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 834692e was 834692e, checked in by William Harrington <kb0iic@…>, 11 years ago

Disable building and install of sulogin.

  • Property mode set to 100644
File size: 10.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7<sect1 id="ch-system-sysvinit" role="wrap">
8  <?dbhtml filename="sysvinit.html"?>
9
10  <title>Sysvinit-&sysvinit-version;</title>
11
12  <indexterm zone="ch-system-sysvinit">
13    <primary sortas="a-Sysvinit">Sysvinit</primary>
14  </indexterm>
15
16  <sect2 role="package">
17    <title/>
18
19    <para>The Sysvinit package contains programs for controlling the startup,
20    running, and shutdown of the system.</para>
21
22  </sect2>
23
24  <sect2 role="installation">
25    <title>Installation of Sysvinit</title>
26
27<para os ="a">Apply a sed which removes sulogin from being built and installed as sulogin is installed by util-linux:</para>
28
29<screen os="b"><userinput>cp -v src/Makefile{,.orig}
30sed -e 's/\ sulogin//;s/\ sulogin.8//' \
31    -e '/sulogin.*:/d' src/Makefile.orig > src/Makefile</userinput></screen>
32
33<para os ="c">Compile the package:</para>
34
35<screen os="d"><userinput>make -C src clobber
36make -C src</userinput></screen>
37
38    <para os="e">Install the package:</para>
39
40<screen os="f"><userinput>make -C src install</userinput></screen>
41
42  </sect2>
43
44  <sect2 id="conf-sysvinit" role="configuration">
45    <title>Configuring Sysvinit</title>
46
47    <indexterm zone="conf-sysvinit">
48      <primary sortas="a-Sysvinit">Sysvinit</primary>
49    <secondary>configuring</secondary></indexterm>
50
51    <indexterm zone="conf-sysvinit">
52      <primary sortas="e-/etc/inittab">/etc/inittab</primary>
53    </indexterm>
54
55    <para>Create a new file <filename>/etc/inittab</filename> by running the
56    following:</para>
57
58<screen><userinput>cat &gt; /etc/inittab &lt;&lt; "EOF"
59<literal># Begin /etc/inittab
60
61id:3:initdefault:
62
63si::sysinit:/etc/rc.d/init.d/rc sysinit
64
65l0:0:wait:/etc/rc.d/init.d/rc 0
66l1:S1:wait:/etc/rc.d/init.d/rc 1
67l2:2:wait:/etc/rc.d/init.d/rc 2
68l3:3:wait:/etc/rc.d/init.d/rc 3
69l4:4:wait:/etc/rc.d/init.d/rc 4
70l5:5:wait:/etc/rc.d/init.d/rc 5
71l6:6:wait:/etc/rc.d/init.d/rc 6
72
73ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
74
75su:S016:once:/sbin/sulogin
76</literal>
77EOF</userinput></screen>
78
79    <para>The following command adds the standard virtual terminals to
80    <filename>/etc/inittab</filename>. If your system only has a serial
81    console skip the following command:</para>
82
83<screen><userinput>cat &gt;&gt; /etc/inittab &lt;&lt; "EOF"
84<literal>1:2345:respawn:/sbin/agetty -I '\033(K' tty1 9600
852:2345:respawn:/sbin/agetty -I '\033(K' tty2 9600
863:2345:respawn:/sbin/agetty -I '\033(K' tty3 9600
874:2345:respawn:/sbin/agetty -I '\033(K' tty4 9600
885:2345:respawn:/sbin/agetty -I '\033(K' tty5 9600
896:2345:respawn:/sbin/agetty -I '\033(K' tty6 9600
90</literal>
91EOF</userinput></screen>
92
93    <para>If your system has a serial console run the following command to add
94    the entry to <filename>/etc/inittab</filename>:</para>
95
96<screen><userinput>cat &gt;&gt; /etc/inittab &lt;&lt; "EOF"
97<literal>c0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
98</literal>
99EOF</userinput></screen>
100
101   <para>Finally, add the end line to <filename>/etc/inittab</filename>:</para>
102
103<screen><userinput>cat &gt;&gt; /etc/inittab &lt;&lt; "EOF"
104<literal># End /etc/inittab</literal>
105EOF</userinput></screen>
106
107    <para>The <parameter>-I '\033(K'</parameter> option tells
108    <command>agetty</command> to send this escape sequence to the terminal
109    before doing anything else. This escape sequence switches the console
110    character set to a user-defined one, which can be modified by running
111    the <command>setfont</command> program. The <command>console</command>
112    initscript from the CLFS-Bootscripts package calls the
113    <command>setfont</command> program during system startup. Sending this
114    escape sequence is necessary for people who use non-ISO 8859-1 screen
115    fonts, but it does not affect native English speakers.</para>
116
117  </sect2>
118
119  <sect2 id="contents-sysvinit" role="content">
120    <title>Contents of Sysvinit</title>
121
122    <segmentedlist>
123      <segtitle>Installed programs</segtitle>
124
125      <seglistitem>
126        <seg>bootlogd, halt, init, killall5, last, lastb (link to last), mesg,
127        mountpoint, pidof (link to killall5), poweroff (link to halt),
128        reboot (link to halt), runlevel, shutdown,
129        telinit (link to init), utmpdump, and wall</seg>
130      </seglistitem>
131    </segmentedlist>
132
133    <variablelist>
134      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
135      <?dbfo list-presentation="list"?>
136      <?dbhtml list-presentation="table"?>
137
138      <varlistentry id="bootlogd">
139        <term><command>bootlogd</command></term>
140        <listitem>
141          <para>Logs boot messages to a log file</para>
142          <indexterm zone="ch-system-sysvinit bootlogd">
143            <primary sortas="b-bootlogd">bootlogd</primary>
144          </indexterm>
145        </listitem>
146      </varlistentry>
147
148      <varlistentry id="halt">
149        <term><command>halt</command></term>
150        <listitem>
151          <para>Normally invokes <command>shutdown</command> with the
152          <parameter>-h</parameter> option, except when already in run-level 0,
153          then it tells the kernel to halt the system; it notes in the
154          file <filename>/var/log/wtmp</filename> that the system is being
155          brought down</para>
156          <indexterm zone="ch-system-sysvinit halt">
157            <primary sortas="b-halt">halt</primary>
158          </indexterm>
159        </listitem>
160      </varlistentry>
161
162      <varlistentry id="init">
163        <term><command>init</command></term>
164        <listitem>
165          <para>The first process to be started when the kernel has initialized
166          the hardware which takes over the boot process and starts all the
167          proceses it is instructed to</para>
168          <indexterm zone="ch-system-sysvinit init">
169            <primary sortas="b-init">init</primary>
170          </indexterm>
171        </listitem>
172      </varlistentry>
173
174      <varlistentry id="killall5">
175        <term><command>killall5</command></term>
176        <listitem>
177          <para>Sends a signal to all processes, except the processes in its own
178          session so it will not kill the shell running the script that called
179          it</para>
180          <indexterm zone="ch-system-sysvinit killall5">
181            <primary sortas="b-killall5">killall5</primary>
182          </indexterm>
183        </listitem>
184      </varlistentry>
185
186      <varlistentry id="last">
187        <term><command>last</command></term>
188        <listitem>
189          <para>Shows which users last logged in (and out), searching back
190          through the <filename>/var/log/wtmp</filename> file; it also shows
191          system boots, shutdowns, and run-level changes</para>
192          <indexterm zone="ch-system-sysvinit last">
193            <primary sortas="b-last">last</primary>
194          </indexterm>
195        </listitem>
196      </varlistentry>
197
198      <varlistentry id="lastb">
199        <term><command>lastb</command></term>
200        <listitem>
201          <para>Shows the failed login attempts, as logged in
202          <filename>/var/log/btmp</filename></para>
203          <indexterm zone="ch-system-sysvinit lastb">
204            <primary sortas="b-lastb">lastb</primary>
205          </indexterm>
206        </listitem>
207      </varlistentry>
208
209      <varlistentry id="mesg">
210        <term><command>mesg</command></term>
211        <listitem>
212          <para>Controls whether other users can send messages to the current
213          user's terminal</para>
214          <indexterm zone="ch-system-sysvinit mesg">
215            <primary sortas="b-mesg">mesg</primary>
216          </indexterm>
217        </listitem>
218      </varlistentry>
219
220      <varlistentry id="mountpoint">
221        <term><command>mountpoint</command></term>
222        <listitem>
223          <para>Tells you whether or not a directory is a mount point.</para>
224          <indexterm zone="ch-system-sysvinit mountpoint">
225            <primary sortas="b-mountpoint">mountpoint</primary>
226          </indexterm>
227        </listitem>
228      </varlistentry>
229
230      <varlistentry id="pidof">
231        <term><command>pidof</command></term>
232        <listitem>
233          <para>Reports the PIDs of the given programs</para>
234          <indexterm zone="ch-system-sysvinit pidof">
235            <primary sortas="b-pidof">pidof</primary>
236          </indexterm>
237        </listitem>
238      </varlistentry>
239
240      <varlistentry id="poweroff">
241        <term><command>poweroff</command></term>
242        <listitem>
243          <para>Tells the kernel to halt the system and switch off the computer
244          (see <command>halt</command>)</para>
245          <indexterm zone="ch-system-sysvinit poweroff">
246            <primary sortas="b-poweroff">poweroff</primary>
247          </indexterm>
248        </listitem>
249      </varlistentry>
250
251      <varlistentry id="reboot">
252        <term><command>reboot</command></term>
253        <listitem>
254          <para>Tells the kernel to reboot the system (see
255          <command>halt</command>)</para>
256          <indexterm zone="ch-system-sysvinit reboot">
257            <primary sortas="b-reboot">reboot</primary>
258          </indexterm>
259        </listitem>
260      </varlistentry>
261
262      <varlistentry id="runlevel">
263        <term><command>runlevel</command></term>
264        <listitem>
265          <para>Reports the previous and the current run-level, as noted in
266          the last run-level record in <filename>/var/run/utmp</filename></para>
267          <indexterm zone="ch-system-sysvinit runlevel">
268            <primary sortas="b-runlevel">runlevel</primary>
269          </indexterm>
270        </listitem>
271      </varlistentry>
272
273      <varlistentry id="shutdown">
274        <term><command>shutdown</command></term>
275        <listitem>
276          <para>Brings the system down in a secure way, signaling all processes
277          and notifying all logged-in users</para>
278          <indexterm zone="ch-system-sysvinit shutdown">
279            <primary sortas="b-shutdown">shutdown</primary>
280          </indexterm>
281        </listitem>
282      </varlistentry>
283
284      <varlistentry id="telinit">
285        <term><command>telinit</command></term>
286        <listitem>
287          <para>Tells <command>init</command> which run-level to change to</para>
288          <indexterm zone="ch-system-sysvinit telinit">
289            <primary sortas="b-telinit">telinit</primary>
290          </indexterm>
291        </listitem>
292      </varlistentry>
293
294      <varlistentry id="utmpdump">
295        <term><command>utmpdump</command></term>
296        <listitem>
297          <para>Displays the content of the given login file in a more
298          user-friendly format</para>
299          <indexterm zone="ch-system-sysvinit utmpdump">
300            <primary sortas="b-utmpdump">utmpdump</primary>
301          </indexterm>
302        </listitem>
303      </varlistentry>
304
305      <varlistentry id="wall">
306        <term><command>wall</command></term>
307        <listitem>
308          <para>Writes a message to all logged-in users</para>
309          <indexterm zone="ch-system-sysvinit wall">
310            <primary sortas="b-wall">wall</primary>
311          </indexterm>
312        </listitem>
313      </varlistentry>
314
315    </variablelist>
316
317  </sect2>
318
319</sect1>
Note: See TracBrowser for help on using the repository browser.