Ignore:
Timestamp:
01/25/2013 12:48:47 AM (11 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
8f1699f2
Parents:
cd34755
Message:

Minor changes to various packages

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/filesystems/fuse.xml

    rcd34755 r5a464e4d  
    9898    <title>Installation of Fuse</title>
    9999
     100    <note>
     101      <para>
     102        After the <command>configure</command> script has finished you will
     103        see a warning shown below. You can safely disregard this warning.
     104      </para>
     105
     106<screen><computeroutput>configure: WARNING:
     107******************************************************************
     108* Please install util-linux version 2.18 or later which supports *
     109* --fake and --no-canonicalize options in mount and umount       *
     110******************************************************************</computeroutput></screen>
     111    </note>
     112
    100113    <para>
    101114      Install <application>Fuse</application> by running the following
     
    107120
    108121    <para>
     122      If you have <xref linkend="doxygen"/> installed and wish to build the API
     123      documentation, issue <command>doxygen doc/Doxyfile</command>.
     124    </para>
     125
     126    <para>
    109127      This package does not come with a test suite.
    110128    </para>
     
    115133
    116134<screen role="root"><userinput>make install &amp;&amp;
    117 mv -v /usr/lib/libfuse.so.* /lib &amp;&amp;
     135
     136mv -v   /usr/lib/libfuse.so.* /lib &amp;&amp;
    118137ln -sfv ../../lib/libfuse.so.&fuse-version; /usr/lib/libfuse.so &amp;&amp;
    119 rm -rf /tmp/init.d</userinput></screen>
     138rm -rf  /tmp/init.d &amp;&amp;
     139
     140install -v -m755 -d /usr/share/doc/fuse-&fuse-version; &amp;&amp;
     141install -v -m644    doc/{how-fuse-works,kernel.txt} \
     142                    /usr/share/doc/fuse-&fuse-version;</userinput></screen>
     143
     144    <para>
     145      If you built the API documentation, install it as the
     146      <systemitem class="username">root</systemitem> user by issuing the
     147      following commands:
     148    </para>
     149
     150<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/fuse-&fuse-version;/api &amp;&amp;
     151install -v -m644    doc/html/* \
     152                    /usr/share/doc/fuse-&fuse-version;/api</userinput></screen>
    120153  </sect2>
    121154
     
    127160
    128161    <para>
    129       <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter makes it
    130       install its bootscript into <filename>/tmp/init.d</filename>.
    131     </para>
    132 
    133     <para>
    134       <command>mv -v /usr/lib/libfuse.so.* /lib</command>: This moves
    135       <application>FUSE</application> library to root filesystem
    136       so that it is available at early boot in case
    137       <filename class="directory">/usr</filename> is on seperate
    138       partition and <xref linkend="ntfs-3g"/> is built with system
    139       <application>FUSE</application>.
     162      <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs
     163      the bootscript into <filename class="directory">/tmp/init.d</filename> as
     164      a bootscript is not required.
     165    </para>
     166
     167    <para>
     168      <command>mv -v /usr/lib/libfuse.so.* /lib</command>: This moves the
     169      <application>FUSE</application> library to the root filesystem
     170      so that it is available early in the boot process in case
     171      <filename class="directory">/usr</filename> is mounted on a separate
     172      partition and <xref linkend="ntfs-3g"/> is built with a system-installed
     173      version of <application>FUSE</application>.
    140174    </para>
    141175
Note: See TracChangeset for help on using the changeset viewer.