source: chapter06/sysvinit.xml@ b48b8c5

Last change on this file since b48b8c5 was b48b8c5, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Removed beginpage tags.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4688 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 9.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-sysvinit" role="wrap">
7<title>Sysvinit-&sysvinit-version;</title>
8<?dbhtml filename="sysvinit.html"?>
9
10<indexterm zone="ch-system-sysvinit"><primary sortas="a-Sysvinit">Sysvinit</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Sysvinit package contains programs for controlling the startup,
14running, and shutdown of the system.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.1 SBU</seg><seg> 0.9 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>Sysvinit installation depends on</segtitle>
24<seglistitem><seg>Binutils, Coreutils, GCC, Glibc, and Make</seg></seglistitem>
25</segmentedlist>
26</sect2>
27
28<sect2 role="installation">
29<title>Installation of Sysvinit</title>
30
31<para>Sysvinit-&sysvinit-version; contains a <quote>buffer
32overflow</quote> bug. Under some conditions, it modifies the values of
33environment variables. Fix this with:</para>
34
35<screen><userinput>patch -Np1 -i ../sysvinit-&sysvinit-version;-proclen-1.patch</userinput></screen>
36
37<para>When run-levels are changed (for example, when halting the
38system), <command>init</command> sends termination signals to those
39processes that <command>init</command> itself started and that should
40not be running in the new run-level. While doing this,
41<command>init</command> outputs messages like <quote>Sending processes
42the TERM signal</quote> which seem to imply that it is sending these
43signals to all currently running processes. To avoid this
44misinterpretation, modify the source so that these messages read like
45<quote>Sending processes started by init the TERM signal</quote>
46instead:</para>
47
48<screen><userinput>sed -i 's@Sending processes@&amp; started by init@g' \
49 src/init.c</userinput></screen>
50
51<para>Compile the package:</para>
52
53<screen arch="x86"><userinput>make -C src</userinput></screen>
54
55<screen arch="raq2"><userinput>make -C src clobber
56make -C src</userinput></screen>
57
58<para>Install the package:</para>
59
60<screen><userinput>make -C src install</userinput></screen>
61
62
63</sect2>
64
65
66<sect2 id="conf-sysvinit" role="configuration"><title>Configuring Sysvinit</title>
67<indexterm zone="conf-sysvinit">
68<primary sortas="a-Sysvinit">Sysvinit</primary>
69<secondary>configuring</secondary></indexterm>
70
71<indexterm zone="conf-sysvinit"><primary sortas="e-/etc/inittab">/etc/inittab</primary></indexterm>
72
73<para>Create a new file <filename>/etc/inittab</filename> by running the
74following:</para>
75
76<screen><userinput>cat &gt; /etc/inittab &lt;&lt; "EOF"
77<literal># Begin /etc/inittab
78
79id:3:initdefault:
80
81si::sysinit:/etc/rc.d/init.d/rc sysinit
82
83l0:0:wait:/etc/rc.d/init.d/rc 0
84l1:S1:wait:/etc/rc.d/init.d/rc 1
85l2:2:wait:/etc/rc.d/init.d/rc 2
86l3:3:wait:/etc/rc.d/init.d/rc 3
87l4:4:wait:/etc/rc.d/init.d/rc 4
88l5:5:wait:/etc/rc.d/init.d/rc 5
89l6:6:wait:/etc/rc.d/init.d/rc 6
90
91ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now
92
93su:S016:once:/sbin/sulogin</literal>
94
95<literal arch="x86">1:2345:respawn:/sbin/agetty -I '\033(K' tty1 9600
962:2345:respawn:/sbin/agetty -I '\033(K' tty2 9600
973:2345:respawn:/sbin/agetty -I '\033(K' tty3 9600
984:2345:respawn:/sbin/agetty -I '\033(K' tty4 9600
995:2345:respawn:/sbin/agetty -I '\033(K' tty5 9600
1006:2345:respawn:/sbin/agetty -I '\033(K' tty6 9600</literal>
101
102<literal arch="raq2">c0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100</literal>
103
104<literal># End /etc/inittab</literal>
105EOF</userinput></screen>
106
107<para arch="x86">The <parameter>-I '\033(K'</parameter> option tells
108<command>agetty</command> to send this escape sequence to the terminal
109before doing anything else. This escape sequence switches the console
110character set to a user-defined one, which can be modified by running
111the <command>setfont</command> program. The <command>console</command>
112initscript from the LFS-Bootscripts package calls the <command>setfont</command>
113program during system startup. Sending this escape sequence is
114necessary for people who use non-ISO 8859-1 screen fonts, but it does
115not effect native English speakers.</para>
116
117
118</sect2>
119
120
121<sect2 id="contents-sysvinit" role="content"><title>Contents of Sysvinit</title>
122
123<segmentedlist>
124<segtitle>Installed programs</segtitle>
125<seglistitem><seg>halt, init, killall5, last, lastb (link to last), mesg, pidof (link to
126killall5), poweroff (link to halt), reboot (link to halt), runlevel, shutdown, sulogin, telinit
127(link to init), utmpdump, and wall</seg></seglistitem>
128</segmentedlist>
129
130<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
131<?dbfo list-presentation="list"?>
132
133<varlistentry id="halt">
134<term><command>halt</command></term>
135<listitem>
136<para>Normally invokes <command>shutdown</command> with the
137<parameter>-h</parameter> option, except when already in run-level 0,
138then it tells the kernel to halt the system; it notes in the
139file <filename>/var/log/wtmp</filename> that the system is being
140brought down</para>
141<indexterm zone="ch-system-sysvinit halt"><primary sortas="b-halt">halt</primary></indexterm>
142</listitem>
143</varlistentry>
144
145<varlistentry id="init">
146<term><command>init</command></term>
147<listitem>
148<para>The first process to be started when the kernel has initialized
149the hardware which takes over the boot process and
150starts all the proceses it is instructed to</para>
151<indexterm zone="ch-system-sysvinit init"><primary sortas="b-init">init</primary></indexterm>
152</listitem>
153</varlistentry>
154
155<varlistentry id="killall5">
156<term><command>killall5</command></term>
157<listitem>
158<para>Sends a signal to all processes, except the processes in its own
159session so it will not kill the shell running the script that called
160it</para>
161<indexterm zone="ch-system-sysvinit killall5"><primary sortas="b-killall5">killall5</primary></indexterm>
162</listitem>
163</varlistentry>
164
165<varlistentry id="last">
166<term><command>last</command></term>
167<listitem>
168<para>Shows which users last logged in (and out),
169searching back through the <filename>/var/log/wtmp</filename> file; it
170also shows system boots, shutdowns, and run-level changes</para>
171<indexterm zone="ch-system-sysvinit last"><primary sortas="b-last">last</primary></indexterm>
172</listitem>
173</varlistentry>
174
175<varlistentry id="lastb">
176<term><command>lastb</command></term>
177<listitem>
178<para>Shows the failed login attempts, as logged in
179<filename>/var/log/btmp</filename></para>
180<indexterm zone="ch-system-sysvinit lastb"><primary sortas="b-lastb">lastb</primary></indexterm>
181</listitem>
182</varlistentry>
183
184<varlistentry id="mesg">
185<term><command>mesg</command></term>
186<listitem>
187<para>Controls whether other users can send messages to the current
188user's terminal</para>
189<indexterm zone="ch-system-sysvinit mesg"><primary sortas="b-mesg">mesg</primary></indexterm>
190</listitem>
191</varlistentry>
192
193<varlistentry id="pidof">
194<term><command>pidof</command></term>
195<listitem>
196<para>Reports the PIDs of the given programs</para>
197<indexterm zone="ch-system-sysvinit pidof"><primary sortas="b-pidof">pidof</primary></indexterm>
198</listitem>
199</varlistentry>
200
201<varlistentry id="poweroff">
202<term><command>poweroff</command></term>
203<listitem>
204<para>Tells the kernel to halt the system and switch off the computer
205(see <command>halt</command>)</para>
206<indexterm zone="ch-system-sysvinit poweroff"><primary sortas="b-poweroff">poweroff</primary></indexterm>
207</listitem>
208</varlistentry>
209
210<varlistentry id="reboot">
211<term><command>reboot</command></term>
212<listitem>
213<para>Tells the kernel to reboot the system (see
214<command>halt</command>)</para>
215<indexterm zone="ch-system-sysvinit reboot"><primary sortas="b-reboot">reboot</primary></indexterm>
216</listitem>
217</varlistentry>
218
219<varlistentry id="runlevel">
220<term><command>runlevel</command></term>
221<listitem>
222<para>Reports the previous and the current run-level, as noted in the last run-level
223record in <filename>/var/run/utmp</filename></para>
224<indexterm zone="ch-system-sysvinit runlevel"><primary sortas="b-runlevel">runlevel</primary></indexterm>
225</listitem>
226</varlistentry>
227
228<varlistentry id="shutdown">
229<term><command>shutdown</command></term>
230<listitem>
231<para>Brings the system down in a secure way, signaling all processes
232and notifying all logged-in users</para>
233<indexterm zone="ch-system-sysvinit shutdown"><primary sortas="b-shutdown">shutdown</primary></indexterm>
234</listitem>
235</varlistentry>
236
237<varlistentry id="sulogin">
238<term><command>sulogin</command></term>
239<listitem>
240<para>Allows <emphasis>root</emphasis> to log in; it is
241normally invoked by <command>init</command> when the system goes into single user mode</para>
242<indexterm zone="ch-system-sysvinit sulogin"><primary sortas="b-sulogin">sulogin</primary></indexterm>
243</listitem>
244</varlistentry>
245
246<varlistentry id="telinit">
247<term><command>telinit</command></term>
248<listitem>
249<para>Tells <command>init</command> which run-level to change to</para>
250<indexterm zone="ch-system-sysvinit telinit"><primary sortas="b-telinit">telinit</primary></indexterm>
251</listitem>
252</varlistentry>
253
254<varlistentry id="utmpdump">
255<term><command>utmpdump</command></term>
256<listitem>
257<para>Displays the content of the given login file in a more
258user-friendly format</para>
259<indexterm zone="ch-system-sysvinit utmpdump"><primary sortas="b-utmpdump">utmpdump</primary></indexterm>
260</listitem>
261</varlistentry>
262
263<varlistentry id="wall">
264<term><command>wall</command></term>
265<listitem>
266<para>Writes a message to all logged-in users</para>
267<indexterm zone="ch-system-sysvinit wall"><primary sortas="b-wall">wall</primary></indexterm>
268</listitem>
269</varlistentry>
270</variablelist>
271
272</sect2>
273
274</sect1>
275
Note: See TracBrowser for help on using the repository browser.