Changeset f67f5cf


Ignore:
Timestamp:
06/19/2004 04:54:58 PM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
8250be1
Parents:
8ad7980
Message:

Tags corrections

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3813 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter07
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • chapter07/bootscripts.xml

    r8ad7980 rf67f5cf  
    6464<indexterm zone="ch-scripts-bootscripts cleanfs-bootscripts"><primary sortas="d-cleanfs">cleanfs</primary></indexterm>
    6565<para>removes files that shouldn't be
    66 preserved between reboots, such as those in <filename>/var/run/</filename> and
    67 <filename>/var/lock/</filename>. It re-creates <filename>/var/run/utmp</filename>
     66preserved between reboots, such as those in <filename class="directory">/var/run/</filename> and
     67<filename class="directory">/var/lock/</filename>. It re-creates <filename>/var/run/utmp</filename>
    6868and removes the possibly present <filename>/etc/nologin</filename>,
    6969<filename>/fastboot</filename> and <filename>/forcefsck</filename> files.</para>
     
    126126<listitem>
    127127<indexterm zone="ch-scripts-bootscripts mountkernfs-bootscripts"><primary sortas="d-mountkernfs">mountkernfs</primary></indexterm>
    128 <para>is used to mount kernel-provided file systems, such as /proc.</para>
     128<para>is used to mount kernel-provided file systems, such as <systemitem class="filesystem">proc</systemitem>.</para>
    129129</listitem>
    130130</varlistentry>
  • chapter07/console.xml

    r8ad7980 rf67f5cf  
    3939configuration file with the following command:</para>
    4040
    41 <screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"</userinput>
    42 KEYMAP="<emphasis>arguments for loadkeys</emphasis>"
    43 FONT="<emphasis>arguments for setfont</emphasis>"
    44 <userinput>EOF</userinput></screen>
     41<screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
     42KEYMAP="<replaceable>[arguments for loadkeys]</replaceable>"
     43FONT="<replaceable>[arguments for setfont]</replaceable>"
     44EOF</userinput></screen>
    4545
    4646<para>E.g., for Spanish users who also want to use the Euro character
     
    4848the following settings are correct:</para>
    4949
    50 <screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"</userinput>
     50<screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
    5151KEYMAP="es euro"
    5252FONT="lat9-16 -u iso01"
    53 <userinput>EOF</userinput></screen>
     53EOF</userinput></screen>
    5454
    5555<note><para>The FONT line above is correct only for the ISO-8859-15
    5656character set. If you prefer ISO-8859-1 and therefore use a pound sign
    5757instead of Euro, the correct FONT line is:</para>
     58
    5859<screen><userinput>FONT="lat1-16"</userinput></screen></note>
    5960
     
    6465<para>In some keymaps, the Backspace and Delete keys send characters
    6566different form ones in the default keymap built into the kernel.
    66 This confuses some applications, e.g. <application>Emacs</application>
     67This confuses some applications, e.g., <application>Emacs</application>
    6768displays its help (instead of erasing the character before the cursor)
    6869when you press Backspace. To check if your keymap is affected (this works
    6970only for i386 keymaps):</para>
    7071
    71 <screen><userinput>zgrep '\W14\W' /path/to/your/keymap</userinput></screen>
     72<screen><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen>
    7273
    7374<para>If you see that keycode 14 is Backspace and not Delete,
    7475create the following keymap snippet to fix this issue:</para>
    7576
    76 <screen><userinput>mkdir -p /etc/kbd &amp; &amp; cat &gt;/etc/kbd/bs-sends-del &lt;&lt;"EOF"</userinput>
     77<screen><userinput>mkdir -p /etc/kbd &amp; &amp; cat &gt;/etc/kbd/bs-sends-del &lt;&lt;"EOF"
    7778                keycode 14 =    Delete  Delete          Delete  Delete
    7879        alt     keycode 14 =    Meta_Delete
     
    8283control alt     keycode 111 =   Boot
    8384altgr   control alt keycode 111 = Boot
    84 <userinput>EOF</userinput></screen>
     85EOF</userinput></screen>
    8586
    8687<para>Then tell the <command>console</command> script to load this snippet
    8788after the main keymap:</para>
    8889
    89 <screen><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"</userinput>
     90<screen><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
    9091KEYMAP_CORRECTION="/etc/kbd/bs-sends-del"
    91 <userinput>EOF</userinput></screen>
     92EOF</userinput></screen>
    9293
    9394<para>If you decided to
  • chapter07/hostname.xml

    r8ad7980 rf67f5cf  
    1313
    1414<para>Part of the localnet script is setting up the system's hostname. This
    15 needs to be configured in the /etc/sysconfig/network.</para>
     15needs to be configured in the <filename>/etc/sysconfig/network</filename>.</para>
    1616
    17 <para>Create the /etc/sysconfig/network file and enter a hostname by
     17<para>Create the <filename>/etc/sysconfig/network</filename> file and enter a hostname by
    1818running:</para>
    1919
    20 <screen><userinput>echo "HOSTNAME=lfs" &gt; /etc/sysconfig/network</userinput></screen>
     20<screen><userinput>echo "HOSTNAME=<replaceable>[lfs]</replaceable>" &gt; /etc/sysconfig/network</userinput></screen>
    2121
    22 <para><quote>lfs</quote> needs to be replaced with the name the computer is
     22<para><replaceable>[lfs]</replaceable> needs to be replaced with the name the computer is
    2323to be called. You should not enter the FQDN (Fully Qualified Domain
    2424Name) here. That information will be put in the
  • chapter07/hosts.xml

    r8ad7980 rf67f5cf  
    1919
    2020<para>If a network card is to be configured, you have to decide on the
    21 IP-address, FQDN and possible aliases for use in the /etc/hosts file. The
     21IP-address, FQDN and possible aliases for use in the <filename>/etc/hosts</filename> file. The
    2222syntax is:</para>
    2323
    2424<screen>&lt;IP address&gt; myhost.example.org aliases</screen>
    2525
    26 <para>Unless your computer is to be visible to the Internet (e.g. you have a registered domain and a valid block of assigned IP addresses - most of us don't have this)you should make sure that the IP-address is in the private network
     26<para>Unless your computer is to be visible to the Internet (e.g., you have a
     27registered domain and a valid block of assigned IP addresses - most of us don't
     28have this) you should make sure that the IP-address is in the private network
    2729IP-address range. Valid ranges are:</para>
    2830
     
    3335
    3436<para>A valid IP address could be 192.168.1.1. A valid FQDN for this IP could
    35 be www.linuxfromscratch.org (not recommended as this is a valid registered domain address and could cause your domain name server problems).</para>
     37be www.linuxfromscratch.org (not recommended as this is a valid registered domain
     38address and could cause your domain name server problems).</para>
    3639
    3740<para>If you aren't going to use a network card, you still need to
     
    4245<filename>/etc/hosts</filename> file by running:</para>
    4346
    44 <screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"</userinput>
     47<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
    4548# Begin /etc/hosts (no network card version)
    4649
    47 127.0.0.1 &lt;value of HOSTNAME&gt;.example.org &lt;value of HOSTNAME&gt; localhost
     50127.0.0.1 <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable> localhost
    4851
    4952# End /etc/hosts (no network card version)
    50 <userinput>EOF</userinput></screen>
     53EOF</userinput></screen>
    5154
    5255<para>If a network card is to be configured, create the
    5356<filename>/etc/hosts</filename> file by running:</para>
    5457
    55 <screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"</userinput>
     58<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
    5659# Begin /etc/hosts (network card version)
    5760
    5861127.0.0.1 localhost
    59 192.168.1.1 &lt;value of HOSTNAME&gt;.example.org &lt;value of HOSTNAME&gt;
     62<replaceable>[192.168.1.1]</replaceable> <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable> <replaceable>[value of HOSTNAME]</replaceable>
    6063
    6164# End /etc/hosts (network card version)
    62 <userinput>EOF</userinput></screen>
     65EOF</userinput></screen>
    6366
    64 <para>Of course, the 192.168.1.1 and &lt;value of HOSTNAME&gt;.example.org
     67<para>Of course, the <replaceable>[192.168.1.1]</replaceable> and <replaceable>[&lt;value of HOSTNAME&gt;.example.org]</replaceable>
    6568have to be changed to your liking (or requirements if assigned an IP-address
    6669by a network/system administrator and this machine is planned to be connected
  • chapter07/inputrc.xml

    r8ad7980 rf67f5cf  
    88<?dbhtml filename="inputrc.html"?>
    99
    10 <para><filename>Inputrc</filename> deals with the mapping of the keyboard for
     10<indexterm zone="ch-scripts-inputrc"><primary sortas="e-/etc/inputrc">/etc/inputrc</primary></indexterm>
     11
     12<para><filename>/etc/inputrc</filename> deals with the mapping of the keyboard for
    1113certain situations.  This file is the start-up file used by
    1214<application>readline</application> - the input related library used by
     
    2729want your system to use both, or don't want <emphasis>global</emphasis>
    2830keyboard handling, it is a good idea to place a default
    29 <filename>.inputrc</filename> into the <filename>/etc/skel</filename>
     31<filename>.inputrc</filename> into the <filename class="directory">/etc/skel</filename>
    3032directory for use with new users.</para>
    3133
     
    3739
    3840<para>If you will create an <filename>.inputrc</filename> in
    39 <filename>/etc/skel</filename> using the command below, change the
     41<filename class="directory">/etc/skel</filename> using the command below, change the
    4042command's output to <filename>/etc/skel/.inputrc</filename> and be
    4143sure to check/set permissions afterward. Then you can just copy that
    4244file to <filename>/etc/inputrc</filename> and the home directory
    4345of any user already existing in the system, including root, that needs
    44 a private version of the file.  Be sure to use the <option>-p</option> parameter
     46a private version of the file.  Be sure to use the <parameter>-p</parameter> parameter
    4547of <command>cp</command> to maintain permissions and be sure to change owner and group
    4648appropriately.
    4749</para>
    4850
    49 <screen><userinput>cat &gt; /etc/inputrc &lt;&lt; "EOF"</userinput>
     51<screen><userinput>cat &gt; /etc/inputrc &lt;&lt; "EOF"
    5052# Begin /etc/inputrc
    5153
     
    9092
    9193# End /etc/inputrc
    92 <userinput>EOF</userinput></screen>
     94EOF</userinput></screen>
    9395
    9496</sect1>
  • chapter07/network.xml

    r8ad7980 rf67f5cf  
    1717<para>If you don't have any network cards, you are most likely not going to
    1818create any configuration files relating to network cards. If that is the
    19 case, you must remove the <filename>network</filename> symlinks from all the
     19case, you must remove the <filename class="symlink">network</filename> symlinks from all the
    2020run-level directories
    2121(<filename class="directory">/etc/rc.d/rc*.d</filename>)</para>
     
    2525
    2626<para>Which interfaces are brought up and down by the network script depends on
    27 the files in the /etc/sysconfig/network-devices directory. This
    28 directory should contain files in the form of ifconfig.xyz, where xyz is a
     27the files in the <filename class="directory">/etc/sysconfig/network-devices</filename> directory. This
     28directory should contain files in the form of <filename>ifconfig.xyz</filename>, where <quote>xyz</quote> is a
    2929network interface name (such as eth0 or eth0:1)</para>
    3030
    31 <para>If you decide to rename or move this /etc/sysconfig/network-devices
    32 directory, make sure you update the /etc/sysconfig/rc file as well and
    33 update the network_devices by providing it with the new path.</para>
     31<para>If you decide to rename or move this <filename class="directory">/etc/sysconfig/network-devices</filename>
     32directory, make sure you update the <filename>/etc/sysconfig/rc</filename> file as well and
     33update the <quote>network_devices</quote> by providing it with the new path.</para>
    3434
    3535<para>Now, new files are created in that directory.
    36 The following command creates a sample ifconfig.eth0 file:</para>
     36The following command creates a sample <filename>ifconfig.eth0</filename> file:</para>
    3737
    38 <screen><userinput>cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0 &lt;&lt; "EOF"</userinput>
     38<screen><userinput>cat &gt; /etc/sysconfig/network-devices/ifconfig.eth0 &lt;&lt; "EOF"
    3939ONBOOT=yes
    4040SERVICE=static
     
    4343NETMASK=255.255.255.0
    4444BROADCAST=192.168.1.255
    45 <userinput>EOF</userinput></screen>
     45EOF</userinput></screen>
    4646
    4747<para>Of course, the values of those variables have to be changed
    4848in every file to match the proper setup. If the ONBOOT variable is set
    49 to yes, the network script will bring up the equivalent NIC (Network Interface Card)
     49to <quote>yes</quote>, the network script will bring up the equivalent NIC (Network Interface Card)
    5050 during the booting of the system.
    51 If set to anything but yes, the equivalent NIC will be ignored by the network script
     51If set to anything but <quote>yes</quote>, the equivalent NIC will be ignored by the network script
    5252and not brought up.</para>
    5353
    5454<para>The SERVICE entry defines the method of obtaining the IP address.
    5555The LFS bootscripts have a modular IP assignment format, and by creating
    56 additional files in /etc/sysconfig/network-devices/services, you can allow
     56additional files in <filename class="directory">/etc/sysconfig/network-devices/services</filename>, you can allow
    5757other IP assignment methods.  This would commonly be used if you need DHCP,
    5858which is addressed in the BLFS book.</para>
     
    6363</sect2>
    6464
    65 <sect2>
     65<sect2 id="resolv.conf">
    6666<title>Creating the /etc/resolv.conf file</title>
     67<indexterm zone="resolv.conf"><primary sortas="e-/etc/resolv.conf">/etc/resolv.conf</primary></indexterm>
    6768
    6869<para>If you're going to be connected to the Internet then most likely you'll
     
    7273following:</para>
    7374
    74 <screen><userinput>cat &gt; /etc/resolv.conf &lt;&lt; "EOF"</userinput>
     75<screen><userinput>cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
    7576# Begin /etc/resolv.conf
    7677
    77 nameserver &lt;IP address of your nameserver&gt;
     78nameserver <replaceable>[IP address of your nameserver]</replaceable>
    7879
    7980# End /etc/resolv.conf
    80 <userinput>EOF</userinput></screen>
     81EOF</userinput></screen>
    8182
    82 <para>Of course, replace &lt;IP address of your nameserver&gt; with the IP
     83<para>Of course, replace <replaceable>[IP address of your nameserver]</replaceable> with the IP
    8384address of the DNS most appropriate for your setup. There will often be
    8485more than one entry (requirements demand secondary servers for fallback capability). The IP address may even be a router on your local network.</para>
  • chapter07/profile.xml

    r8ad7980 rf67f5cf  
    88<?dbhtml filename="profile.html"?>
    99
    10 <para>The shell program <filename>/bin/bash</filename> (hereafter
    11 referred to as just "the shell") uses a collection of startup files to
     10<indexterm zone="ch-scripts-profile"><primary sortas="e-/etc/profile">/etc/profile</primary></indexterm>
     11
     12<para>The shell program <command>/bin/bash</command> (hereafter
     13referred to as just <quote>the shell</quote>) uses a collection of startup files to
    1214help create an environment to run in.  Each file has a specific use and
    1315may affect login and interactive environments differently.  The files in
     
    1820
    1921<para>An interactive login shell is started after a successful login, using
    20 <filename>/bin/login</filename>, by reading the
     22<command>/bin/login</command>, by reading the
    2123<filename>/etc/passwd</filename> file.  An
    22 interactive non-login shell is started at the command-line (e.g.
     24interactive non-login shell is started at the command-line (e.g.,
    2325<prompt>[prompt]$</prompt><command>/bin/bash</command>).  A non-interactive
    2426shell is usually present when a shell script is running.  It is non-interactive
     
    3638<para>A base <filename>/etc/profile</filename> created below only sets some
    3739environment variables necessary for Bash to accept keystrokes properly,
    38 even in non-English locale. Replace "ll" with the
    39 two-letter code for your language (e.g. "en") and
    40 "CC" with the two-letter code for your country
    41 (e.g. "GB"). Also you may need to specify
     40even in non-English locale. Replace <replaceable>[ll]</replaceable> with the
     41two-letter code for your language (e.g., <quote>en</quote>) and
     42<replaceable>[CC]</replaceable> with the two-letter code for your country
     43(e.g., <quote>GB</quote>). Also you may need to specify
    4244(and this is actually the preferred form) your
    43 character encoding (e.g. "iso8859-1") after a dot (so that the result
    44 is "en_GB.iso8859-1").
     45character encoding (e.g. <quote>iso8859-1</quote>) after a dot (so that the result
     46is <quote>en_GB.iso8859-1</quote>).
    4547Issue the following command for more information:</para>
    4648
    4749<screen><userinput>man 3 setlocale</userinput></screen>
    4850
    49 <para>The list of all locales supported by glibc can be obtained by running
     51<para>The list of all locales supported by Glibc can be obtained by running
    5052the following command:</para>
    5153
     
    5456<para>Now, when you are sure about your locale settings, create the
    5557<filename>/etc/profile</filename> file:</para>
     58
    5659<screen><userinput>cat &gt; /etc/profile &lt;&lt; "EOF"
    5760# Begin /etc/profile
     
    5962# by Alexander E. Patrakov
    6063
    61 export LC_ALL=ll_CC
    62 export LANG=ll_CC
     64export LC_ALL=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
     65export LANG=<replaceable>[ll]</replaceable>_<replaceable>[CC]</replaceable>
    6366export INPUTRC=/etc/inputrc
    6467
  • chapter07/setclock.xml

    r8ad7980 rf67f5cf  
    1212<secondary>configuring</secondary></indexterm>
    1313
    14 <para>This setclock script reads the time from your hardware clock, also
     14<para>This <command>setclock</command> script reads the time from your hardware clock, also
    1515known as BIOS or CMOS (Complementry Metal-Oxide Semiconductor) clock, and either converts that time to localtime
    1616using the <filename>/etc/localtime</filename> file (if the hardware clock
     
    2020
    2121<para>Change the value of the <emphasis>UTC</emphasis> variable below to a
    22 <emphasis>0</emphasis> (zero) if your hardware clock is not set to GMT
     22<parameter>0</parameter> (zero) if your hardware clock is not set to GMT
    2323time.</para>
    2424
     
    2626the following:</para>
    2727
    28 <screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"</userinput>
     28<screen><userinput>cat &gt; /etc/sysconfig/clock &lt;&lt; "EOF"
    2929# Begin /etc/sysconfig/clock
    3030
     
    3232
    3333# End /etc/sysconfig/clock
    34 <userinput>EOF</userinput></screen>
     34EOF</userinput></screen>
    3535
    3636<para>Now, you may want to take a look at a very good hint explaining how we
  • chapter07/sysklogd.xml

    r8ad7980 rf67f5cf  
    1313
    1414<para>The <filename>sysklogd</filename> script invokes the
    15 <command>syslogd</command> program with the <emphasis>-m 0</emphasis> option.
     15<command>syslogd</command> program with the <parameter>-m 0</parameter> option.
    1616This option turns off the periodic timestamp mark that
    1717<command>syslogd</command> writes to the log files every 20 minutes by default.
  • chapter07/usage.xml

    r8ad7980 rf67f5cf  
    2222using a run-levels scheme. There are 7 (from 0 to 6) run-levels
    2323(actually, there are more run-levels but they are for special cases and
    24 generally not used. The init man page describes those details), and each
     24generally not used. The <command>init</command> man page describes those details), and each
    2525one of those corresponds to the things the computer is supposed to do when
    2626it starts up. The default run-level is 3. Here are the descriptions of the
     
    3737<para>The command used to change run-levels is <command>init
    3838&lt;runlevel&gt;</command> where &lt;runlevel&gt; is the target run-level. For
    39 example, to reboot the computer, a user would issue the <command>init
    40 6</command> command. The <command>reboot</command> command is just an alias for
     39example, to reboot the computer, a user would issue the <userinput>init
     406</userinput> command. The <command>reboot</command> command is just an alias for
    4141it, as is the <command>halt</command> command an alias for <command>init
    42420</command>.</para>
    4343
    44 <para>There are a number of directories under <filename>/etc/rc.d</filename>
    45 that look like like rc?.d (where ? is the number of the run-level) and rcsysinit.d
     44<para>There are a number of directories under <filename class="directory">/etc/rc.d</filename>
     45that look like like <filename class="directory">rc?.d</filename> (where ? is the
     46number of the run-level) and <filename class="directory">rcsysinit.d</filename>
    4647all containing a number of symbolic links. Some begin with a K, the others begin
    4748with an S, and all of them have two numbers following the initial letter. The K
     
    5152appropriate services get killed and others get started.</para>
    5253
    53 <para>The real scripts are in /etc/rc.d/init.d. They do all the work, and the
    54 symlinks all point to them. Killing links and starting links point to
    55 the same script in /etc/rc.d/init.d. That's because the scripts can be
    56 called with different parameters like start, stop, restart, reload,
    57 status. When a K link is encountered, the appropriate script is run with
    58 the stop argument. When an S link is encountered, the appropriate script
    59 is run with the start argument.</para>
     54<para>The real scripts are in <filename class="directory">/etc/rc.d/init.d</filename>.
     55They do all the work, and the symlinks all point to them. Killing links and starting links
     56point to the same script in <filename class="directory">/etc/rc.d/init.d</filename>.
     57That's because the scripts can be called with different parameters like
     58<parameter>start</parameter>, <parameter>stop</parameter>,
     59<parameter>restart</parameter>, <parameter>reload</parameter>,
     60<parameter>status</parameter>. When a K link is encountered, the appropriate
     61script is run with the <parameter>stop</parameter> argument. When an S link is
     62encountered, the appropriate script is run with the <parameter>start</parameter>
     63argument.</para>
    6064
    6165<para>There is one exception. Links that start with an S in the
    6266rc0.d and rc6.d directories will not cause anything to be started. They
    63 will be called with the parameter <emphasis>stop</emphasis> to stop
     67will be called with the parameter <parameter>stop</parameter> to stop
    6468something. The logic behind it is that when you are going to reboot or
    6569halt the system, you don't want to start anything, only stop the
     
    6973scripts do:</para>
    7074
    71 <itemizedlist>
     75<variablelist>
     76<varlistentry>
     77<term><parameter>start</parameter></term>
     78<listitem><para>The service is started.</para></listitem>
     79</varlistentry>
    7280
    73 <listitem><para><emphasis>start</emphasis>: The service is
    74 started.</para></listitem>
     81<varlistentry>
     82<term><parameter>stop</parameter></term>
     83<listitem><para>The service is stopped.</para></listitem>
     84</varlistentry>
    7585
    76 <listitem><para><emphasis>stop</emphasis>: The service is
    77 stopped.</para></listitem>
     86<varlistentry>
     87<term><parameter>restart</parameter></term>
     88<listitem><para>The service is stopped and then started again.</para></listitem>
     89</varlistentry>
    7890
    79 <listitem><para><emphasis>restart</emphasis>: The service is
    80 stopped and then started again.</para></listitem>
    81 
    82 <listitem><para><emphasis>reload</emphasis>: The configuration
    83 of the service is updated.
     91<varlistentry>
     92<term><parameter>reload</parameter></term>
     93<listitem><para>The configuration of the service is updated.
    8494This is used after the configuration file of a service was modified, when
    8595the service doesn't need to be restarted.</para></listitem>
     96</varlistentry>
    8697
    87 <listitem><para><emphasis>status</emphasis>: Tells if the service
    88 is running and with which PIDs.</para></listitem>
    89 
    90 </itemizedlist>
     98<varlistentry>
     99<term><parameter>status</parameter></term>
     100<listitem><para>Tells if the service is running and with which PIDs.</para></listitem>
     101</varlistentry>
     102</variablelist>
    91103
    92104<para>Feel free to modify the way the boot process works (after all, it's your
Note: See TracChangeset for help on using the changeset viewer.