usage.xml 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <sect1 id="ch07-usage">
  2. <title>How does the booting process with these scripts work?</title>
  3. <?dbhtml filename="usage.html" dir="chapter07"?>
  4. <para>Linux uses a special booting facility named SysVinit. It's based on a
  5. concept of <emphasis>runlevels</emphasis>. It can be widely different
  6. from one system to another, so it can't be assumed that because things
  7. worked in &lt;insert distro name&gt; they should work like that in LFS
  8. too. LFS has its own way of doing things, but it respects generally
  9. accepted standards.</para>
  10. <para>SysVinit (which we'll call <emphasis>init</emphasis> from now on) works
  11. using a runlevels scheme. There are 7 (from 0 to 6) runlevels
  12. (actually, there are more runlevels but they are for special cases and
  13. generally not used. The init man page describes those details), and each
  14. one of those corresponds to the things the computer is supposed to do when
  15. it starts up. The default runlevel is 3. Here are the descriptions of the
  16. different runlevels as they are often implemented:</para>
  17. <literallayout>0: halt the computer
  18. 1: single-user mode
  19. 2: multi-user mode without networking
  20. 3: multi-user mode with networking
  21. 4: reserved for customization, otherwise does the same as 3
  22. 5: same as 4, it is usually used for GUI login (like X's xdm or KDE's kdm)
  23. 6: reboot the computer</literallayout>
  24. <para>The command used to change runlevels is <userinput>init
  25. &lt;runlevel&gt;</userinput> where &lt;runlevel&gt; is
  26. the target runlevel. For example, to reboot the computer, a user would issue
  27. the init 6 command. The reboot command is just an alias, as is the halt
  28. command an alias to init 0.</para>
  29. <para>The /etc/init.d/rcS script is run at every startup of the computer,
  30. before any runlevel is executed and runs the scripts listed in
  31. /etc/rcS.d</para>
  32. <para>There are a number of directories under /etc that look like like rc?.d
  33. where ? is the number of the runlevel and rcS.d which contain a number of
  34. symbolic links. Some begin with an K, the others begin with an S, and all
  35. of them have three numbers following the initial letter. The K means to
  36. stop (kill) a service, and the S means to start a service. The numbers
  37. determine the order in which the scripts are run, from 000 to 999; the
  38. lower the number the sooner it gets executed. When init switches to
  39. another runlevel, the appropriate services get killed and others get
  40. started.</para>
  41. <para>The real scripts are in /etc/init.d. They do all the work, and the
  42. symlinks all point to them. Killing links and starting links point to
  43. the same script in /etc/init.d. That's because the scripts can be
  44. called with different parameters like start, stop, restart, reload,
  45. status. When a K link is encountered, the appropriate script is run with
  46. the stop argument. When a S link is encountered, the appropriate script
  47. is run with the start argument.</para>
  48. <para>There is one exception. Links that start with an S in the
  49. rc0.d and rc6.d directories will not cause anything to be started. They
  50. will be called with the parameter <emphasis>stop</emphasis> to stop
  51. something. The logic behind it is that when you are going to reboot or
  52. halt the system, you don't want to start anything, only stop the
  53. system.</para>
  54. <para>These are descriptions of what the arguments make the
  55. scripts do:</para>
  56. <itemizedlist>
  57. <listitem><para><emphasis>start</emphasis>: The service is
  58. started.</para></listitem>
  59. <listitem><para><emphasis>stop</emphasis>: The service is
  60. stopped.</para></listitem>
  61. <listitem><para><emphasis>restart</emphasis>: The service is
  62. stopped and then started again.</para></listitem>
  63. <listitem><para><emphasis>reload</emphasis>: The configuration
  64. of the service is updated.
  65. This is used after the configuration file of a service was modified, when
  66. the service doesn't need to be restarted.</para></listitem>
  67. <listitem><para><emphasis>status</emphasis>: Tells if the service
  68. is running and with which PID's.</para></listitem>
  69. </itemizedlist>
  70. <para>Feel free to modify the way the boot process works (after all it's your
  71. LFS system, not ours). The files here are just an example of how it can be
  72. done in a nice way (well what we consider nice anyway. You may hate it).</para>
  73. </sect1>