mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 15:12:11 +08:00
45ab6c70c2
Remove "$LastChanged$" everywhere, and also some unused $Date$
289 lines
8.5 KiB
XML
289 lines
8.5 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY fuse2-download-http "https://github.com/libfuse/libfuse/releases/download/fuse-&fuse2-version;/fuse-&fuse2-version;.tar.gz">
|
|
<!ENTITY fuse2-download-ftp " ">
|
|
<!ENTITY fuse2-md5sum "9bd4ce8184745fd3d000ca2692adacdb">
|
|
<!ENTITY fuse2-size "646 KB">
|
|
<!ENTITY fuse2-buildsize "8.2 MB (9.8 MB with API documentation)">
|
|
<!ENTITY fuse2-time "0.1 SBU">
|
|
]>
|
|
|
|
<sect1 id="fuse2" xreflabel="Fuse-&fuse2-version;">
|
|
<?dbhtml filename="fuse2.html"?>
|
|
|
|
<sect1info>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>Fuse-&fuse2-version;</title>
|
|
|
|
<indexterm zone="fuse2">
|
|
<primary sortas="a-Fuse-2">Fuse 2</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to Fuse</title>
|
|
|
|
<para>
|
|
<application>FUSE</application> (Filesystem in Userspace) is a simple
|
|
interface for userspace programs to export a virtual filesystem to the
|
|
Linux kernel. <application>Fuse</application> also aims to provide a
|
|
secure method for non privileged users to create and mount their own
|
|
filesystem implementations.
|
|
</para>
|
|
|
|
<para>
|
|
This package is only installed for compatibility with
|
|
<xref linkend="gvfs"/>. It is not needed with other packages.
|
|
For full fuse functionality, install <xref linkend="fuse3"/> which
|
|
does not interfere with these instructions.
|
|
</para>
|
|
|
|
&lfs90_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&fuse2-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&fuse2-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &fuse2-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &fuse2-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &fuse2-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &fuse2-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">Fuse Dependencies</bridgehead>
|
|
|
|
<!-- What is this?
|
|
<bridgehead renderas="sect3">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="fuse3"/> (runtime only)
|
|
</para>
|
|
-->
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="doxygen"/> (to rebuild the API documentation)
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">
|
|
User Notes: <ulink url="&blfs-wiki;/fuse2"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="kernel" id="fuse2-kernel">
|
|
<title>Kernel Configuration</title>
|
|
|
|
<para>
|
|
Enable the following options in the kernel configuration and recompile the
|
|
kernel if necessary:
|
|
</para>
|
|
|
|
<screen><literal>File systems --->
|
|
<*/M> FUSE (Filesystem in Userspace) support [CONFIG_FUSE_FS]</literal></screen>
|
|
|
|
<indexterm zone="fuse2 fuse2-kernel">
|
|
<primary sortas="d-fuse2">Fuse 2</primary>
|
|
</indexterm>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of Fuse</title>
|
|
|
|
<para>
|
|
Install <application>Fuse</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr \
|
|
--disable-static \
|
|
--exec-prefix=/ &&
|
|
|
|
make &&
|
|
make DESTDIR=$PWD/Dest install</userinput></screen>
|
|
|
|
<para>
|
|
This package does not come with a test suite.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>install -vm755 Dest/lib/libfuse.so.&fuse2-version; /lib &&
|
|
install -vm755 Dest/lib/libulockmgr.so.1.0.1 /lib &&
|
|
ln -sfv ../../lib/libfuse.so.&fuse2-version; /usr/lib/libfuse.so &&
|
|
ln -sfv ../../lib/libulockmgr.so.1.0.1 /usr/lib/libulockmgr.so &&
|
|
|
|
install -vm644 Dest/lib/pkgconfig/fuse.pc /usr/lib/pkgconfig &&
|
|
|
|
install -vm4755 Dest/bin/fusermount /bin &&
|
|
install -vm755 Dest/bin/ulockmgr_server /bin &&
|
|
|
|
install -vm755 Dest/sbin/mount.fuse /sbin &&
|
|
|
|
install -vdm755 /usr/include/fuse &&
|
|
|
|
install -vm644 Dest/usr/include/*.h /usr/include &&
|
|
install -vm644 Dest/usr/include/fuse/*.h /usr/include/fuse/ &&
|
|
|
|
install -vm644 Dest/usr/share/man/man1/* /usr/share/man/man1 &&
|
|
/sbin/ldconfig -v</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
href="../../xincludes/static-libraries.xml"/>
|
|
|
|
<para>
|
|
<parameter>--exec-prefix=/</parameter>: This parameter moves programs and
|
|
libraries that could be needed before the
|
|
<filename class="directory">/usr</filename> directory is mounted, to the
|
|
root filesystem.
|
|
</para>
|
|
|
|
<para>
|
|
<command>make DESTDIR=$PWD/Dest install</command>: This command installs
|
|
the files to a temporary directory, so that the needed files can be
|
|
installed.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="configuration">
|
|
<title>Configuring fuse</title>
|
|
|
|
<sect3 id="fuse2-config">
|
|
<title>Config Files</title>
|
|
|
|
<para>
|
|
Information on configuring fuse can be found at
|
|
<xref linkend="fuse-configuration"/>.
|
|
</para>
|
|
|
|
</sect3>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directory</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
fusermount, mount.fuse, and ulockmgr_server
|
|
</seg>
|
|
<seg>
|
|
libfuse.so and libulockmgr.so
|
|
</seg>
|
|
<seg>
|
|
/usr/include/fuse
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="fusermount2">
|
|
<term><command>fusermount</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a suid root program to mount and unmount Fuse
|
|
filesystems.
|
|
</para>
|
|
<indexterm zone="fuse2 fusermount2">
|
|
<primary sortas="b-fusermount2">fusermount</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="mount.fuse2">
|
|
<term><command>mount.fuse</command></term>
|
|
<listitem>
|
|
<para>
|
|
is the command <command>mount</command> would call to mount a Fuse
|
|
filesystem.
|
|
</para>
|
|
<indexterm zone="fuse2 mount.fuse2">
|
|
<primary sortas="b-mount.fuse2">mount.fuse</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="ulockmgr_server2">
|
|
<term><command>ulockmgr_server</command></term>
|
|
<listitem>
|
|
<para>
|
|
is the Userspace Lock Manager Server for Fuse filesystems.
|
|
</para>
|
|
<indexterm zone="fuse2 ulockmgr_server2">
|
|
<primary sortas="b-ulockmgr_server2">ulockmgr_server</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libfuse2">
|
|
<term><filename class="libraryfile">libfuse.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the <application>FUSE</application> API functions.
|
|
</para>
|
|
<indexterm zone="fuse2 libfuse2">
|
|
<primary sortas="c-libfuse2">libfuse.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libulockmgr2">
|
|
<term><filename class="libraryfile">libulockmgr.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the Userspace Lock Manager API functions.
|
|
</para>
|
|
<indexterm zone="fuse2 libulockmgr2">
|
|
<primary sortas="c-libulockmgr2">libulockmgr.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|