Changeset 12b2d1d6


Ignore:
Timestamp:
07/02/2017 05:25:32 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.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:
5a916f4
Parents:
f13c0e16
Message:

Use install for Fuse-2.9.7 to ensure that owner and group get updated as well as suid bit for fusermount.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rf13c0e16 r12b2d1d6  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "01">                   <!-- Always 2 digits -->
     3<!ENTITY day          "02">                   <!-- Always 2 digits -->
    44<!ENTITY month        "07">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "July 1st &year;">
     9<!ENTITY releasedate  "July 2nd &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rf13c0e16 r12b2d1d6  
    4242    </listitem>
    4343-->
     44
     45   <listitem>
     46     <para>July 2nd, 2017</para>
     47     <itemizedlist>
     48       <listitem>
     49         <para>[dj] - Use install for Fuse-2.9.7 to ensure that owner and group
     50         get updated as well as suid bit for fusermount.</para>
     51       </listitem>
     52     </itemizedlist>
     53   </listitem>
    4454
    4555   <listitem>
  • postlfs/filesystems/fuse2.xml

    rf13c0e16 r12b2d1d6  
    139139    </para>
    140140
    141 <screen role="root"><userinput>cp -v Dest/lib/*.so.*             /lib                    &amp;&amp;
    142 ln -sv ../../lib/libfuse.so.2     /usr/lib/libfuse.so     &amp;&amp;
    143 ln -sv ../../lib/libulockmgr.so.1 /usr/lib/libulockmgr.so &amp;&amp;
    144 
    145 cp -v Dest/lib/pkgconfig/* /usr/lib/pkgconfig             &amp;&amp;
     141<screen role="root"><userinput>
     142install -vm755 Dest/lib/*.so.*     /lib                       &amp;&amp;
     143ln -sfv ../../lib/libfuse.so.2     /usr/lib/libfuse.so        &amp;&amp;
     144ln -sfv ../../lib/libulockmgr.so.1 /usr/lib/libulockmgr.so    &amp;&amp;
     145
     146install -vm644  Dest/lib/pkgconfig/fuse.pc /usr/lib/pkgconfig &amp;&amp;
    146147                                                         
    147 cp -v Dest/bin/*           /bin                           &amp;&amp;
    148 cp -v Dest/sbin/mount.fuse /sbin                          &amp;&amp;                                                         
    149 install -vdm755                 /usr/include/fuse         &amp;&amp;
    150 cp -v Dest/usr/include/*.h      /usr/include              &amp;&amp;
    151 cp -v Dest/usr/include/fuse/*.h /usr/include/fuse/        &amp;&amp;
    152 
    153 cp -v Dest/usr/share/man/man1/* /usr/share/man/man1</userinput></screen>
     148install -vm4755 Dest/bin/fusermount       /bin                &amp;&amp;
     149install -vm755  Dest/bin/ulockmgr_server  /bin                &amp;&amp;
     150
     151install -vm755  Dest/sbin/mount.fuse      /sbin               &amp;&amp;
     152
     153install -vdm755 /usr/include/fuse                             &amp;&amp;
     154
     155install -vm644  Dest/usr/include/*.h      /usr/include        &amp;&amp;
     156install -vm644  Dest/usr/include/fuse/*.h /usr/include/fuse/  &amp;&amp;
     157
     158install -vm644  Dest/usr/share/man/man1/* /usr/share/man/man1</userinput></screen>
    154159
    155160  </sect2>
  • postlfs/filesystems/sshfs.xml

    rf13c0e16 r12b2d1d6  
    116116    <para>
    117117      To mount an ssh server you need to be able to log into the server. For
    118       example, to mount your home folder on the computer called THINGY on the
    119       folder ~/MOUNTPATH (the directory must exist and you must have permissions
    120       to write to it):
     118      example, to mount your remote home folder to the local ~/MOUNTPATH (the
     119      directory must exist and you must have permissions to write to it):
    121120    </para>
    122121
    123 <screen><userinput>sshfs HOSTNAME:~ ~/MOUNTPATH</userinput></screen>
     122<screen><userinput>sshfs HOSTNAME:/home/user ~/MOUNTPATH</userinput></screen>
    124123
    125124    <para>
Note: See TracChangeset for help on using the changeset viewer.