sysvinit.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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. <para>When run-levels are changed (for example, when halting the
  34. system), <command>init</command> sends termination signals to those
  35. processes that <command>init</command> itself started and that should
  36. not be running in the new run-level. While doing this,
  37. <command>init</command> outputs messages like <quote>Sending processes
  38. the TERM signal</quote> which seem to imply that it is sending these
  39. signals to all currently running processes. To avoid this
  40. misinterpretation, modify the source so that these messages read like
  41. <quote>Sending processes configured via /etc/inittab the TERM signal</quote>
  42. instead:</para>
  43. <screen><userinput remap="pre">sed -i 's@Sending processes@&amp; configured via /etc/inittab@g' src/init.c</userinput></screen>
  44. <para>Maintained versions of the <command>wall</command>,
  45. <command>mountpoint</command>, <command>last</command>,
  46. <command>mesg</command>, and <command>utmpdump</command> programs were
  47. installed earlier by Util-linux. Suppress the installation of Sysvinit's
  48. versions of these programs and their man pages:</para>
  49. <screen><userinput remap="make">sed -i -e '/utmpdump/d' \
  50. -e '/mountpoint/d' \
  51. -e '/mesg/d' src/Makefile</userinput></screen>
  52. <para>Compile the package:</para>
  53. <screen><userinput remap="make">make -C src</userinput></screen>
  54. <para>This package does not come with a test suite.</para>
  55. <para>Install the package:</para>
  56. <screen><userinput remap="install">make -C src install</userinput></screen>
  57. </sect2>
  58. <sect2 id="contents-sysvinit" role="content">
  59. <title>Contents of Sysvinit</title>
  60. <segmentedlist>
  61. <segtitle>Installed programs</segtitle>
  62. <seglistitem>
  63. <seg>bootlogd, fstab-decode, halt, init, killall5,
  64. lastb (link to last), pidof (link to killall5),
  65. poweroff (link to halt), reboot (link to halt), runlevel, shutdown,
  66. sulogin, and telinit (link to init)</seg>
  67. </seglistitem>
  68. </segmentedlist>
  69. <variablelist>
  70. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  71. <?dbfo list-presentation="list"?>
  72. <?dbhtml list-presentation="table"?>
  73. <varlistentry id="bootlogd">
  74. <term><command>bootlogd</command></term>
  75. <listitem>
  76. <para>Logs boot messages to a log file</para>
  77. <indexterm zone="ch-system-sysvinit bootlogd">
  78. <primary sortas="b-bootlogd">bootlogd</primary>
  79. </indexterm>
  80. </listitem>
  81. </varlistentry>
  82. <varlistentry id="fstab-decode">
  83. <term><command>fstab-decode</command></term>
  84. <listitem>
  85. <para>Run a command with fstab-encoded arguments</para>
  86. <indexterm zone="ch-system-sysvinit fstab-decode">
  87. <primary sortas="b-fstab-decode">fstab-decode</primary>
  88. </indexterm>
  89. </listitem>
  90. </varlistentry>
  91. <varlistentry id="halt">
  92. <term><command>halt</command></term>
  93. <listitem>
  94. <para>Normally invokes <command>shutdown</command> with the
  95. <parameter>-h</parameter> option, except when already in run-level 0,
  96. then it tells the kernel to halt the system; it notes in the
  97. file <filename>/var/log/wtmp</filename> that the system is being
  98. brought down</para>
  99. <indexterm zone="ch-system-sysvinit halt">
  100. <primary sortas="b-halt">halt</primary>
  101. </indexterm>
  102. </listitem>
  103. </varlistentry>
  104. <varlistentry id="init">
  105. <term><command>init</command></term>
  106. <listitem>
  107. <para>The first process to be started when the kernel has initialized
  108. the hardware which takes over the boot process and starts all the
  109. proceses it is instructed to</para>
  110. <indexterm zone="ch-system-sysvinit init">
  111. <primary sortas="b-init">init</primary>
  112. </indexterm>
  113. </listitem>
  114. </varlistentry>
  115. <varlistentry id="killall5">
  116. <term><command>killall5</command></term>
  117. <listitem>
  118. <para>Sends a signal to all processes, except the processes in its own
  119. session so it will not kill the shell running the script that called
  120. it</para>
  121. <indexterm zone="ch-system-sysvinit killall5">
  122. <primary sortas="b-killall5">killall5</primary>
  123. </indexterm>
  124. </listitem>
  125. </varlistentry>
  126. <varlistentry id="lastb">
  127. <term><command>lastb</command></term>
  128. <listitem>
  129. <para>Shows the failed login attempts, as logged in
  130. <filename>/var/log/btmp</filename></para>
  131. <indexterm zone="ch-system-sysvinit lastb">
  132. <primary sortas="b-lastb">lastb</primary>
  133. </indexterm>
  134. </listitem>
  135. </varlistentry>
  136. <varlistentry id="pidof">
  137. <term><command>pidof</command></term>
  138. <listitem>
  139. <para>Reports the PIDs of the given programs</para>
  140. <indexterm zone="ch-system-sysvinit pidof">
  141. <primary sortas="b-pidof">pidof</primary>
  142. </indexterm>
  143. </listitem>
  144. </varlistentry>
  145. <varlistentry id="poweroff">
  146. <term><command>poweroff</command></term>
  147. <listitem>
  148. <para>Tells the kernel to halt the system and switch off the computer
  149. (see <command>halt</command>)</para>
  150. <indexterm zone="ch-system-sysvinit poweroff">
  151. <primary sortas="b-poweroff">poweroff</primary>
  152. </indexterm>
  153. </listitem>
  154. </varlistentry>
  155. <varlistentry id="reboot">
  156. <term><command>reboot</command></term>
  157. <listitem>
  158. <para>Tells the kernel to reboot the system (see
  159. <command>halt</command>)</para>
  160. <indexterm zone="ch-system-sysvinit reboot">
  161. <primary sortas="b-reboot">reboot</primary>
  162. </indexterm>
  163. </listitem>
  164. </varlistentry>
  165. <varlistentry id="runlevel">
  166. <term><command>runlevel</command></term>
  167. <listitem>
  168. <para>Reports the previous and the current run-level, as noted in the
  169. last run-level record in <filename>/var/run/utmp</filename></para>
  170. <indexterm zone="ch-system-sysvinit runlevel">
  171. <primary sortas="b-runlevel">runlevel</primary>
  172. </indexterm>
  173. </listitem>
  174. </varlistentry>
  175. <varlistentry id="shutdown">
  176. <term><command>shutdown</command></term>
  177. <listitem>
  178. <para>Brings the system down in a secure way, signaling all processes
  179. and notifying all logged-in users</para>
  180. <indexterm zone="ch-system-sysvinit shutdown">
  181. <primary sortas="b-shutdown">shutdown</primary>
  182. </indexterm>
  183. </listitem>
  184. </varlistentry>
  185. <varlistentry id="sulogin">
  186. <term><command>sulogin</command></term>
  187. <listitem>
  188. <para>Allows <systemitem class="username">root</systemitem> to log in;
  189. it is normally invoked by <command>init</command> when the system goes
  190. into single user mode</para>
  191. <indexterm zone="ch-system-sysvinit sulogin">
  192. <primary sortas="b-sulogin">sulogin</primary>
  193. </indexterm>
  194. </listitem>
  195. </varlistentry>
  196. <varlistentry id="telinit">
  197. <term><command>telinit</command></term>
  198. <listitem>
  199. <para>Tells <command>init</command> which run-level to change to</para>
  200. <indexterm zone="ch-system-sysvinit telinit">
  201. <primary sortas="b-telinit">telinit</primary>
  202. </indexterm>
  203. </listitem>
  204. </varlistentry>
  205. </variablelist>
  206. </sect2>
  207. </sect1>