source: chapter06/sysvinit.xml@ a53678b

Last change on this file since a53678b was b2456c4, checked in by Jim Gifford <jim@…>, 19 years ago

Removed sysvinit proclen patch

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

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