Changeset 201fca3d


Ignore:
Timestamp:
07/12/2014 10:48:15 AM (10 years ago)
Author:
Christopher Gregory <cjg@…>
Branches:
gnome
Children:
8b7a4ddd
Parents:
a998e97
Message:

Added systemd notes to fcron gpm sysstat and udev-extras pages

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/gnome@13395 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    ra998e97 r201fca3d  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "11">                   <!-- Always 2 digits -->
     3<!ENTITY day          "12">                   <!-- Always 2 digits -->
    44<!ENTITY month        "07">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2014">
  • general/sysutils/fcron.xml

    ra998e97 r201fca3d  
    8787    <title>Installation of Fcron</title>
    8888
     89    <note>
     90    <para>
     91      Systemd logging daemon, systemd-journald will automatically log
     92      all the messages from the services started by systemd, so the initial
     93      configuration for this package related to syslog is not required if using
     94      this package in systemd environment.
     95    </para>
     96    </note>
     97
    8998    <para id="fcron-syslog"><application>Fcron</application> uses the cron facility
    9099    of <command>syslog</command> to log all messages. Since LFS
     
    229238
    230239<screen role="root"><userinput>make install-fcron</userinput></screen>
     240
     241    </sect3>
     242
     243    <sect3  id="fcron-init-systemd">
     244      <title>Systemd Unit File</title>
     245
     246      <para>
     247        This package will automatically install the systemd unit file if systemd is detected.
     248        To enable it, issue as the <systemitem class="username">root</systemitem> user:
     249      </para>
     250
     251      <indexterm zone="fcron fcron-init-systemd">
     252        <primary sortas="f-fcron">fcron</primary>
     253      </indexterm>
     254
     255<screen role="root">
     256<userinput>
     257
     258systemctl enable fcron
     259
     260</userinput></screen>
    231261
    232262    </sect3>
  • general/sysutils/gpm.xml

    ra998e97 r201fca3d  
    131131    </sect3>
    132132
     133    <sect3 id="gpm-init-systemd">
     134      <title>Systemd Unit File</title>
     135
     136      <indexterm zone="gpm gpm-init-systemd">
     137        <primary sortas="f-gpm-init">gpm</primary>
     138      </indexterm>
     139
     140      <para>
     141        Instead of using the classic boot script, systemd-units package provides native unit file.
     142        Install the Systemd Unit included in the <xref linkend="systemd-units"/>
     143        package using the following command as the <systemitem class="username">root</systemitem>
     144        user:
     145      </para>
     146
     147<screen role="root"><userinput>make install-gpm</userinput></screen>
     148
     149
     150      <note>
     151      <para>
     152        Note that this service will start the daemon with "-m /dev/input/mice -t imps2" parameters
     153       (Same as when using the options from "Configuration Information" section).
     154       If any other options are needed, the file needs to be edited manually or overriden using
     155       the systemd override system using the following command as the
     156       <systemitem class="username">root</systemitem> user:
     157      </para>
     158      </note>
     159
     160<screen role="root"><userinput>
     161
     162mkdir -p /etc/systemd/system/gpm.service.d/
     163echo "Exec=/usr/sbin/gpm -m <replaceable>&lt;yourdevice&gt;</replaceable> -t <replaceable>&lt;yourprotocol&gt;</replaceable>"&gt;
     164/etc/systemd/system/gpm.service.d/50-custom.conf
     165
     166</userinput></screen>
     167    </sect3>
     168
    133169    <sect3 id="gpm-config">
    134170      <title>Config Files</title>
  • general/sysutils/sysstat.xml

    ra998e97 r201fca3d  
    182182
    183183<screen role="root"><userinput>make install-sysstat</userinput></screen>
     184
     185    </sect3>
     186
     187    <sect3 id="sysstat-init-systemd">
     188      <title>Systemd Unit File</title>
     189
     190      <indexterm zone="sysstat sysstat-init-systemd">
     191        <primary sortas="f-sysstat">sysstat</primary>
     192      </indexterm>
     193
     194      <para>
     195        This package provides systemd unit in the source tarball. To install it,
     196        run the following commands as the
     197        <systemitem class="username">root</systemitem> user:
     198      </para>
     199
     200      <para>Install the service</para>
     201<screen role="root">
     202<userinput>
     203install -v -m644 sysstat.service /lib/systemd/system/sysstat.service
     204</userinput></screen>
     205
     206      <para>Enable the service</para>
     207<screen role="root">
     208<userinput>
     209systemctl enable sysstat
     210</userinput></screen>
    184211
    185212    </sect3>
  • general/sysutils/udev-extras.xml

    ra998e97 r201fca3d  
    3232    <title>Introduction to Udev Extras</title>
    3333
     34    <note>
     35    <para>
     36      Systemd users don't need to (and shouldn't) install this package since the post-LFS
     37      systemd installation should install GUdev and its g-i data 
     38      when Glib and Gobject-Introspection are present.
     39    </para>
     40    </note>
     41   
    3442    <para><application>Eudev</application> was indeed installed in LFS and
    3543    there is no reason to reinstall it unless the user is going to install a
  • introduction/welcome/changelog.xml

    ra998e97 r201fca3d  
    4444
    4545-->
     46
     47    <listitem>
     48      <para>July 12th, 2014</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[cjg] - Added systemd notes to fcron page.</para>
     52        </listitem>
     53        <listitem>
     54          <para>[cjg] - Added systemd notes to gpm page.</para>
     55        </listitem>
     56         <listitem>
     57          <para>[cjg] - Added systemd notes to sysstat page.</para>
     58        </listitem>
     59        <listitem>
     60          <para>[cjg] - Added systemd notes to udev-extras page.</para>
     61        </listitem>
     62      </itemizedlist>
     63    </listitem>
     64
    4665
    4766    <listitem>
Note: See TracChangeset for help on using the changeset viewer.