sysvinit.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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. <sect1info condition="script">
  10. <productname>sysvinit</productname>
  11. <productnumber>&sysvinit-version;</productnumber>
  12. <address>&sysvinit-url;</address>
  13. </sect1info>
  14. <title>Sysvinit-&sysvinit-version;</title>
  15. <indexterm zone="ch-system-sysvinit">
  16. <primary sortas="a-Sysvinit">Sysvinit</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Sysvinit package contains programs for controlling the startup,
  21. running, and shutdown of the system.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&sysvinit-ch6-sbu;</seg>
  27. <seg>&sysvinit-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Sysvinit</title>
  33. <!--
  34. <para>When run-levels are changed (for example, when halting the
  35. system), <command>init</command> sends termination signals to those
  36. processes that <command>init</command> itself started and that should
  37. not be running in the new run-level. While doing this,
  38. <command>init</command> outputs messages like <quote>Sending processes
  39. the TERM signal</quote> which seem to imply that it is sending these
  40. signals to all currently running processes. To avoid this
  41. misinterpretation, modify the source so that these messages read like
  42. <quote>Sending processes configured via /etc/inittab the TERM signal</quote>
  43. instead:</para>
  44. <screen><userinput remap="pre">sed -i 's@Sending processes@&amp; configured via /etc/inittab@g' src/init.c</userinput></screen>
  45. <para>Maintained versions of the <command>wall</command>,
  46. <command>mountpoint</command>, <command>last</command>,
  47. <command>mesg</command>, <command>sulogin</command>, and
  48. <command>utmpdump</command> programs were installed earlier by Util-linux.
  49. Suppress the installation of Sysvinit's versions of these programs and
  50. their man pages:</para>
  51. <screen><userinput remap="make">sed -ri -e '/utmpdump/d' \
  52. -e '/mountpoint/d' \
  53. -e '/mesg/d' \
  54. -e 's/= sulogin(\.8)?/=/' src/Makefile</userinput></screen>
  55. -->
  56. <para>First, apply a patch that removes several programs installed by other
  57. packages, clarifies a message, and fixes a compiler warning:</para>
  58. <screen><userinput remap="pre">patch -Np1 -i ../&sysvinit-consolidated-patch;</userinput></screen>
  59. <para>Compile the package:</para>
  60. <screen><userinput remap="make">make -C src</userinput></screen>
  61. <para>This package does not come with a test suite.</para>
  62. <para>Install the package:</para>
  63. <screen><userinput remap="install">make -C src install</userinput></screen>
  64. <para>Move files that have a name conflict with <xref linkend="ch-system-systemd"/>
  65. so that both packages can be installed side-by-side:</para>
  66. <screen><userinput remap="install">for p in init halt poweroff reboot runlevel shutdown telinit; do
  67. mv -v /sbin/$p /sbin/$p-sysv
  68. mv -v /usr/share/man/man8/$p.8 /usr/share/man/man8/$p-sysv.8
  69. done</userinput></screen>
  70. </sect2>
  71. <sect2 id="contents-sysvinit" role="content">
  72. <title>Contents of Sysvinit</title>
  73. <segmentedlist>
  74. <segtitle>Installed programs</segtitle>
  75. <seglistitem>
  76. <seg>bootlogd, fstab-decode, halt, init, killall5,
  77. poweroff (link to halt), reboot (link to halt), runlevel,
  78. shutdown, and telinit (link to init)</seg>
  79. </seglistitem>
  80. </segmentedlist>
  81. <variablelist>
  82. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  83. <?dbfo list-presentation="list"?>
  84. <?dbhtml list-presentation="table"?>
  85. <varlistentry id="bootlogd">
  86. <term><command>bootlogd</command></term>
  87. <listitem>
  88. <para>Logs boot messages to a log file</para>
  89. <indexterm zone="ch-system-sysvinit bootlogd">
  90. <primary sortas="b-bootlogd">bootlogd</primary>
  91. </indexterm>
  92. </listitem>
  93. </varlistentry>
  94. <varlistentry id="fstab-decode">
  95. <term><command>fstab-decode</command></term>
  96. <listitem>
  97. <para>Run a command with fstab-encoded arguments</para>
  98. <indexterm zone="ch-system-sysvinit fstab-decode">
  99. <primary sortas="b-fstab-decode">fstab-decode</primary>
  100. </indexterm>
  101. </listitem>
  102. </varlistentry>
  103. <varlistentry id="halt-sysv">
  104. <term><command>halt</command></term>
  105. <listitem>
  106. <para>Normally invokes <command>shutdown</command> with the
  107. <parameter>-h</parameter> option, except when already in run-level 0,
  108. then it tells the kernel to halt the system; it notes in the
  109. file <filename>/var/log/wtmp</filename> that the system is being
  110. brought down</para>
  111. <indexterm zone="ch-system-sysvinit halt-sysv">
  112. <primary sortas="b-halt">halt</primary>
  113. </indexterm>
  114. </listitem>
  115. </varlistentry>
  116. <varlistentry id="init-sysv">
  117. <term><command>init</command></term>
  118. <listitem>
  119. <para>The first process to be started when the kernel has initialized
  120. the hardware which takes over the boot process and starts all the
  121. proceses it is instructed to</para>
  122. <indexterm zone="ch-system-sysvinit init-sysv">
  123. <primary sortas="b-init">init</primary>
  124. </indexterm>
  125. </listitem>
  126. </varlistentry>
  127. <varlistentry id="killall5">
  128. <term><command>killall5</command></term>
  129. <listitem>
  130. <para>Sends a signal to all processes, except the processes in its own
  131. session so it will not kill the shell running the script that called
  132. it</para>
  133. <indexterm zone="ch-system-sysvinit killall5">
  134. <primary sortas="b-killall5">killall5</primary>
  135. </indexterm>
  136. </listitem>
  137. </varlistentry>
  138. <varlistentry id="poweroff-sysv">
  139. <term><command>poweroff</command></term>
  140. <listitem>
  141. <para>Tells the kernel to halt the system and switch off the computer
  142. (see <command>halt</command>)</para>
  143. <indexterm zone="ch-system-sysvinit poweroff-sysv">
  144. <primary sortas="b-poweroff">poweroff</primary>
  145. </indexterm>
  146. </listitem>
  147. </varlistentry>
  148. <varlistentry id="reboot-sysv">
  149. <term><command>reboot</command></term>
  150. <listitem>
  151. <para>Tells the kernel to reboot the system (see
  152. <command>halt</command>)</para>
  153. <indexterm zone="ch-system-sysvinit reboot-sysv">
  154. <primary sortas="b-reboot">reboot</primary>
  155. </indexterm>
  156. </listitem>
  157. </varlistentry>
  158. <varlistentry id="runlevel-sysv">
  159. <term><command>runlevel</command></term>
  160. <listitem>
  161. <para>Reports the previous and the current run-level, as noted in the
  162. last run-level record in <filename>/var/run/utmp</filename></para>
  163. <indexterm zone="ch-system-sysvinit runlevel-sysv">
  164. <primary sortas="b-runlevel">runlevel</primary>
  165. </indexterm>
  166. </listitem>
  167. </varlistentry>
  168. <varlistentry id="shutdown-sysv">
  169. <term><command>shutdown</command></term>
  170. <listitem>
  171. <para>Brings the system down in a secure way, signaling all processes
  172. and notifying all logged-in users</para>
  173. <indexterm zone="ch-system-sysvinit shutdown-sysv">
  174. <primary sortas="b-shutdown">shutdown</primary>
  175. </indexterm>
  176. </listitem>
  177. </varlistentry>
  178. <varlistentry id="telinit-sysv">
  179. <term><command>telinit</command></term>
  180. <listitem>
  181. <para>Tells <command>init</command> which run-level to change to</para>
  182. <indexterm zone="ch-system-sysvinit telinit-sysv">
  183. <primary sortas="b-telinit">telinit</primary>
  184. </indexterm>
  185. </listitem>
  186. </varlistentry>
  187. </variablelist>
  188. </sect2>
  189. </sect1>