Changeset 12b2d1d6
- Timestamp:
- 07/02/2017 05:25:32 AM (6 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/inkscape-core-mods, lazarus, lxqt, perl-modules, plabs/python-mods, qt5new, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 5a916f4
- Parents:
- f13c0e16
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
rf13c0e16 r12b2d1d6 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "0 1"> <!-- Always 2 digits -->3 <!ENTITY day "02"> <!-- Always 2 digits --> 4 4 <!ENTITY month "07"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2017"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "July 1st&year;">9 <!ENTITY releasedate "July 2nd &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
rf13c0e16 r12b2d1d6 42 42 </listitem> 43 43 --> 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> 44 54 45 55 <listitem> -
postlfs/filesystems/fuse2.xml
rf13c0e16 r12b2d1d6 139 139 </para> 140 140 141 <screen role="root"><userinput>cp -v Dest/lib/*.so.* /lib && 142 ln -sv ../../lib/libfuse.so.2 /usr/lib/libfuse.so && 143 ln -sv ../../lib/libulockmgr.so.1 /usr/lib/libulockmgr.so && 144 145 cp -v Dest/lib/pkgconfig/* /usr/lib/pkgconfig && 141 <screen role="root"><userinput> 142 install -vm755 Dest/lib/*.so.* /lib && 143 ln -sfv ../../lib/libfuse.so.2 /usr/lib/libfuse.so && 144 ln -sfv ../../lib/libulockmgr.so.1 /usr/lib/libulockmgr.so && 145 146 install -vm644 Dest/lib/pkgconfig/fuse.pc /usr/lib/pkgconfig && 146 147 147 cp -v Dest/bin/* /bin && 148 cp -v Dest/sbin/mount.fuse /sbin && 149 install -vdm755 /usr/include/fuse && 150 cp -v Dest/usr/include/*.h /usr/include && 151 cp -v Dest/usr/include/fuse/*.h /usr/include/fuse/ && 152 153 cp -v Dest/usr/share/man/man1/* /usr/share/man/man1</userinput></screen> 148 install -vm4755 Dest/bin/fusermount /bin && 149 install -vm755 Dest/bin/ulockmgr_server /bin && 150 151 install -vm755 Dest/sbin/mount.fuse /sbin && 152 153 install -vdm755 /usr/include/fuse && 154 155 install -vm644 Dest/usr/include/*.h /usr/include && 156 install -vm644 Dest/usr/include/fuse/*.h /usr/include/fuse/ && 157 158 install -vm644 Dest/usr/share/man/man1/* /usr/share/man/man1</userinput></screen> 154 159 155 160 </sect2> -
postlfs/filesystems/sshfs.xml
rf13c0e16 r12b2d1d6 116 116 <para> 117 117 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): 121 120 </para> 122 121 123 <screen><userinput>sshfs HOSTNAME: ~~/MOUNTPATH</userinput></screen>122 <screen><userinput>sshfs HOSTNAME:/home/user ~/MOUNTPATH</userinput></screen> 124 123 125 124 <para>
Note:
See TracChangeset
for help on using the changeset viewer.