Go to file
Miklos Szeredi 0e70aa7558 fix
2004-10-21 16:24:29 +00:00
doc fix 2004-09-02 18:13:57 +00:00
example cleanups + step minor version 2004-10-21 09:35:10 +00:00
include cleanups + step minor version 2004-10-21 09:35:10 +00:00
kernel fix 2004-10-19 22:01:21 +00:00
lib cleanups + step minor version 2004-10-21 09:35:10 +00:00
lufis patch by Luca Ferroni 2004-07-14 16:16:59 +00:00
patch fix 2004-04-05 11:24:24 +00:00
perl fix 2004-10-10 08:04:55 +00:00
python patch by Steven James 2004-09-27 17:07:10 +00:00
util fix FUSE mount under FUSE mount 2004-09-22 16:47:40 +00:00
.cvsignore optimize reading 2004-07-20 14:22:26 +00:00
AUTHORS change email address 2004-07-07 19:19:53 +00:00
BUGS permission checking implemented 2001-12-20 15:38:05 +00:00
ChangeLog fix 2004-10-21 16:24:29 +00:00
configure.in version 1.9 2004-10-14 13:33:39 +00:00
COPYING build with automake 2001-11-07 12:09:43 +00:00
COPYING.LIB version change + cleanups 2002-10-25 12:41:16 +00:00
FAQ fix 2004-10-19 22:01:21 +00:00
Filesystems fix 2004-10-19 22:01:21 +00:00
fuse.spec specfile fix 2003-06-02 06:12:27 +00:00
makeconf.sh build shared library 2004-06-03 13:21:08 +00:00
Makefile.am version 1.9 2004-10-14 13:33:39 +00:00
NEWS version 1.9 2004-10-14 13:33:39 +00:00
README fix 2004-10-19 22:01:21 +00:00
README-2.4 integrated 2.6 kernel support 2004-01-07 12:16:45 +00:00
README-2.6 integrated 2.6 kernel support 2004-01-07 12:16:45 +00:00
README.NFS fix 2004-01-26 11:28:44 +00:00

General Information
===================

FUSE (Filesystem in USErspace) is a simple interface for userspace
programs to export a virtual filesystem to the linux kernel.  FUSE
also aims to provide a secure method for non privileged users to
create and mount their own filesystem implementations.

You can download the source code releases from

  http://sourceforge.net/projects/fuse

or alternatively you can use CVS to get the very latest development
version by setting the cvsroot to

  :pserver:anonymous@cvs.sourceforge.net:/cvsroot/fuse

and checking out the 'fuse' module.

Installation
============

./configure
make
make install

Also see the file 'INSTALL'

How To Use
==========

FUSE is made up of three main parts:

 - A kernel filesystem module

 - A userspace library

 - A mount/unmount program


Here's how to create your very own virtual filesystem in five easy
steps (after installing FUSE):

  1) Edit the file example/fusexmp.c to do whatever you want...

  2) Build the fusexmp program

  3) run 'example/fusexmp /mnt/fuse -d'

  4) ls -al /mnt/fuse

  5) Be glad

If it doesn't work out, please ask!  Also see the file 'include/fuse.h' for
detailed documentation of the library interface.

Security
========

If you run 'make install', the fusermount program is installed
set-user-id to root.  This is done to allow normal users to mount
their own filesystem implementations. 

There must however be some limitations, in order to prevent Bad User from
doing nasty things.  Currently those limitations are:

  - The user can only mount on a mountpoint, for which it has write
    permission

  - The mountpoint is not a sticky directory which isn't owned by the
    user (like /tmp usually is)

  - No other user (including root) can access the contents of the mounted
    filesystem.