Changeset 350ab24 for BOOK/system-config


Ignore:
Timestamp:
Apr 28, 2014, 8:56:46 PM (12 years ago)
Author:
Chris Staub <chris@…>
Parents:
5c8e74d (diff), 31cfd067 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged latest systemd branch changes

Location:
BOOK/system-config
Files:
22 moved

Legend:

Unmodified
Added
Removed
  • BOOK/system-config/alpha-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/common/console.xml

    r5c8e74d r350ab24  
    1717  <command>systemd-vconsole-setup</command> system service which configures
    1818  the virtual console font and console keymap.
    19  
     19
    2020  The <command>systemd-vconsole-setup</command> service reads <filename>
    2121  /etc/vconsole.conf</filename> for configuration information. Decide which
  • BOOK/system-config/common/introduction.xml

    r5c8e74d r350ab24  
    1212
    1313  <para>This chapter details how to finish configuring the base system.
    14   Including some final configuration for Systemd and as well as locales and a
    15   simple bash profile that should be suitable for most users.</para>
     14  This includes some final configuration for Systemd as well as locales and
     15  a simple bash profile that should be suitable for most users.</para>
    1616
    1717</sect1>
  • BOOK/system-config/common/locale.xml

    r5c8e74d r350ab24  
    7070  prior to it being added to <filename>/etc/locale.conf</filename>:</para>
    7171
    72 <screen role="nodump"><userinput>LC_ALL=[locale name] locale territory 
     72<screen role="nodump"><userinput>LC_ALL=[locale name] locale territory
    7373LC_ALL=[locale name] locale language
    7474LC_ALL=[locale name] locale charmap
  • BOOK/system-config/common/symlinks.xml

    r5c8e74d r350ab24  
    134134    device.</para>
    135135
    136     <para>More information on writing Udev rules can be found in
    137     <filename>/usr/share/doc/systemd-208/udev.html</filename>.</para>
    138 
    139136 </sect2>
    140137
  • BOOK/system-config/common/udev.xml

    r5c8e74d r350ab24  
    1212
    1313  <indexterm zone="ch-scripts-udev">
    14     <primary sortas="a-Udev">Udev</primary>
    15     <secondary>usage</secondary>
     14    <primary sortas="a-systemd">Systemd</primary>
     15    <secondary>udev usage</secondary>
    1616  </indexterm>
    1717
     
    9393
    9494    <sect3>
    95       <title>Udev Bootscript</title>
    96 
    97       <para>The <command>S10udev</command> initscript takes care of creating
    98       device nodes when Linux is booted. The script unsets the uevent handler
    99       from the default of <command>/sbin/hotplug</command>.  This is done
    100       because the kernel no longer needs to call out to an external binary.
    101       Instead <command>udevd</command> will listen on a netlink socket for
    102       uevents that the kernel raises. Next, the bootscript copies any static
    103       device nodes that exist in <filename
    104       class="directory">/lib/udev/devices</filename> to <filename
    105       class="directory">/dev</filename>. This is necessary because some devices,
    106       directories, and symlinks are needed before the dynamic device handling
    107       processes are available during the early stages of booting a system.
    108       Creating static device nodes in <filename
    109       class="directory">/lib/udev/devices</filename> also provides an easy
    110       workaround for devices that are not supported by the dynamic device
    111       handling infrastructure. The bootscript then starts the Udev daemon,
    112       <command>udevd</command>, which will act on any uevents it receives.
    113       Finally, the bootscript forces the kernel to replay uevents for any
    114       devices that have already been registered and then waits for
    115       <command>udevd</command> to handle them.</para>
    116 
    117     </sect3>
    118 
    119     <sect3>
    12095      <title>Device Node Creation</title>
    12196
     
    129104      <emphasis>0</emphasis>. The names and permissions of the nodes created
    130105      under the <filename class="directory">/dev</filename> directory are
    131       determined by rules specified in the files within the <filename
    132       class="directory">/etc/udev/rules.d/</filename> directory. These are
    133       numbered in a similar fashion to the CLFS-Bootscripts package. If
    134       <command>udevd</command> can't find a rule for the device it is creating,
    135       it will default permissions to <emphasis>660</emphasis> and ownership to
    136       <emphasis>root:root</emphasis>. Documentation on the syntax of the Udev
    137       rules configuration files is available in
    138       <filename>/usr/share/doc/udev/writing_udev_rules/index.html</filename></para>
     106      determined by rules specified in the files within the
     107      <filename class="directory">/lib/udev/rules.d</filename> and <filename
     108      class="directory">/etc/udev/rules.d/</filename> directories. These files
     109      have names that start with numbers, and are evaluated in numerical order.
     110      If <command>udevd</command> can't find a rule for the device it is
     111      creating, it will default permissions to <emphasis>660</emphasis> and
     112      ownership to <emphasis>root:root</emphasis>. </para>
    139113
    140114    </sect3>
     
    234208      sound cards available to OSS applications), configure
    235209      <command>modprobe</command> to load the wrapper after Udev loads the
    236       wrapped module. To do this, add an <quote>install</quote> line in
    237       <filename>/etc/modprobe.conf</filename>. For example:</para>
     210      wrapped module. To do this, add an <quote>install</quote> line to a file
     211      in <filename>/etc/modprobe.d</filename>. For example:</para>
    238212
    239213<screen role="nodump"><literal>install snd-pcm /sbin/modprobe -i snd-pcm ; \
    240214    /sbin/modprobe snd-pcm-oss ; true</literal></screen>
    241215
    242       <para>If the module in question is not a wrapper and is useful by itself,
    243       configure the <command>S05modules</command> bootscript to load this
    244       module on system boot. To do this, add the module name to the
    245       <filename>/etc/sysconfig/modules</filename> file on a separate line.
    246       This works for wrapper modules too, but is suboptimal in that case.</para>
    247 
    248216    </sect3>
    249217
     
    252220
    253221      <para>Either don't build the module, or blacklist it in
    254       <filename>/etc/modprobe.conf</filename> file as done with the
     222      <filename>/etc/modprobe.d</filename> file as done with the
    255223      <emphasis>forte</emphasis> module in the example below:</para>
    256224
  • BOOK/system-config/common/usage.xml

    r5c8e74d r350ab24  
    1212
    1313  <indexterm zone="ch-scripts-usage">
    14     <primary sortas="a-systemd-usage">Systemd usage</primary>
     14    <primary sortas="a-systemd">Systemd</primary>
    1515  <secondary>usage</secondary></indexterm>
    1616
     
    2222    <title>Introduction to Systemd</title>
    2323
    24  
     24
    2525    <para>Systemd is a system management daemon designed exclusively for the
    2626    Linux kernel API. In the Linux startup process, it is the first process to
  • BOOK/system-config/mips-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/mips64-64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/mips64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/ppc-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/ppc64-64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up System Bootscripts">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up System Bootscripts</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/ppc64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/sparc-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/sparc64-64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/sparc64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/x86-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/x86_64-64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
  • BOOK/system-config/x86_64-chapter.xml

    r5c8e74d r350ab24  
    66]>
    77
    8 <chapter id="chapter-bootscripts" xreflabel="Setting Up the System">
    9   <?dbhtml dir="bootscripts"?>
     8<chapter id="chapter-system-config" xreflabel="System Configuration">
     9  <?dbhtml dir="system-config"?>
    1010  <?dbhtml filename="chapter.html"?>
    1111
    12   <title>Setting Up the System</title>
     12  <title>System Configuration</title>
    1313
    1414  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="common/introduction.xml"/>
Note: See TracChangeset for help on using the changeset viewer.