ntapfuse is a FUSE filesystem that mirrors a directory.
The following packages need to be installed using
$ sudo apt-get install <pkg-name>
- fuse
- libfuse-dev
In order to build and install ntapfuse, run the following commands from the src directory:
$ autoreconf --install
$ ./configure
$ make
$ sudo make install
The filesystem can be mounted with the following command:
$ ntapfuse mount <basedir> <mountpoint>
The basedir is the directory that is being mirrored. The mountpoint is the directory that will act as a normal linux filesystem.
The filesystem can be unmounted with the following command:
$ sudo umount <mountpoint>