This package collects some useful data structures for fuse development
- wrapperfs.cpp: a simple fuse file system that run on top of existing file systems. It can be used as a start point to evaluate file system designs.
Dependencies:
- FUSE >= 2.8
- g++ >= 4.7.2
It should work on all FUSE-supported platforms (e.g., Linux, MacOSX and FreeBSD), but it has only been tested on Ubuntu 13.04 and OSX (10.8).
Install dependencies on Ubuntu
$ sudo apt-get install libfuse-dev g++
Build the source code:
$ ./bootstrap
$ ./configure
$ make
Lei Xu [email protected]