source: postlfs/filesystems/fuse3.xml@ 26bb7e15

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 26bb7e15 was 26bb7e15, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to fuse3-3.1.1.
Update to nss-3.32.
Update to soundtouch-2.0.0.
Update to php-7.1.8.

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

  • Property mode set to 100644
File size: 7.8 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;/fuse-&fuse3-version;.tar.gz">
8 <!ENTITY fuse3-download-ftp " ">
9 <!ENTITY fuse3-md5sum "20b10f24b825062c1db9a21a35157f97">
10 <!ENTITY fuse3-size "804 KB">
11 <!ENTITY fuse3-buildsize "8.5 MB">
12 <!ENTITY fuse3-time "0.1 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 &gcc7_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&fuse3-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&fuse3-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &fuse3-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &fuse3-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &fuse3-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &fuse3-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
78 <bridgehead renderas="sect4">Optional</bridgehead>
79 <para role="optional">
80 <xref linkend="doxygen"/> (to rebuild 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="fuse3 fuse-kernel">
100 <primary sortas="d-fuse3">fuse</primary>
101 </indexterm>
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of Fuse</title>
106
107 <para>
108 Install <application>Fuse</application> by running the following
109 commands:
110 </para>
111
112<screen><userinput>./configure --prefix=/usr \
113 --disable-static \
114 --exec-prefix=/ \
115 --with-pkgconfigdir=/usr/lib/pkgconfig \
116 INIT_D_PATH=/tmp/init.d &amp;&amp;
117make</userinput></screen>
118
119 <para>
120 The API documentation is included in the package, but
121 if you have <xref linkend="doxygen"/> installed and wish to rebuild
122 it, 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;
134rm -v /lib/libfuse3.{so,la} &amp;&amp;
135ln -sfv ../../lib/libfuse3.so.3 /usr/lib/libfuse3.so &amp;&amp;
136
137rm -rf /tmp/init.d &amp;&amp;
138
139install -v -m755 -d /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
140install -v -m644 doc/{README.NFS,kernel.txt} \
141 /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
142cp -Rv doc/html /usr/share/doc/fuse-&fuse3-version;</userinput></screen>
143
144 </sect2>
145
146 <sect2 role="commands">
147 <title>Command Explanations</title>
148
149 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
150 href="../../xincludes/static-libraries.xml"/>
151
152 <para>
153 <parameter>--exec-prefix=/</parameter>: This parameter moves programs and
154 libraries that could be needed before the
155 <filename class="directory">/usr</filename> directory is mounted, to the
156 root filesystem.
157 </para>
158
159 <para>
160 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs
161 the bootscript into <filename class="directory">/tmp/init.d</filename> as
162 a bootscript is not required.
163 </para>
164
165 <para>
166 <command>rm -rf /tmp/init.d</command>: This removes the unneeded
167 bootscript.
168 </para>
169
170 </sect2>
171
172 <sect2 role="configuration" id="fuse-configuration">
173 <title>Configuring fuse</title>
174
175 <sect3 id="fuse-config">
176 <title>Config Files</title>
177
178 <para>
179 Some options regarding mount policy can be set in the file
180 <filename>/etc/fuse.conf</filename>. To install the file run the
181 following command as the <systemitem class="username">root</systemitem>
182 user:
183 </para>
184
185<screen role="root"><userinput>cat &gt; /etc/fuse.conf &lt;&lt; "EOF"
186# Set the maximum number of FUSE mounts allowed to non-root users.
187# The default is 1000.
188#
189#mount_max = 1000
190
191# Allow non-root users to specify the 'allow_other' or 'allow_root'
192# mount options.
193#
194#user_allow_other
195EOF</userinput></screen>
196
197 <para>
198 Additional information about the meaning of the configuration
199 options are found in the man page.
200 </para>
201
202 </sect3>
203
204 </sect2>
205
206 <sect2 role="content">
207 <title>Contents</title>
208
209 <segmentedlist>
210 <segtitle>Installed Programs</segtitle>
211 <segtitle>Installed Libraries</segtitle>
212 <segtitle>Installed Directory</segtitle>
213
214 <seglistitem>
215 <seg>
216 fusermount3, mount.fuse3
217 </seg>
218 <seg>
219 libfuse3.so
220 </seg>
221 <seg>
222 /usr/include/fuse3 and /usr/share/doc/fuse-&fuse3-version;
223 </seg>
224 </seglistitem>
225 </segmentedlist>
226
227 <variablelist>
228 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
229 <?dbfo list-presentation="list"?>
230 <?dbhtml list-presentation="table"?>
231
232 <varlistentry id="fusermount3">
233 <term><command>fusermount3</command></term>
234 <listitem>
235 <para>
236 is a set users ID root program to mount and unmount Fuse
237 filesystems.
238 </para>
239 <indexterm zone="fuse3 fusermount3">
240 <primary sortas="b-fusermount3">fusermount3</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 <varlistentry id="mount.fuse3">
246 <term><command>mount.fuse3</command></term>
247 <listitem>
248 <para>
249 is the command <command>mount</command> would call to mount a Fuse
250 filesystem.
251 </para>
252 <indexterm zone="fuse3 mount.fuse3">
253 <primary sortas="b-mount.fuse3">mount.fuse3</primary>
254 </indexterm>
255 </listitem>
256 </varlistentry>
257
258 <varlistentry id="libfuse3">
259 <term><filename class="libraryfile">libfuse3.so</filename></term>
260 <listitem>
261 <para>
262 contains the <application>FUSE</application> API functions.
263 </para>
264 <indexterm zone="fuse3 libfuse3">
265 <primary sortas="c-libfuse3">libfuse3.so</primary>
266 </indexterm>
267 </listitem>
268 </varlistentry>
269
270 </variablelist>
271
272 </sect2>
273
274</sect1>
Note: See TracBrowser for help on using the repository browser.