| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 | <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [  <!ENTITY % general-entities SYSTEM "../general.ent">  %general-entities;]><sect1 id="ch-scripts-usage"><title>How Do These Bootscripts Work?</title><?dbhtml filename="usage.html"?><indexterm zone="ch-scripts-usage"><primary sortas="a-Bootscripts">Bootscripts</primary><secondary>usage</secondary></indexterm><para>Linux uses a special booting facility named SysVinit that is based on aconcept of <emphasis>run-levels</emphasis>. It can be quite different from onesystem to another, so it cannot be assumed that because things worked in oneparticular Linux distribution, they should work the same in LFS too. LFS has itsown way of doing things, but it respects generally accepted standards.</para><para>SysVinit (which will be referred to as <quote>init</quote> from now on)works using a run-levels scheme. There are seven (numbered 0 to 6) run-levels(actually, there are more run-levels, but they are for special cases and aregenerally not used. See <filename>init(8)</filename> for more details), and each oneof those corresponds to the actions the computer is supposed to perform when itstarts up. The default run-level is 3. Here are the descriptions of thedifferent run-levels as they are 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 <command>xdm</command> or KDE's <command>kdm</command>)6: reboot the computer</literallayout><para>The command used to change run-levels is <command>init<replaceable>[runlevel]</replaceable></command>, where<replaceable>[runlevel]</replaceable> is the target run-level. For example, toreboot the computer, a user could issue the <command>init 6</command> command,which is an alias for the <command>reboot</command> command. Likewise,<command>init 0</command> is an alias for the <command>halt</command>command.</para><para>There are a number of directories under <filenameclass="directory">/etc/rc.d</filename> that look like <filenameclass="directory">rc?.d</filename> (where ? is the number of the run-level) and<filename class="directory">rcsysinit.d</filename>, all containing a number ofsymbolic links. Some begin with a <emphasis>K</emphasis>, the others begin withan <emphasis>S</emphasis>, and all of them have two numbers following theinitial letter. The K means to stop (kill) a service and the S means to start aservice. The numbers determine the order in which the scripts are run, from 00to 99—the lower the number the earlier it gets executed. When<command>init</command> switches to another run-level, the appropriate servicesare either started or stopped, depending on the runlevel chosen.</para><para>The real scripts are in <filenameclass="directory">/etc/rc.d/init.d</filename>. They do the actualwork, and the symlinks all point to them. Killing links and startinglinks point to the same script in <filenameclass="directory">/etc/rc.d/init.d</filename>. This is because thescripts can be called with different parameters like<parameter>start</parameter>, <parameter>stop</parameter>,<parameter>restart</parameter>, <parameter>reload</parameter>, and<parameter>status</parameter>. When a K link is encountered, theappropriate script is run with the <parameter>stop</parameter>argument. When an S link is encountered, the appropriate script is runwith the <parameter>start</parameter> argument.</para><para>There is one exception to this explanation. Links that startwith an <emphasis>S</emphasis> in the <filenameclass="directory">rc0.d</filename> and <filenameclass="directory">rc6.d</filename> directories will not cause anythingto be started. They will be called with the parameter<parameter>stop</parameter> to stop something. The logic behind thisis that when a user is going to reboot or halt the system, nothingneeds to be started.  The system only needs to be stopped.</para><para>These are descriptions of what the arguments make the scriptsdo:</para><variablelist><varlistentry><term><parameter>start</parameter></term><listitem><para>The service is started.</para></listitem></varlistentry><varlistentry><term><parameter>stop</parameter></term><listitem><para>The service is stopped.</para></listitem></varlistentry><varlistentry><term><parameter>restart</parameter></term><listitem><para>The service is stopped and then started again.</para></listitem></varlistentry><varlistentry><term><parameter>reload</parameter></term><listitem><para>The configuration of the service is updated.This is used after the configuration file of a service was modified, when the service does not need to be restarted.</para></listitem></varlistentry><varlistentry><term><parameter>status</parameter></term><listitem><para>Tells if the service is running and with which PIDs.</para></listitem></varlistentry></variablelist><para>Feel free to modify the way the boot process works (after all,it is your own LFS system). The files given here are an example of howit can be done.</para></sect1>
 |