source: postlfs/filesystems/fuse3.xml@ 81060947

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
Last change on this file since 81060947 was 81060947, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Internal clarifications of fuse versions

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

  • Property mode set to 100644
File size: 8.0 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 fuse3-download-http "https://github.com/libfuse/libfuse/releases/download/fuse-&fuse3-version;/fuse3-&fuse3-version;.tar.gz">
8 <!ENTITY fuse3-download-ftp " ">
9 <!ENTITY fuse3-md5sum "d4d8bc7aa8202e4fca1ad47ff844206f">
10 <!ENTITY fuse3-size "732 KB">
11 <!ENTITY fuse3-buildsize "11 MB">
12 <!ENTITY fuse3-time "0.2 SBU">
13]>
14
15<sect1 id="fuse3" xreflabel="Fuse-&fuse3-version;">
16 <?dbhtml filename="fuse.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Fuse-&fuse3-version;</title>
24
25 <indexterm zone="fuse3">
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 &lfs80_checked;
41
42 <bridgehead renderas="sect3">Package Information</bridgehead>
43 <itemizedlist spacing="compact">
44 <listitem>
45 <para>
46 Download (HTTP): <ulink url="&fuse3-download-http;"/>
47 </para>
48 </listitem>
49 <listitem>
50 <para>
51 Download (FTP): <ulink url="&fuse3-download-ftp;"/>
52 </para>
53 </listitem>
54 <listitem>
55 <para>
56 Download MD5 sum: &fuse3-md5sum;
57 </para>
58 </listitem>
59 <listitem>
60 <para>
61 Download size: &fuse3-size;
62 </para>
63 </listitem>
64 <listitem>
65 <para>
66 Estimated disk space required: &fuse3-buildsize;
67 </para>
68 </listitem>
69 <listitem>
70 <para>
71 Estimated build time: &fuse3-time;
72 </para>
73 </listitem>
74 </itemizedlist>
75
76<!--
77 <bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
78-->
79<!-- HTML documentation is prebuilt now, dox/Doxyfile appares not to work
80 <bridgehead renderas="sect4">Optional</bridgehead>
81 <para role="optional">
82 <xref linkend="doxygen"/> (to build the API documentation)
83 </para>
84-->
85 <para condition="html" role="usernotes">
86 User Notes: <ulink url="&blfs-wiki;/fuse"/>
87 </para>
88 </sect2>
89
90 <sect2 role="kernel" id="fuse-kernel">
91 <title>Kernel Configuration</title>
92
93 <para>
94 Enable the following options in the kernel configuration and recompile the
95 kernel if necessary:
96 </para>
97
98<screen><literal>File systems ---&gt;
99 &lt;*/M&gt; FUSE (Filesystem in Userspace) support [CONFIG_FUSE_FS]</literal></screen>
100
101 <indexterm zone="fuse3 fuse-kernel">
102 <primary sortas="d-fuse3">fuse</primary>
103 </indexterm>
104 </sect2>
105
106 <sect2 role="installation">
107 <title>Installation of Fuse</title>
108
109 <para>
110 Install <application>Fuse</application> by running the following
111 commands:
112 </para>
113
114<screen><userinput>./configure --prefix=/usr \
115 --disable-static \
116 --exec-prefix=/ \
117 INIT_D_PATH=/tmp/init.d &amp;&amp;
118make</userinput></screen>
119
120<!-- <para>
121 If you have <xref linkend="doxygen"/> installed and wish to build the API
122 documentation, issue <command>doxygen doc/Doxyfile</command>.
123 </para> -->
124
125 <para>
126 This package does not come with a test suite.
127 </para>
128
129 <para>
130 Now, as the <systemitem class="username">root</systemitem> user:
131 </para>
132
133<screen role="root"><userinput>make install &amp;&amp;
134
135rm -rf /tmp/init.d &amp;&amp;
136install -v -m755 -d /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
137install -v -m644 doc/{README.NFS,kernel.txt} \
138 /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
139cp -Rv doc/html /usr/share/doc/fuse-&fuse3-version;</userinput></screen>
140
141<!--
142 <para>
143 If you built the API documentation, install it as the
144 <systemitem class="username">root</systemitem> user by issuing the
145 following commands:
146 </para>
147
148<screen role="root"><userinput>install -v -m755 -d /usr/share/doc/fuse-&fuse-version;/api &amp;&amp;
149install -v -m644 doc/html/* \
150 /usr/share/doc/fuse-&fuse-version;/api</userinput></screen>
151-->
152 </sect2>
153
154 <sect2 role="commands">
155 <title>Command Explanations</title>
156
157 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
158 href="../../xincludes/static-libraries.xml"/>
159
160 <para>
161 <parameter>--exec-prefix=/</parameter>: This parameter moves programs and
162 libraries that could be needed before the
163 <filename class="directory">/usr</filename> directory is mounted, to the
164 root filesystem.
165 </para>
166
167 <para>
168 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs
169 the bootscript into <filename class="directory">/tmp/init.d</filename> as
170 a bootscript is not required.
171 </para>
172
173 <para>
174 <command>rm -rf /tmp/init.d</command>: This removes the unneeded
175 bootscript.
176 </para>
177
178 </sect2>
179
180 <sect2 role="configuration" id="fuse-configuration">
181 <title>Configuring fuse</title>
182
183 <sect3 id="fuse-config">
184 <title>Config Files</title>
185
186 <para>
187 Some options regarding mount policy can be set in the file
188 <filename>/etc/fuse.conf</filename>. To install the file run the
189 following command as the <systemitem class="username">root</systemitem>
190 user:
191 </para>
192
193<screen role="root"><userinput>cat &gt; /etc/fuse.conf &lt;&lt; "EOF"
194# Set the maximum number of FUSE mounts allowed to non-root users.
195# The default is 1000.
196#
197#mount_max = 1000
198
199# Allow non-root users to specify the 'allow_other' or 'allow_root'
200# mount options.
201#
202#user_allow_other
203EOF</userinput></screen>
204
205 <para>
206 Additional information about the meaning of the configuration
207 options are found in the man page.
208 </para>
209
210 </sect3>
211
212 </sect2>
213
214 <sect2 role="content">
215 <title>Contents</title>
216
217 <segmentedlist>
218 <segtitle>Installed Programs</segtitle>
219 <segtitle>Installed Libraries</segtitle>
220 <segtitle>Installed Directory</segtitle>
221
222 <seglistitem>
223 <seg>
224 fusermount3, mount.fuse3
225 </seg>
226 <seg>
227 libfuse3.so
228 </seg>
229 <seg>
230 /usr/include/fuse3 and /usr/share/doc/fuse-&fuse3-version;
231 </seg>
232 </seglistitem>
233 </segmentedlist>
234
235 <variablelist>
236 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
237 <?dbfo list-presentation="list"?>
238 <?dbhtml list-presentation="table"?>
239
240 <varlistentry id="fusermount3">
241 <term><command>fusermount3</command></term>
242 <listitem>
243 <para>
244 is a set users ID root program to mount and unmount Fuse
245 filesystems.
246 </para>
247 <indexterm zone="fuse3 fusermount3">
248 <primary sortas="b-fusermount3">fusermount3</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="mount.fuse3">
254 <term><command>mount.fuse3</command></term>
255 <listitem>
256 <para>
257 is the command <command>mount</command> would call to mount a Fuse
258 filesystem.
259 </para>
260 <indexterm zone="fuse3 mount.fuse3">
261 <primary sortas="b-mount.fuse3">mount.fuse3</primary>
262 </indexterm>
263 </listitem>
264 </varlistentry>
265
266 <varlistentry id="libfuse3">
267 <term><filename class="libraryfile">libfuse3.so</filename></term>
268 <listitem>
269 <para>
270 contains the <application>FUSE</application> API functions.
271 </para>
272 <indexterm zone="fuse3 libfuse3">
273 <primary sortas="c-libfuse3">libfuse3.so</primary>
274 </indexterm>
275 </listitem>
276 </varlistentry>
277
278 </variablelist>
279
280 </sect2>
281
282</sect1>
Note: See TracBrowser for help on using the repository browser.