Changeset 8c2155e


Ignore:
Timestamp:
02/23/2018 09:27:30 PM (6 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
1c1bdba
Parents:
99b60d6
Message:

Miscellaneous:

  • few typos
  • indentation in perl-modules
  • I do not understand why we have several places where group nogroup and user nobody are created, since this has been done in LFS. Made those "nodump".

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19852 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/gsl.xml

    r99b60d6 r8c2155e  
    9797
    9898    <para>If you have the optional <application>Sphinx</application> package
    99     installed, buid the documentaiton with:</para>
     99    installed, buid the documentation with:</para>
    100100
    101101<screen><userinput>make html</userinput></screen>
  • general/prog/perl-modules.xml

    r99b60d6 r8c2155e  
    572572(http://search.cpan.org/dist/DateTime)</literallayout>
    573573        <itemizedlist>
    574           <!-- Both DateTime ::Locale and DateTime::TimeZone now need
     574          <!-- Both DateTime::Locale and DateTime::TimeZone now need
    575575          namespace::autoclean, Specio and Params::ValidationCompiler.
    576576          The latter needs Specio but only for its testsuite -->
     
    947947              </listitem>
    948948              <!-- Module::Implementation and Test::Fatal are pulled in by DateTime -->
    949             </itemizedlist> <!-- end of deps for DateT ime-Format-Strptime -->
     949            </itemizedlist> <!-- end of deps for DateTime-Format-Strptime -->
    950950          </listitem>
    951951          <!-- Test-Fatal and Test-Warnings pulled in by DateTime -->
     952          <!-- Params-Validate -->
     953          <listitem><literallayout><ulink url="http://search.cpan.org/dist/Params-Validate/">Params::Validate</ulink>
     954(http://search.cpan.org/dist/Params-Validate/) - uses <xref linkend="perl-build-install"/></literallayout>
     955          <!-- deps for Params::Validate:
     956          Module::Build is a dep of Module::Implementation via Module::Runtime,
     957          pulled in by Package::Stash in namespace::clean for
     958          namespace::autoclean in DateTime, and for testsuites Test::Fatal is
     959          pulled in for Dist::CheckConflicts for Package::Stash, and
     960          Test::Requires by Package::Stash::XS for Package::Stash -->
     961          </listitem>
    952962        </itemizedlist>
    953       </listitem>
    954       <!-- Params-Validate -->
    955       <listitem><literallayout><ulink url="http://search.cpan.org/dist/Params-Validate/">Params::Validate</ulink>
    956 (http://search.cpan.org/dist/Params-Validate/) - uses <xref linkend="perl-build-install"/></literallayout>
    957          <!-- deps for Params::Validate:
    958          Module::Build is a dep of Module::Implementation via Module::Runtime,
    959          pulled in by Package::Stash in namespace::clean for
    960          namespace::autoclean in DateTime, and for testsuites Test::Fatal is
    961          pulled in for Dist::CheckConflicts for Package::Stash, and
    962          Test::Requires by Package::Stash::XS for Package::Stash -->
    963963      </listitem>
    964964    </itemizedlist>
     
    16601660
    16611661    <para>Module::Runtime provides functions to deal with runtime
    1662      handling of Perl modules. This module itself uses the standard
    1663     <xref linkend="perl-standard-install"/>.</para>
     1662     handling of Perl modules. This module itself uses the
     1663    <xref linkend="perl-build-install"/>.</para>
    16641664
    16651665    <!-- Module-Runtime -->
  • networking/netlibs/rpcsvc-proto.xml

    r99b60d6 r8c2155e  
    3333      The <application>rpcsvc-proto</application> package contains the rcpsvc
    3434      protocol.x files and headers, formerly included with GlibC, that are not
    35       included in replacment <xref linkend="libtirpc"/>, along with the rpcgen
     35      included in replacement <xref linkend="libtirpc"/>, along with the rpcgen
    3636      program.
    3737    </para>
  • networking/netprogs/nfs-utils.xml

    r99b60d6 r8c2155e  
    149149    as the <systemitem class="username">root</systemitem> user:</para>
    150150
    151 <screen role="root"><userinput>groupadd -g 99 nogroup &amp;&amp;
     151<screen role="nodump"><userinput>groupadd -g 99 nogroup &amp;&amp;
    152152useradd -c "Unprivileged Nobody" -d /dev/null -g nogroup \
    153153    -s /bin/false -u 99 nobody</userinput></screen>
  • networking/netprogs/samba.xml

    r99b60d6 r8c2155e  
    445445      </sect4>
    446446
     447      <sect4>
     448        <title>Guest account</title>
     449
     450        <para>The default <application>Samba</application> installation uses the
     451        <systemitem class='username'>nobody</systemitem> user for guest access
     452        to the server. This can be overridden by setting the
     453        <option>guest account =</option> parameter in the
     454        <filename>/etc/samba/smb.conf</filename> file. If you utilize the
     455        <option>guest account =</option> parameter, ensure this user exists in
     456        the <filename>/etc/passwd</filename> file. To use the default user,
     457        create the following group and account, if you haven't done so in LFS.
     458        As the <systemitem class='username'>root</systemitem> user:</para>
     459
     460<screen role="role=nodump"><userinput>groupadd -g 99 nogroup &amp;&amp;
     461useradd -c "Unprivileged Nobody" -d /dev/null -g nogroup \
     462        -s /bin/false -u 99 nobody</userinput></screen>
     463
     464      </sect4>
     465
    447466      <sect4 id="samba-init" revision="sysv">
    448467        <title>Boot Script</title>
     
    465484        </indexterm>
    466485
    467         <para>The default <application>Samba</application> installation uses the
    468         <systemitem class='username'>nobody</systemitem> user for guest access
    469         to the server. This can be overridden by setting the
    470         <option>guest account =</option> parameter in the
    471         <filename>/etc/samba/smb.conf</filename> file. If you utilize the
    472         <option>guest account =</option> parameter, ensure this user exists in
    473         the <filename>/etc/passwd</filename> file. To use the default user,
    474         issue the following commands as the
    475         <systemitem class='username'>root</systemitem> user:</para>
    476 
    477 <screen role="root"><userinput>groupadd -g 99 nogroup &amp;&amp;
    478 useradd -c "Unprivileged Nobody" -d /dev/null -g nogroup \
    479     -s /bin/false -u 99 nobody</userinput></screen>
    480 
    481         <para>Install the <filename>samba</filename> script with the following
    482         command issued as the <systemitem class="username">root</systemitem>
    483         user:</para>
    484 
    485486<screen role="root"><userinput>make install-samba</userinput></screen>
    486 
    487         <para>If you also need the <filename>winbindd</filename>
    488         script to resolve names from Windows clients, run:</para>
    489487
    490488<screen role="root"><userinput>make install-winbindd</userinput></screen>
     
    494492      <sect4 id="samba-init-sysd" revision="systemd">
    495493        <title>Systemd Units</title>
    496 
    497         <para>The default <application>Samba</application> installation uses the
    498         <systemitem class='username'>nobody</systemitem> user for guest access
    499         to the server. This can be overridden by setting the
    500         <option>guest account =</option> parameter in the
    501         <filename>/etc/samba/smb.conf</filename> file. If you utilize the
    502         <option>guest account =</option> parameter, ensure this user exists in
    503         the <filename>/etc/passwd</filename> file.</para>
    504494
    505495        <para>
  • pst/scanning/sane.xml

    r99b60d6 r8c2155e  
    181181            --localstatedir=/var \
    182182            --with-group=scanner \
    183             --with-docdir=/usr/share/doc/sane-backend-&sane-version; &amp;&amp;
     183            --with-docdir=/usr/share/doc/sane-backends-&sane-version; &amp;&amp;
    184184make</userinput></screen>
    185185
  • xsoft/office/abiword.xml

    r99b60d6 r8c2155e  
    225225
    226226    <para>
    227       <command>sed ...</command>: These commands correc the source for
     227      <command>sed ...</command>: These commands correct the source for
    228228      changes in dependencies <xref linkend="enchant"/> and
    229229      <xref linkend="libical"/>.
Note: See TracChangeset for help on using the changeset viewer.