source: postlfs/filesystems/fuse.xml@ 3b3a3be

systemd-13485
Last change on this file since 3b3a3be was 3b3a3be, checked in by Douglas R. Reno <renodr@…>, 8 years ago

(both) Add a sed for the GnuTLS Compatibility Library
(both) GCC6 tags
(systemd) LFS79 tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@17392 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.5 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 fuse-download-http "https://github.com/libfuse/libfuse/releases/download/fuse-&fuse-version;/fuse-&fuse-version;.tar.gz">
8 <!ENTITY fuse-download-ftp " ">
9 <!ENTITY fuse-md5sum "3d3eebdfe640ccbf0f0a93988a07596a">
10 <!ENTITY fuse-size "625 KB">
11 <!ENTITY fuse-buildsize "8.2 MB (9.8 MB with API documentation)">
12 <!ENTITY fuse-time "0.1 SBU">
13]>
14
15<sect1 id="fuse" xreflabel="Fuse-&fuse-version;">
16 <?dbhtml filename="fuse.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Fuse-&fuse-version;</title>
24
25 <indexterm zone="fuse">
26 <primary sortas="a-Fuse">Fuse</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Fuse</title>
31
32 <para>
33 <application>FUSE</application> (Filesystem in Userspace) is a simple
34 interface for userspace programs to export a virtual filesystem to the
35 Linux kernel. <application>Fuse</application> also aims to provide a
36 secure method for non privileged users to create and mount their own
37 filesystem implementations.
38 </para>
39
40 &lfs79_checked;&gcc6_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&fuse-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&fuse-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &fuse-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &fuse-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &fuse-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &fuse-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76 <bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
77
78 <bridgehead renderas="sect4">Optional</bridgehead>
79 <para role="optional">
80 <xref linkend="doxygen"/> (to build the API documentation)
81 </para>
82
83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/fuse"/>
85 </para>
86 </sect2>
87
88 <sect2 role="kernel" id="fuse-kernel">
89 <title>Kernel Configuration</title>
90
91 <para>
92 Enable the following options in the kernel configuration and recompile the
93 kernel if necessary:
94 </para>
95
96<screen><literal>File systems ---&gt;
97 &lt;*/M&gt; FUSE (Filesystem in Userspace) support [CONFIG_FUSE_FS]</literal></screen>
98
99 <indexterm zone="fuse fuse-kernel">
100 <primary sortas="d-fuse">fuse</primary>
101 </indexterm>
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of Fuse</title>
106
107 <note>
108 <para>
109 After the <command>configure</command> script has finished you will
110 see a warning shown below. You can safely disregard this warning.
111 </para>
112
113<screen><computeroutput>configure: WARNING:
114******************************************************************
115* Please install util-linux version 2.18 or later which supports *
116* --fake and --no-canonicalize options in mount and umount *
117******************************************************************</computeroutput></screen>
118 </note>
119
120 <para>
121 Install <application>Fuse</application> by running the following
122 commands:
123 </para>
124
125<screen><userinput>./configure --prefix=/usr \
126 --disable-static \
127 INIT_D_PATH=/tmp/init.d &amp;&amp;
128make</userinput></screen>
129
130 <para>
131 If you have <xref linkend="doxygen"/> installed and wish to build the API
132 documentation, issue <command>doxygen doc/Doxyfile</command>.
133 </para>
134
135 <para>
136 This package does not come with a test suite.
137 </para>
138
139 <para>
140 Now, as the <systemitem class="username">root</systemitem> user:
141 </para>
142
143<screen role="root"><userinput>make install &amp;&amp;
144
145mv -v /usr/lib/libfuse.so.* /lib &amp;&amp;
146ln -sfv ../../lib/libfuse.so.&fuse-version; /usr/lib/libfuse.so &amp;&amp;
147rm -rf /tmp/init.d &amp;&amp;
148
149install -v -dm755 /usr/share/doc/fuse-&fuse-version; &amp;&amp;
150install -v -m644 doc/{how-fuse-works,kernel.txt} \
151 /usr/share/doc/fuse-&fuse-version;</userinput></screen>
152
153 <para>
154 If you built the API documentation, install it as the
155 <systemitem class="username">root</systemitem> user by issuing the
156 following commands:
157 </para>
158
159<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/fuse-&fuse-version;/api &amp;&amp;
160install -v -m644 doc/html/* \
161 /usr/share/doc/fuse-&fuse-version;/api</userinput></screen>
162 </sect2>
163
164 <sect2 role="commands">
165 <title>Command Explanations</title>
166
167 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
168 href="../../xincludes/static-libraries.xml"/>
169
170 <para>
171 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs
172 the bootscript into <filename class="directory">/tmp/init.d</filename> as
173 a bootscript is not required.
174 </para>
175
176 <para>
177 <command>mv -v /usr/lib/libfuse.so.* /lib</command>: This moves the
178 <application>FUSE</application> library to the root filesystem
179 so that it is available early in the boot process in case
180 <filename class="directory">/usr</filename> is mounted on a separate
181 partition and <xref linkend="ntfs-3g"/> is built with a system-installed
182 version of <application>FUSE</application>.
183 </para>
184
185 <para>
186 <command>rm -rf /tmp/init.d</command>: This removes the unneeded
187 bootscript.
188 </para>
189
190 </sect2>
191
192 <sect2 role="configuration">
193 <title>Configuring fuse</title>
194
195 <sect3 id="fuse-config">
196 <title>Config Files</title>
197
198 <para>
199 Some options regarding mount policy can be set in the file
200 <filename>/etc/fuse.conf</filename>. To install the file run the
201 following command as the <systemitem class="username">root</systemitem>
202 user:
203 </para>
204
205<screen role="root"><userinput>cat &gt; /etc/fuse.conf &lt;&lt; "EOF"
206# Set the maximum number of FUSE mounts allowed to non-root users.
207# The default is 1000.
208#
209#mount_max = 1000
210
211# Allow non-root users to specify the 'allow_other' or 'allow_root'
212# mount options.
213#
214#user_allow_other
215EOF</userinput></screen>
216
217 <para>
218 Additional information about the meaning of the configuration
219 options are found in the man page.
220 </para>
221
222 </sect3>
223
224 </sect2>
225
226 <sect2 role="content">
227 <title>Contents</title>
228
229 <segmentedlist>
230 <segtitle>Installed Programs</segtitle>
231 <segtitle>Installed Libraries</segtitle>
232 <segtitle>Installed Directory</segtitle>
233
234 <seglistitem>
235 <seg>
236 fusermount,
237 mount.fuse,
238 and ulockmgr_server
239 </seg>
240 <seg>
241 libfuse.so
242 and libulockmgr.so
243 </seg>
244 <seg>
245 /usr/include/fuse
246 and /usr/share/doc/fuse-&fuse-version;
247 </seg>
248 </seglistitem>
249 </segmentedlist>
250
251 <variablelist>
252 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
253 <?dbfo list-presentation="list"?>
254 <?dbhtml list-presentation="table"?>
255
256 <varlistentry id="fusermount">
257 <term><command>fusermount</command></term>
258 <listitem>
259 <para>
260 is a set users ID root program to mount and unmount Fuse
261 filesystems.
262 </para>
263 <indexterm zone="fuse fusermount">
264 <primary sortas="b-fusermount">fusermount</primary>
265 </indexterm>
266 </listitem>
267 </varlistentry>
268
269 <varlistentry id="mount.fuse">
270 <term><command>mount.fuse</command></term>
271 <listitem>
272 <para>
273 is the command <command>mount</command> would call to mount a Fuse
274 filesystem.
275 </para>
276 <indexterm zone="fuse mount.fuse">
277 <primary sortas="b-mount.fuse">mount.fuse</primary>
278 </indexterm>
279 </listitem>
280 </varlistentry>
281
282 <varlistentry id="ulockmgr_server">
283 <term><command>ulockmgr_server</command></term>
284 <listitem>
285 <para>
286 is the Userspace Lock Manager Server for Fuse filesystems.
287 </para>
288 <indexterm zone="fuse ulockmgr_server">
289 <primary sortas="b-ulockmgr_server">ulockmgr_server</primary>
290 </indexterm>
291 </listitem>
292 </varlistentry>
293
294 <varlistentry id="libfuse">
295 <term><filename class="libraryfile">libfuse.so</filename></term>
296 <listitem>
297 <para>
298 contains the <application>FUSE</application> API functions.
299 </para>
300 <indexterm zone="fuse libfuse">
301 <primary sortas="c-libfuse">libfuse.so</primary>
302 </indexterm>
303 </listitem>
304 </varlistentry>
305
306 <varlistentry id="libulockmgr">
307 <term><filename class="libraryfile">libulockmgr.so</filename></term>
308 <listitem>
309 <para>
310 contains the Userspace Lock Manager API functions.
311 </para>
312 <indexterm zone="fuse libulockmgr">
313 <primary sortas="c-libulockmgr">libulockmgr.so</primary>
314 </indexterm>
315 </listitem>
316 </varlistentry>
317 </variablelist>
318
319 </sect2>
320
321</sect1>
Note: See TracBrowser for help on using the repository browser.