source: postlfs/filesystems/fuse3.xml@ 96a09fb8

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 96a09fb8 was 96a09fb8, checked in by Douglas R. Reno <renodr@…>, 7 years ago

Update to yaml-0.1.7
Tags and various fixes before I start GNOME

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19081 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 &lfs81_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 <bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="doxygen"/> (to rebuild the API documentation)
80 </para>
81
82 <para condition="html" role="usernotes">
83 User Notes: <ulink url="&blfs-wiki;/fuse"/>
84 </para>
85 </sect2>
86
87 <sect2 role="kernel" id="fuse-kernel">
88 <title>Kernel Configuration</title>
89
90 <para>
91 Enable the following options in the kernel configuration and recompile the
92 kernel if necessary:
93 </para>
94
95<screen><literal>File systems ---&gt;
96 &lt;*/M&gt; FUSE (Filesystem in Userspace) support [CONFIG_FUSE_FS]</literal></screen>
97
98 <indexterm zone="fuse3 fuse-kernel">
99 <primary sortas="d-fuse3">fuse</primary>
100 </indexterm>
101 </sect2>
102
103 <sect2 role="installation">
104 <title>Installation of Fuse</title>
105
106 <para>
107 Install <application>Fuse</application> by running the following
108 commands:
109 </para>
110
111<screen><userinput>./configure --prefix=/usr \
112 --disable-static \
113 --exec-prefix=/ \
114 --with-pkgconfigdir=/usr/lib/pkgconfig \
115 INIT_D_PATH=/tmp/init.d &amp;&amp;
116make</userinput></screen>
117
118 <para>
119 The API documentation is included in the package, but
120 if you have <xref linkend="doxygen"/> installed and wish to rebuild
121 it, issue <command>doxygen doc/Doxyfile</command>.
122 </para>
123
124 <para>
125 This package does not come with a test suite.
126 </para>
127
128 <para>
129 Now, as the <systemitem class="username">root</systemitem> user:
130 </para>
131
132<screen role="root"><userinput>make install &amp;&amp;
133rm -v /lib/libfuse3.{so,la} &amp;&amp;
134ln -sfv ../../lib/libfuse3.so.3 /usr/lib/libfuse3.so &amp;&amp;
135
136rm -rf /tmp/init.d &amp;&amp;
137
138install -v -m755 -d /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
139install -v -m644 doc/{README.NFS,kernel.txt} \
140 /usr/share/doc/fuse-&fuse3-version; &amp;&amp;
141cp -Rv doc/html /usr/share/doc/fuse-&fuse3-version;</userinput></screen>
142
143 </sect2>
144
145 <sect2 role="commands">
146 <title>Command Explanations</title>
147
148 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
149 href="../../xincludes/static-libraries.xml"/>
150
151 <para>
152 <parameter>--exec-prefix=/</parameter>: This parameter moves programs and
153 libraries that could be needed before the
154 <filename class="directory">/usr</filename> directory is mounted, to the
155 root filesystem.
156 </para>
157
158 <para>
159 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter installs
160 the bootscript into <filename class="directory">/tmp/init.d</filename> as
161 a bootscript is not required.
162 </para>
163
164 <para>
165 <command>rm -rf /tmp/init.d</command>: This removes the unneeded
166 bootscript.
167 </para>
168
169 </sect2>
170
171 <sect2 role="configuration" id="fuse-configuration">
172 <title>Configuring fuse</title>
173
174 <sect3 id="fuse-config">
175 <title>Config Files</title>
176
177 <para>
178 Some options regarding mount policy can be set in the file
179 <filename>/etc/fuse.conf</filename>. To install the file run the
180 following command as the <systemitem class="username">root</systemitem>
181 user:
182 </para>
183
184<screen role="root"><userinput>cat &gt; /etc/fuse.conf &lt;&lt; "EOF"
185# Set the maximum number of FUSE mounts allowed to non-root users.
186# The default is 1000.
187#
188#mount_max = 1000
189
190# Allow non-root users to specify the 'allow_other' or 'allow_root'
191# mount options.
192#
193#user_allow_other
194EOF</userinput></screen>
195
196 <para>
197 Additional information about the meaning of the configuration
198 options are found in the man page.
199 </para>
200
201 </sect3>
202
203 </sect2>
204
205 <sect2 role="content">
206 <title>Contents</title>
207
208 <segmentedlist>
209 <segtitle>Installed Programs</segtitle>
210 <segtitle>Installed Libraries</segtitle>
211 <segtitle>Installed Directory</segtitle>
212
213 <seglistitem>
214 <seg>
215 fusermount3, mount.fuse3
216 </seg>
217 <seg>
218 libfuse3.so
219 </seg>
220 <seg>
221 /usr/include/fuse3 and /usr/share/doc/fuse-&fuse3-version;
222 </seg>
223 </seglistitem>
224 </segmentedlist>
225
226 <variablelist>
227 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
228 <?dbfo list-presentation="list"?>
229 <?dbhtml list-presentation="table"?>
230
231 <varlistentry id="fusermount3">
232 <term><command>fusermount3</command></term>
233 <listitem>
234 <para>
235 is a set users ID root program to mount and unmount Fuse
236 filesystems.
237 </para>
238 <indexterm zone="fuse3 fusermount3">
239 <primary sortas="b-fusermount3">fusermount3</primary>
240 </indexterm>
241 </listitem>
242 </varlistentry>
243
244 <varlistentry id="mount.fuse3">
245 <term><command>mount.fuse3</command></term>
246 <listitem>
247 <para>
248 is the command <command>mount</command> would call to mount a Fuse
249 filesystem.
250 </para>
251 <indexterm zone="fuse3 mount.fuse3">
252 <primary sortas="b-mount.fuse3">mount.fuse3</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
256
257 <varlistentry id="libfuse3">
258 <term><filename class="libraryfile">libfuse3.so</filename></term>
259 <listitem>
260 <para>
261 contains the <application>FUSE</application> API functions.
262 </para>
263 <indexterm zone="fuse3 libfuse3">
264 <primary sortas="c-libfuse3">libfuse3.so</primary>
265 </indexterm>
266 </listitem>
267 </varlistentry>
268
269 </variablelist>
270
271 </sect2>
272
273</sect1>
Note: See TracBrowser for help on using the repository browser.