source: postlfs/filesystems/sshfs.xml@ e0a7d67c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 9.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 e0a7d67c was e0a7d67c, checked in by Bruce Dubbs <bdubbs@…>, 4 years ago

Update to libinput-1.15.0.
Update to sshfs-3.7.0.
Update to glib-networking-2.62.3.
Update to sysstat-12.3.1.
Update to dhcpcd-8.1.5.

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

  • Property mode set to 100644
File size: 5.6 KB
Line 
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
7 <!ENTITY sshfs-download-http
8 "https://github.com/libfuse/sshfs/releases/download/sshfs-&sshfs-version;/sshfs-&sshfs-version;.tar.xz">
9 <!ENTITY sshfs-download-ftp " ">
10 <!ENTITY sshfs-md5sum "0a1414bfad323d9f3d7aaccdec671e06">
11 <!ENTITY sshfs-size "52 KB">
12 <!ENTITY sshfs-buildsize "1.9 MB">
13 <!ENTITY sshfs-time "less than 0.1 SBU">
14]>
15
16<sect1 id="sshfs" xreflabel="sshfs-&sshfs-version;">
17 <?dbhtml filename="sshfs.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>sshfs-&sshfs-version;</title>
25
26 <indexterm zone="sshfs">
27 <primary sortas="a-sshfs">sshfs</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Sshfs</title>
32
33 <para>
34 The <application>Sshfs</application> package contains a filesystem
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
41 &lfs90_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&sshfs-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&sshfs-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &sshfs-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &sshfs-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &sshfs-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &sshfs-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">Sshfs Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Required</bridgehead>
80 <para role="required">
81 <xref linkend="fuse3"/>,
82 <xref linkend="glib2"/>, and
83 <xref linkend="openssh"/>.
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
88 <xref linkend="docutils"/> (required to build the man page)
89 </para>
90
91 <para condition="html" role="usernotes">
92 User Notes: <ulink url="&blfs-wiki;/sshfs"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of Sshfs</title>
98 <!--
99 <para>
100 If you are building on i686, <application>sshfs</application> needs
101 an extra CFLAGS setting to be defined. This prevents an integer
102 overflow. To do this, run the following command:
103 </para>
104
105<screen><userinput>if [ $(uname -m) = "i686" ]; then
106 export CFLAGS+="-D_FILE_OFFSET_BITS=64";
107fi</userinput></screen>
108 -->
109
110 <para>
111 Install <application>Sshfs</application> by running the following
112 commands:
113 </para>
114
115 <screen><userinput>mkdir build &amp;&amp;
116cd build &amp;&amp;
117
118meson --prefix=/usr .. &amp;&amp;
119ninja</userinput></screen>
120
121 <para>
122 This package does not come with a test suite.
123 </para>
124
125 <para>
126 Now, as the <systemitem class="username">root</systemitem> user:
127 </para>
128
129<screen role="root"><userinput>ninja install</userinput></screen>
130 </sect2>
131
132 <sect2 role="using">
133 <title>Using Sshfs</title>
134
135 <para>
136 To mount an ssh server you need to be able to log into the server. For
137 example, to mount your remote home folder to the local ~/examplepath (the
138 directory must exist and you must have permissions to write to it):
139 </para>
140
141<screen><userinput>sshfs example.com:/home/userid ~/examplepath</userinput></screen>
142
143 <para>
144 When you've finished work and want to unmount it again:
145 </para>
146
147<screen><userinput>fusermount3 -u ~/example</userinput></screen>
148
149 <para>
150 You can also mount an <application>sshfs</application> filesystem at boot
151 by adding an entry similar to the following in the
152 <filename>/etc/fstab</filename> file:
153 </para>
154
155 <screen><literal>userid@example.com:/path /media/path fuse.sshfs _netdev,IdentityFile=/home/userid/.ssh/id_rsa 0 0</literal></screen>
156
157 <para>
158 See <command>man 1 sshfs</command> and <command>man 8 mount.fuse</command>
159 for all available mount options.
160 </para>
161
162 </sect2>
163
164 <sect2 role="content">
165 <title>Contents</title>
166
167 <segmentedlist>
168 <segtitle>Installed Program</segtitle>
169 <segtitle>Installed Libraries</segtitle>
170 <segtitle>Installed Directories</segtitle>
171
172 <seglistitem>
173 <seg>
174 sshfs
175 </seg>
176 <seg>
177 None
178 </seg>
179 <seg>
180 None
181 </seg>
182 </seglistitem>
183 </segmentedlist>
184
185 <variablelist>
186 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
187 <?dbfo list-presentation="list"?>
188 <?dbhtml list-presentation="table"?>
189
190 <varlistentry id="sshfs-prog">
191 <term><command>sshfs</command></term>
192 <listitem>
193 <para>
194 mounts an <command>ssh</command> server as a local file system.
195 </para>
196 <indexterm zone="sshfs sshfs-prog">
197 <primary sortas="b-sshfs">sshfs</primary>
198 </indexterm>
199 </listitem>
200 </varlistentry>
201 </variablelist>
202 </sect2>
203</sect1>
Note: See TracBrowser for help on using the repository browser.