| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | <sect1 id="ch07-usage"><title>How does the booting process with these scripts work?</title><para>Linux uses a special booting facility named SysVinit. It's based on aconcept of <emphasis>runlevels</emphasis>. It can be widely different from one system to another, so  don't assume that because things worked in <insert distro name> they should work like that in LFS too. LFS has it's own way of doing things, but it respects generally accepted standards.</para><para>SysVinit (which we'll call <emphasis>init</emphasis> from now on) works using a runlevels scheme. There are 7 (from 0 to 6) runlevels (actuallythere are runlevels but they are for special cases and generally not used. Read the init man page for those details), and each one of those corresponds to the things you want your computer to do when it startsup. The default runlevel is 3. Here are the descriptions of the different runlevels as they are often implemented:</para><literallayout>0: halt the computer1: single-user mode2: multi-user mode without networking3: multi-user mode with networking4: reserved for customization, otherwise does the same as 35: same as 4, it is usually used for GUI login (like X's xdm or KDE's kdm)6: reboot the computer</literallayout><para>The command used to change runlevels is <userinput>init<runlevel></userinput> where <runlevel> is the target runlevel. For example, to reboot the computer, you'd issuethe init 6 command. The reboot command is just an alias, as is the haltcommand an alias to init 0.</para><para>The /etc/init.d/rcS script is run at every startup of the computer,before any runlevel is executed and runs the scripts listed in/etc/rcS.d</para><para>There are a number of directories under /etc that look like like rc?.dwhere ? is the number of the runlevel and rcS.d. Take a look at one of them (after you finish this chapter that is, right now there's nothingthere yet). There are a number of symbolic links. Some begin with an K, the others begin with an S, and all of them have three numbers following the initial letter. The K means to stop (kill) a service, and the S means to start a service. The numbers determine the order in which the scripts are run, from 000 to 999; the lower the number the sooner it getsexecuted. When init switches to another runlevel, the appropriate services get killed and others get started.</para><para>The real scripts are in /etc/init.d. They do all the work, and thesymlinks all point to them. You'll note that killing links and starting links point to the same script in /etc/init.d. That's because the scripts can be called with different parameters like start, stop, restart, reload, status. When a K link is encountered, the appropriate script is run with the stop argument. When a S link is encountered, the appropriate script is run with the start argument.</para><para>These are descriptions of what the arguments make the scripts do:</para><itemizedlist><listitem><para><emphasis>start</emphasis>: The service is started.</para></listitem><listitem><para><emphasis>stop</emphasis>: The service is stopped.</para></listitem><listitem><para><emphasis>restart</emphasis>: The service is stopped and then started again.</para></listitem><listitem><para><emphasis>reload</emphasis>: The configuration of the service is updated. Use this after you have modified the configuration file of a service, when you don't need/want to restart the service.</para></listitem><listitem><para><emphasis>status</emphasis>: Tells you if the service is running and with which PID's.</para></listitem></itemizedlist><para>Feel free to modify the way the boot process works (after all it's yourLFS system, not ours). The files here are just an example of how youcan do it in a nice way (well what we consider nice anyway. You mayhate it).</para></sect1>
 |