source: postlfs/filesystems/fuse.xml@ ee000c3d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since ee000c3d was ee000c3d, checked in by Andrew Benton <andy@…>, 12 years ago

Added Fuse and Sshfs Fuse

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

  • Property mode set to 100644
File size: 6.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 fuse-download-http
8 "&sourceforge-repo;/fuse/fuse-&fuse-version;.tar.gz">
9 <!ENTITY fuse-download-ftp " ">
10 <!ENTITY fuse-md5sum "894ee11674f89a915ae87524aed55bc4">
11 <!ENTITY fuse-size "548 KB">
12 <!ENTITY fuse-buildsize "8.2 MB">
13 <!ENTITY fuse-time "0.1 SBU">
14]>
15
16<sect1 id="fuse" xreflabel="fuse-&fuse-version;">
17 <?dbhtml filename="fuse.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>fuse-&fuse-version;</title>
25
26 <indexterm zone="fuse">
27 <primary sortas="a-fuse">fuse</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Fuse</title>
32
33 <para>
34 <application>FUSE</application> (Filesystem in Userspace) is a simple
35 interface for userspace programs to export a virtual filesystem to the
36 Linux kernel. <application>Fuse</application> also aims to provide a
37 secure method for non privileged users to create and mount their own
38 filesystem implementations.
39 </para>
40
41 &lfs71_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&fuse-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&fuse-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &fuse-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &fuse-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &fuse-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &fuse-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <para condition="html" role="usernotes">
78 User Notes: <ulink url="&blfs-wiki;/fuse"/>
79 </para>
80 </sect2>
81
82 <sect2 role="kernel" id="fuse-kernel">
83 <title>Kernel Configuration</title>
84
85 <para>
86 Enable the following options in the kernel configuration and recompile the
87 kernel if necessary:
88 </para>
89
90<screen><literal>File systems ---&gt;
91 [*] FUSE (Filesystem in Userspace) support</literal></screen>
92
93 <indexterm zone="fuse fuse-kernel">
94 <primary sortas="d-fuse">fuse</primary>
95 </indexterm>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of Fuse</title>
100
101 <para>
102 Install <application>Fuse</application> by running the following
103 commands:
104 </para>
105
106<screen><userinput>./configure --prefix=/usr INIT_D_PATH=/tmp/init.d &amp;&amp;
107make</userinput></screen>
108
109 <para>
110 This package does not come with a test suite.
111 </para>
112
113 <para>
114 Now, as the <systemitem class="username">root</systemitem> user:
115 </para>
116
117<screen role="root"><userinput>make install &amp;&amp;
118rm -rf /tmp/init.d</userinput></screen>
119 </sect2>
120
121 <sect2 role="commands">
122 <title>Command Explanations</title>
123
124 <para>
125 <parameter>INIT_D_PATH=/tmp/init.d</parameter>: This parameter makes it
126 install its bootscript into /tmp/init.d.
127 </para>
128
129 <para>
130 <command>rm -rf /tmp/init.d</command>: This removes the unneeded
131 bootscript.
132 </para>
133 </sect2>
134
135 <sect2 role="content">
136 <title>Contents</title>
137
138 <segmentedlist>
139 <segtitle>Installed Programs</segtitle>
140 <segtitle>Installed Libraries</segtitle>
141 <segtitle>Installed Directory</segtitle>
142
143 <seglistitem>
144 <seg>
145 fusermount,
146 mount.fuse and
147 ulockmgr_server.
148 </seg>
149 <seg>
150 libfuse.so and
151 libulockmgr.so.
152 </seg>
153 <seg>/usr/include/fuse.</seg>
154 </seglistitem>
155 </segmentedlist>
156
157 <variablelist>
158 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
159 <?dbfo list-presentation="list"?>
160 <?dbhtml list-presentation="table"?>
161
162 <varlistentry id="fusermount">
163 <term><command>fusermount</command></term>
164 <listitem>
165 <para>
166 is a set users ID root program to mount and unmount Fuse
167 filesystems.
168 </para>
169 <indexterm zone="fuse fusermount">
170 <primary sortas="b-fusermount">fusermount</primary>
171 </indexterm>
172 </listitem>
173 </varlistentry>
174
175 <varlistentry id="mount.fuse">
176 <term><command>mount.fuse</command></term>
177 <listitem>
178 <para>
179 is the command <command>mount</command> would call to mount a Fuse
180 filesystem.
181 </para>
182 <indexterm zone="fuse mount.fuse">
183 <primary sortas="b-mount.fuse">mount.fuse</primary>
184 </indexterm>
185 </listitem>
186 </varlistentry>
187
188 <varlistentry id="ulockmgr_server">
189 <term><command>ulockmgr_server</command></term>
190 <listitem>
191 <para>
192 is the Userspace Lock Manager Server for Fuse filesystems.
193 </para>
194 <indexterm zone="fuse ulockmgr_server">
195 <primary sortas="b-ulockmgr_server">ulockmgr_server</primary>
196 </indexterm>
197 </listitem>
198 </varlistentry>
199
200 <varlistentry id="libfuse">
201 <term><filename class="libraryfile">libfuse.so</filename></term>
202 <listitem>
203 <para>
204 contains the Fuse API functions.
205 </para>
206 <indexterm zone="fuse libfuse">
207 <primary sortas="c-libfuse">libfuse.so</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="libulockmgr">
213 <term><filename class="libraryfile">libulockmgr.so</filename></term>
214 <listitem>
215 <para>
216 contains the Userspace Lock Manager API functions.
217 </para>
218 <indexterm zone="fuse libulockmgr">
219 <primary sortas="c-libulockmgr">libulockmgr.so</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223 </variablelist>
224 </sect2>
225</sect1>
Note: See TracBrowser for help on using the repository browser.