source: postlfs/filesystems/sshfs.xml@ dd3031a

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 xry111/llvm18 xry111/xf86-video-removal
Last change on this file since dd3031a was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 18 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

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