From ba8ec88e0e194f2dc5928b043ee8a5a2d338afe9 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 21 Dec 2001 09:28:33 +0000 Subject: minor fixes --- README.python | 60 ----------------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 README.python (limited to 'README.python') diff --git a/README.python b/README.python deleted file mode 100644 index 451c56c..0000000 --- a/README.python +++ /dev/null @@ -1,60 +0,0 @@ -General Information -=================== - -This is a Python[1] interface to FUSE[2]. - -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. - -When run from the commandline, "fuse.py" simply reexports the root -filesystem within the mount point as example/fusexmp does in the main -FUSE distribution. It also offers a class, fuse.Fuse, which can be -subclassed to create a filesystem. fuse.Xmp is the example filesystem -implementation. - -In your subclass of fuse, add attributes with the expected names -("getattr", "readlink", etc) and call signatures (refer to fuse.Xmp) -then call main(). Make it runnable as a #! script, and mount with - fusermount