source: postlfs/filesystems/sshfs.xml@ 3ed1498c

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt 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
Last change on this file since 3ed1498c was f4302700, checked in by Xi Ruoyao <xry111@…>, 3 years ago

CFLAGS/CPPFLAGS cleanup

Move -I and -D into CPPFLAGS, and for others use ${CFLAGS:--O2 -g} to
prevent from building "non-optimized" binary.

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

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[ee000c3d]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[aaf0f3f]7 <!ENTITY sshfs-download-http
[0a137358]8 "https://github.com/libfuse/sshfs/releases/download/sshfs-&sshfs-version;/sshfs-&sshfs-version;.tar.xz">
[aaf0f3f]9 <!ENTITY sshfs-download-ftp " ">
[7839911b]10 <!ENTITY sshfs-md5sum "22ac23d05ca7c56fb568627f086374d0">
[bd6d933]11 <!ENTITY sshfs-size "52 KB">
[7839911b]12 <!ENTITY sshfs-buildsize "1.7 MB">
[aaf0f3f]13 <!ENTITY sshfs-time "less than 0.1 SBU">
[ee000c3d]14]>
15
[aaf0f3f]16<sect1 id="sshfs" xreflabel="sshfs-&sshfs-version;">
17 <?dbhtml filename="sshfs.html"?>
[ee000c3d]18
19 <sect1info>
[1005be4]20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
[ee000c3d]22 </sect1info>
23
[aaf0f3f]24 <title>sshfs-&sshfs-version;</title>
[ee000c3d]25
[aaf0f3f]26 <indexterm zone="sshfs">
27 <primary sortas="a-sshfs">sshfs</primary>
[ee000c3d]28 </indexterm>
29
30 <sect2 role="package">
[aaf0f3f]31 <title>Introduction to Sshfs</title>
[ee000c3d]32
33 <para>
[aaf0f3f]34 The <application>Sshfs</application> package contains a filesystem
[ee000c3d]35 client based on the SSH File Transfer Protocol. This is useful for
36 mounting a remote computer that you have ssh access to as a local
37 filesystem. This allows you to drag and drop files or run shell commands
38 on the remote files as if they were on your local computer.
39 </para>
40
[eef74ab]41 &lfs101_checked;
[ee000c3d]42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
[aaf0f3f]47 Download (HTTP): <ulink url="&sshfs-download-http;"/>
[ee000c3d]48 </para>
49 </listitem>
50 <listitem>
51 <para>
[aaf0f3f]52 Download (FTP): <ulink url="&sshfs-download-ftp;"/>
[ee000c3d]53 </para>
54 </listitem>
55 <listitem>
56 <para>
[aaf0f3f]57 Download MD5 sum: &sshfs-md5sum;
[ee000c3d]58 </para>
59 </listitem>
60 <listitem>
61 <para>
[aaf0f3f]62 Download size: &sshfs-size;
[ee000c3d]63 </para>
64 </listitem>
65 <listitem>
66 <para>
[aaf0f3f]67 Estimated disk space required: &sshfs-buildsize;
[ee000c3d]68 </para>
69 </listitem>
70 <listitem>
71 <para>
[aaf0f3f]72 Estimated build time: &sshfs-time;
[ee000c3d]73 </para>
74 </listitem>
75 </itemizedlist>
76
[aaf0f3f]77 <bridgehead renderas="sect3">Sshfs Dependencies</bridgehead>
[ee000c3d]78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
[a770b0e]81 <xref linkend="fuse3"/>,
[0d7900a]82 <xref linkend="glib2"/>, and
[ee000c3d]83 <xref linkend="openssh"/>.
84 </para>
85
[d3ea9e8]86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <xref linkend="docutils"/> (required to build the man page)
89 </para>
90
[ee000c3d]91 <para condition="html" role="usernotes">
[aaf0f3f]92 User Notes: <ulink url="&blfs-wiki;/sshfs"/>
[ee000c3d]93 </para>
94 </sect2>
95
96 <sect2 role="installation">
[aaf0f3f]97 <title>Installation of Sshfs</title>
[a14ca50]98
[ee000c3d]99 <para>
[aaf0f3f]100 Install <application>Sshfs</application> by running the following
[ee000c3d]101 commands:
102 </para>
103
[2e0d6b9]104 <screen><userinput>mkdir build &amp;&amp;
105cd build &amp;&amp;
106
107meson --prefix=/usr .. &amp;&amp;
108ninja</userinput></screen>
[ee000c3d]109
110 <para>
111 This package does not come with a test suite.
112 </para>
113
114 <para>
115 Now, as the <systemitem class="username">root</systemitem> user:
116 </para>
117
[2e0d6b9]118<screen role="root"><userinput>ninja install</userinput></screen>
[ee000c3d]119 </sect2>
120
[aaf0f3f]121 <sect2 role="using">
122 <title>Using Sshfs</title>
[ee000c3d]123
124 <para>
125 To mount an ssh server you need to be able to log into the server. For
[bd12474e]126 example, to mount your remote home folder to the local ~/examplepath (the
[12b2d1d6]127 directory must exist and you must have permissions to write to it):
[ee000c3d]128 </para>
129
[bd12474e]130<screen><userinput>sshfs example.com:/home/userid ~/examplepath</userinput></screen>
[ee000c3d]131
132 <para>
133 When you've finished work and want to unmount it again:
134 </para>
135
[2e0d6b9]136<screen><userinput>fusermount3 -u ~/example</userinput></screen>
[1eaf5ad]137
138 <para>
139 You can also mount an <application>sshfs</application> filesystem at boot
140 by adding an entry similar to the following in the
141 <filename>/etc/fstab</filename> file:
142 </para>
143
[2e0d6b9]144 <screen><literal>userid@example.com:/path /media/path fuse.sshfs _netdev,IdentityFile=/home/userid/.ssh/id_rsa 0 0</literal></screen>
[1eaf5ad]145
146 <para>
147 See <command>man 1 sshfs</command> and <command>man 8 mount.fuse</command>
148 for all available mount options.
149 </para>
150
[ee000c3d]151 </sect2>
152
153 <sect2 role="content">
154 <title>Contents</title>
155
156 <segmentedlist>
157 <segtitle>Installed Program</segtitle>
[c3c56b2]158 <segtitle>Installed Libraries</segtitle>
159 <segtitle>Installed Directories</segtitle>
[ee000c3d]160
161 <seglistitem>
[c3c56b2]162 <seg>
163 sshfs
164 </seg>
165 <seg>
166 None
167 </seg>
168 <seg>
169 None
170 </seg>
[ee000c3d]171 </seglistitem>
172 </segmentedlist>
173
174 <variablelist>
175 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
176 <?dbfo list-presentation="list"?>
177 <?dbhtml list-presentation="table"?>
178
[aaf0f3f]179 <varlistentry id="sshfs-prog">
[ee000c3d]180 <term><command>sshfs</command></term>
181 <listitem>
182 <para>
[4c24eb0a]183 mounts an <command>ssh</command> server as a local file system
[ee000c3d]184 </para>
[aaf0f3f]185 <indexterm zone="sshfs sshfs-prog">
[ee000c3d]186 <primary sortas="b-sshfs">sshfs</primary>
187 </indexterm>
188 </listitem>
189 </varlistentry>
190 </variablelist>
191 </sect2>
[4c24eb0a]192
[ee000c3d]193</sect1>
Note: See TracBrowser for help on using the repository browser.