source: chapter06/sysvinit.xml@ a0e1913

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

Removed the package name from the dependencies titles.

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

  • Property mode set to 100644
File size: 9.5 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[c2133bc]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
[673b0d8]3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[752f4e5]6<sect1 id="ch-system-sysvinit" role="wrap">
[673b0d8]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>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Sysvinit package contains programs for controlling the startup,
[69993f4]14running, and shutdown of the system.</para>
[5888299]15
[a001133]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>
[673b0d8]21
[a001133]22<segmentedlist>
[a0e1913]23<segtitle>&dependencies;</segtitle>
[69993f4]24<seglistitem><seg>Binutils, Coreutils, GCC, Glibc, and Make</seg></seglistitem>
[a001133]25</segmentedlist>
26</sect2>
[3554fa3a]27
[a001133]28<sect2 role="installation">
[73aedd1d]29<title>Installation of Sysvinit</title>
30
[ef13657]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>
[8ad7980]34
[456a1d92]35<screen><userinput>patch -Np1 -i ../sysvinit-&sysvinit-version;-proclen-1.patch</userinput></screen>
[8ad7980]36
[ef13657]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>
[73aedd1d]47
[2ec4b60]48<screen><userinput>sed -i 's@Sending processes@&amp; started by init@g' \
49 src/init.c</userinput></screen>
[73aedd1d]50
[2256873]51<para>Compile the package:</para>
[73aedd1d]52
[83865af]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>
[73aedd1d]57
[ef13657]58<para>Install the package:</para>
[73aedd1d]59
60<screen><userinput>make -C src install</userinput></screen>
61
[b48b8c5]62
[73aedd1d]63</sect2>
[5888299]64
[342b176]65
[df8334f]66<sect2 id="conf-sysvinit" role="configuration"><title>Configuring Sysvinit</title>
[673b0d8]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>
[342b176]72
[ef13657]73<para>Create a new file <filename>/etc/inittab</filename> by running the
[342b176]74following:</para>
75
[8ad7980]76<screen><userinput>cat &gt; /etc/inittab &lt;&lt; "EOF"
[3890f5a]77<literal># Begin /etc/inittab
[342b176]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
[83865af]93su:S016:once:/sbin/sulogin</literal>
[342b176]94
[83865af]95<literal arch="x86">1:2345:respawn:/sbin/agetty -I '\033(K' tty1 9600
[b32e803]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
[83865af]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>
[342b176]103
[83865af]104<literal># End /etc/inittab</literal>
[8ad7980]105EOF</userinput></screen>
[342b176]106
[83865af]107<para arch="x86">The <parameter>-I '\033(K'</parameter> option tells
[ef13657]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
[83c6411]111the <command>setfont</command> program. The <command>console</command>
112initscript from the LFS-Bootscripts package calls the <command>setfont</command>
[ef13657]113program during system startup. Sending this escape sequence is
[69993f4]114necessary for people who use non-ISO 8859-1 screen fonts, but it does
[4ea4bc4]115not effect native English speakers.</para>
[b32e803]116
[b48b8c5]117
[342b176]118</sect2>
[5888299]119
120
[c6cb3aa]121<sect2 id="contents-sysvinit" role="content"><title>Contents of Sysvinit</title>
[673b0d8]122
[c6cb3aa]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
[69993f4]127(link to init), utmpdump, and wall</seg></seglistitem>
[c6cb3aa]128</segmentedlist>
[673b0d8]129
[2256873]130<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
[3ed279f]131<?dbfo list-presentation="list"?>
[c5f9180]132<?dbhtml list-presentation="table"?>
[673b0d8]133
[b8a819f]134<varlistentry id="halt">
135<term><command>halt</command></term>
[c6cb3aa]136<listitem>
[2256873]137<para>Normally invokes <command>shutdown</command> with the
[ef13657]138<parameter>-h</parameter> option, except when already in run-level 0,
[2256873]139then it tells the kernel to halt the system; it notes in the
[ef13657]140file <filename>/var/log/wtmp</filename> that the system is being
[2256873]141brought down</para>
[3ed279f]142<indexterm zone="ch-system-sysvinit halt"><primary sortas="b-halt">halt</primary></indexterm>
[c6cb3aa]143</listitem>
144</varlistentry>
[673b0d8]145
[b8a819f]146<varlistentry id="init">
147<term><command>init</command></term>
[c6cb3aa]148<listitem>
[2256873]149<para>The first process to be started when the kernel has initialized
150the hardware which takes over the boot process and
151starts all the proceses it is instructed to</para>
[3ed279f]152<indexterm zone="ch-system-sysvinit init"><primary sortas="b-init">init</primary></indexterm>
[c6cb3aa]153</listitem>
154</varlistentry>
[673b0d8]155
[b8a819f]156<varlistentry id="killall5">
157<term><command>killall5</command></term>
[c6cb3aa]158<listitem>
[2256873]159<para>Sends a signal to all processes, except the processes in its own
[69993f4]160session so it will not kill the shell running the script that called
[2256873]161it</para>
[3ed279f]162<indexterm zone="ch-system-sysvinit killall5"><primary sortas="b-killall5">killall5</primary></indexterm>
[c6cb3aa]163</listitem>
164</varlistentry>
165
[b8a819f]166<varlistentry id="last">
167<term><command>last</command></term>
[c6cb3aa]168<listitem>
[2256873]169<para>Shows which users last logged in (and out),
170searching back through the <filename>/var/log/wtmp</filename> file; it
171also shows system boots, shutdowns, and run-level changes</para>
[3ed279f]172<indexterm zone="ch-system-sysvinit last"><primary sortas="b-last">last</primary></indexterm>
[c6cb3aa]173</listitem>
174</varlistentry>
[673b0d8]175
[b8a819f]176<varlistentry id="lastb">
177<term><command>lastb</command></term>
[c6cb3aa]178<listitem>
[2256873]179<para>Shows the failed login attempts, as logged in
180<filename>/var/log/btmp</filename></para>
[3ed279f]181<indexterm zone="ch-system-sysvinit lastb"><primary sortas="b-lastb">lastb</primary></indexterm>
[c6cb3aa]182</listitem>
183</varlistentry>
184
[b8a819f]185<varlistentry id="mesg">
186<term><command>mesg</command></term>
[c6cb3aa]187<listitem>
[2256873]188<para>Controls whether other users can send messages to the current
189user's terminal</para>
[3ed279f]190<indexterm zone="ch-system-sysvinit mesg"><primary sortas="b-mesg">mesg</primary></indexterm>
[c6cb3aa]191</listitem>
192</varlistentry>
[73aedd1d]193
[b8a819f]194<varlistentry id="pidof">
195<term><command>pidof</command></term>
[c6cb3aa]196<listitem>
[2256873]197<para>Reports the PIDs of the given programs</para>
[3ed279f]198<indexterm zone="ch-system-sysvinit pidof"><primary sortas="b-pidof">pidof</primary></indexterm>
[c6cb3aa]199</listitem>
200</varlistentry>
[673b0d8]201
[b8a819f]202<varlistentry id="poweroff">
203<term><command>poweroff</command></term>
[c6cb3aa]204<listitem>
[2256873]205<para>Tells the kernel to halt the system and switch off the computer
206(see <command>halt</command>)</para>
[3ed279f]207<indexterm zone="ch-system-sysvinit poweroff"><primary sortas="b-poweroff">poweroff</primary></indexterm>
[c6cb3aa]208</listitem>
209</varlistentry>
[673b0d8]210
[b8a819f]211<varlistentry id="reboot">
212<term><command>reboot</command></term>
[c6cb3aa]213<listitem>
[2256873]214<para>Tells the kernel to reboot the system (see
215<command>halt</command>)</para>
[3ed279f]216<indexterm zone="ch-system-sysvinit reboot"><primary sortas="b-reboot">reboot</primary></indexterm>
[c6cb3aa]217</listitem>
218</varlistentry>
[673b0d8]219
[b8a819f]220<varlistentry id="runlevel">
221<term><command>runlevel</command></term>
[c6cb3aa]222<listitem>
[2256873]223<para>Reports the previous and the current run-level, as noted in the last run-level
224record in <filename>/var/run/utmp</filename></para>
[3ed279f]225<indexterm zone="ch-system-sysvinit runlevel"><primary sortas="b-runlevel">runlevel</primary></indexterm>
[c6cb3aa]226</listitem>
227</varlistentry>
228
[b8a819f]229<varlistentry id="shutdown">
230<term><command>shutdown</command></term>
[c6cb3aa]231<listitem>
[2256873]232<para>Brings the system down in a secure way, signaling all processes
233and notifying all logged-in users</para>
[3ed279f]234<indexterm zone="ch-system-sysvinit shutdown"><primary sortas="b-shutdown">shutdown</primary></indexterm>
[c6cb3aa]235</listitem>
236</varlistentry>
[673b0d8]237
[b8a819f]238<varlistentry id="sulogin">
239<term><command>sulogin</command></term>
[c6cb3aa]240<listitem>
[2256873]241<para>Allows <emphasis>root</emphasis> to log in; it is
242normally invoked by <command>init</command> when the system goes into single user mode</para>
[3ed279f]243<indexterm zone="ch-system-sysvinit sulogin"><primary sortas="b-sulogin">sulogin</primary></indexterm>
[b48b8c5]244</listitem>
[c6cb3aa]245</varlistentry>
[673b0d8]246
[b8a819f]247<varlistentry id="telinit">
248<term><command>telinit</command></term>
[c6cb3aa]249<listitem>
[2256873]250<para>Tells <command>init</command> which run-level to change to</para>
[3ed279f]251<indexterm zone="ch-system-sysvinit telinit"><primary sortas="b-telinit">telinit</primary></indexterm>
[c6cb3aa]252</listitem>
253</varlistentry>
[673b0d8]254
[b8a819f]255<varlistentry id="utmpdump">
256<term><command>utmpdump</command></term>
[c6cb3aa]257<listitem>
[2256873]258<para>Displays the content of the given login file in a more
259user-friendly format</para>
[3ed279f]260<indexterm zone="ch-system-sysvinit utmpdump"><primary sortas="b-utmpdump">utmpdump</primary></indexterm>
[c6cb3aa]261</listitem>
262</varlistentry>
[673b0d8]263
[b8a819f]264<varlistentry id="wall">
265<term><command>wall</command></term>
[c6cb3aa]266<listitem>
[2256873]267<para>Writes a message to all logged-in users</para>
[3ed279f]268<indexterm zone="ch-system-sysvinit wall"><primary sortas="b-wall">wall</primary></indexterm>
[c6cb3aa]269</listitem>
270</varlistentry>
271</variablelist>
[673b0d8]272
273</sect2>
274
275</sect1>
[ef13657]276
Note: See TracBrowser for help on using the repository browser.