Changeset 1eaf5ad


Ignore:
Timestamp:
04/11/2017 11:52:29 PM (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:
dc81ac1
Parents:
ff9b2cd
Message:

Restore mount.fuse in fuse-2.x instructions. Add fstab example for sshfs.

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

Location:
postlfs/filesystems
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • postlfs/filesystems/fuse2.xml

    rff9b2cd r1eaf5ad  
    145145cp -v Dest/lib/pkgconfig/* /usr/lib/pkgconfig             &amp;&amp;
    146146                                                         
    147 cp -v Dest/bin/*  /bin                                    &amp;&amp;
    148                                                          
     147cp -v Dest/bin/*           /bin                           &amp;&amp;
     148cp -v Dest/sbin/mount.fuse /sbin                          &amp;&amp;                                                         
    149149install -vdm755                 /usr/include/fuse         &amp;&amp;
    150150cp -v Dest/usr/include/*.h      /usr/include              &amp;&amp;
     
    201201      <seglistitem>
    202202        <seg>
    203           fusermount and ulockmgr_server
     203          fusermount, mount.fuse, and ulockmgr_server
    204204        </seg>
    205205        <seg>
     
    230230      </varlistentry>
    231231
     232      <varlistentry id="mount.fuse2">
     233        <term><command>mount.fuse</command></term>
     234        <listitem>
     235          <para>
     236            is the command <command>mount</command> would call to mount a Fuse
     237            filesystem.
     238          </para>
     239          <indexterm zone="fuse2 mount.fuse2">
     240            <primary sortas="b-mount.fuse2">mount.fuse</primary>
     241          </indexterm>
     242        </listitem>
     243      </varlistentry>
     244
    232245      <varlistentry id="ulockmgr_server2">
    233246        <term><command>ulockmgr_server</command></term>
  • postlfs/filesystems/sshfs.xml

    rff9b2cd r1eaf5ad  
    121121    </para>
    122122
    123 <screen><userinput>sshfs THINGY:~ ~/MOUNTPATH</userinput></screen>
     123<screen><userinput>sshfs HOSTNAME:~ ~/MOUNTPATH</userinput></screen>
    124124
    125125    <para>
     
    128128
    129129<screen><userinput>fusermount -u ~/MOUNTPATH</userinput></screen>
     130
     131    <para>
     132      You can also mount an <application>sshfs</application> filesystem at boot
     133      by adding an entry similar to the following in the
     134      <filename>/etc/fstab</filename> file:
     135    </para>
     136
     137<screen>USER@HOSTNAME:/path    /media/MOUNTPATH    fuse.sshfs  _netdev,IdentityFile=/home/USER/.ssh/id_rsa    0 0</screen>
     138
     139    <para>
     140      See <command>man 1 sshfs</command> and <command>man 8 mount.fuse</command>
     141      for all available mount options.
     142    </para>
     143
    130144  </sect2>
    131145
Note: See TracChangeset for help on using the changeset viewer.