Author: bdubbs
Date: Thu Feb 22 11:45:27 2018
New Revision: 19847

Log:
Update sshfs instructions fo rmeson/ninja.
Tags and cleanup.

Modified:
   trunk/BOOK/general/genlib/qca.xml
   trunk/BOOK/general/prog/doxygen.xml
   trunk/BOOK/postlfs/filesystems/fuse3.xml
   trunk/BOOK/postlfs/filesystems/sshfs.xml
   trunk/BOOK/postlfs/security/liboauth.xml
   trunk/BOOK/postlfs/security/openssl10.xml
   trunk/BOOK/postlfs/security/ssh-askpass.xml
   trunk/BOOK/postlfs/security/stunnel.xml
   trunk/BOOK/postlfs/shells/zsh.xml

Modified: trunk/BOOK/general/genlib/qca.xml
==============================================================================
--- trunk/BOOK/general/genlib/qca.xml   Thu Feb 22 09:28:18 2018        (r19846)
+++ trunk/BOOK/general/genlib/qca.xml   Thu Feb 22 11:45:27 2018        (r19847)
@@ -34,7 +34,7 @@
     and conventions. <application>Qca</application> separates the API from
     the implementation, using plugins known as Providers.</para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/general/prog/doxygen.xml
==============================================================================
--- trunk/BOOK/general/prog/doxygen.xml Thu Feb 22 09:28:18 2018        (r19846)
+++ trunk/BOOK/general/prog/doxygen.xml Thu Feb 22 11:45:27 2018        (r19847)
@@ -50,7 +50,7 @@
       automatically.
     </para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/postlfs/filesystems/fuse3.xml
==============================================================================
--- trunk/BOOK/postlfs/filesystems/fuse3.xml    Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/filesystems/fuse3.xml    Thu Feb 22 11:45:27 2018        
(r19847)
@@ -135,13 +135,14 @@
 mv -vf   /usr/lib/libfuse3.so.3*     /lib                 &amp;&amp;
 ln -sfvn ../../lib/libfuse3.so.3.2.0 /usr/lib/libfuse3.so &amp;&amp;
 
-mv -vf /usr/bin/fusermount3  /bin  &amp;&amp;
-mv -vf /usr/sbin/mount.fuse3 /sbin &amp;&amp;
+mv -vf /usr/bin/fusermount3  /bin         &amp;&amp;
+mv -vf /usr/sbin/mount.fuse3 /sbin        &amp;&amp;
+chmod u+s /bin/fusermount3                &amp;&amp;
 
 install -v -m755 -d /usr/share/doc/fuse-&fuse3-version;      &amp;&amp;
 install -v -m644    ../doc/{README.NFS,kernel.txt} \
                     /usr/share/doc/fuse-&fuse3-version;      &amp;&amp;
-cp -Rv ../doc/html     /usr/share/doc/fuse-&fuse3-version;      &amp;&amp;
+cp -Rv ../doc/html  /usr/share/doc/fuse-&fuse3-version;      &amp;&amp;
 
 gunzip 
/usr/share/man/{man1/fusermount3.1,man8/mount.fuse.8}.gz</userinput></screen>
 

Modified: trunk/BOOK/postlfs/filesystems/sshfs.xml
==============================================================================
--- trunk/BOOK/postlfs/filesystems/sshfs.xml    Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/filesystems/sshfs.xml    Thu Feb 22 11:45:27 2018        
(r19847)
@@ -9,7 +9,7 @@
   <!ENTITY sshfs-download-ftp  " ">
   <!ENTITY sshfs-md5sum        "f261fe7ec77adc3a53f2116f3b8cb8ab">
   <!ENTITY sshfs-size          "48 KB">
-  <!ENTITY sshfs-buildsize     "1.9 MB">
+  <!ENTITY sshfs-buildsize     "1.5 MB">
   <!ENTITY sshfs-time          "less than 0.1 SBU">
 ]>
 
@@ -38,7 +38,7 @@
       on the remote files as if they were on your local computer.
     </para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">
@@ -111,8 +111,11 @@
       commands:
     </para>
 
-<screen><userinput>./configure --prefix=/usr &amp;&amp;
-make</userinput></screen>
+    <screen><userinput>mkdir build &amp;&amp;
+cd    build &amp;&amp;
+          
+meson --prefix=/usr .. &amp;&amp;
+ninja</userinput></screen>
 
     <para>
       This package does not come with a test suite.
@@ -122,7 +125,7 @@
       Now, as the <systemitem class="username">root</systemitem> user:
     </para>
 
-<screen role="root"><userinput>make install</userinput></screen>
+<screen role="root"><userinput>ninja install</userinput></screen>
   </sect2>
 
   <sect2 role="using">
@@ -140,7 +143,7 @@
       When you've finished work and want to unmount it again:
     </para>
 
-<screen><userinput>fusermount -u ~/example</userinput></screen>
+<screen><userinput>fusermount3 -u ~/example</userinput></screen>
 
     <para>
       You can also mount an <application>sshfs</application> filesystem at boot
@@ -148,7 +151,7 @@
       <filename>/etc/fstab</filename> file:
     </para>
 
-<screen>use...@example.com:/path /media/path fuse.sshfs  
_netdev,IdentityFile=/home/userid/.ssh/id_rsa 0 0</screen>
+    <screen><literal>use...@example.com:/path /media/path fuse.sshfs 
_netdev,IdentityFile=/home/userid/.ssh/id_rsa 0 0</literal></screen>
 
     <para>
       See <command>man 1 sshfs</command> and <command>man 8 
mount.fuse</command>

Modified: trunk/BOOK/postlfs/security/liboauth.xml
==============================================================================
--- trunk/BOOK/postlfs/security/liboauth.xml    Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/security/liboauth.xml    Thu Feb 22 11:45:27 2018        
(r19847)
@@ -37,7 +37,7 @@
       as well as perform HTTP requests.
     </para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/postlfs/security/openssl10.xml
==============================================================================
--- trunk/BOOK/postlfs/security/openssl10.xml   Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/security/openssl10.xml   Thu Feb 22 11:45:27 2018        
(r19847)
@@ -40,7 +40,7 @@
       not yet been ported to openssl-1.1.x or later.
     </para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/postlfs/security/ssh-askpass.xml
==============================================================================
--- trunk/BOOK/postlfs/security/ssh-askpass.xml Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/security/ssh-askpass.xml Thu Feb 22 11:45:27 2018        
(r19847)
@@ -39,7 +39,7 @@
     inserted. Here, we choose Damien Miller's package distributed in the
     <application>OpenSSH</application> tarball.</para>
 
-  &lfs81_checked;
+  &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/postlfs/security/stunnel.xml
==============================================================================
--- trunk/BOOK/postlfs/security/stunnel.xml     Thu Feb 22 09:28:18 2018        
(r19846)
+++ trunk/BOOK/postlfs/security/stunnel.xml     Thu Feb 22 11:45:27 2018        
(r19847)
@@ -42,7 +42,7 @@
     used to tunnel PPP over network sockets without changes to the server
     package source code.</para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">

Modified: trunk/BOOK/postlfs/shells/zsh.xml
==============================================================================
--- trunk/BOOK/postlfs/shells/zsh.xml   Thu Feb 22 09:28:18 2018        (r19846)
+++ trunk/BOOK/postlfs/shells/zsh.xml   Thu Feb 22 11:45:27 2018        (r19847)
@@ -38,7 +38,7 @@
     <application>zsh</application> most closely resembles
     <application>ksh</application> but includes many enhancements.</para>
 
-    &lfs81_checked;
+    &lfs82_checked;
 
     <bridgehead renderas="sect3">Package Information</bridgehead>
     <itemizedlist spacing="compact">
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to