From 30e8eb3e135291717eceaae69162fceb91d30aa1 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Thu, 11 Nov 2004 15:20:05 +0000 Subject: move perl python and lufis directories one level up --- python/README | 92 ----------------------------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 python/README (limited to 'python/README') diff --git a/python/README b/python/README deleted file mode 100644 index 2a3af2b..0000000 --- a/python/README +++ /dev/null @@ -1,92 +0,0 @@ -#@+leo-ver=4 -#@+node:@file README -#@@language - -Refer to the INSTALL file for build/install instructions - -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