Skip to content

Oliviers-OSS/fuse_xattrs

 
 

Repository files navigation

Build Status

Abstract

This filesystem provides xattr support using sidecar files.

Original latest version

The original latest version and more information can be found on http://github.com/fbarriga/fuse_xattrs

How to mount a filesystem

Once fuse_xattrs is installed (see next section) running it is very simple:

fuse_xattrs source_directory mountpoint

To unmount the filesystem:

fusermount -u mountpoint

Distribution packages

Archlinux (https://aur.archlinux.org/packages/fuse_xattrs/):

yaourt -S fuse_xattrs

Original building (using cmake)

First you need to download FUSE 2.9 or later from http://github.com/libfuse/libfuse.

mkdir build && cd build
cmake ..
make

Building this release (using autotools)

First you need to download FUSE 2.9 or later from http://github.com/libfuse/libfuse or install the Fuse developers package of your distribution

./autogen.sh && ./configure && make

Original Code Coverage

mkdir build && cd build
cmake -DENABLE_CODECOVERAGE=1 -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_BUILD_TYPE=Debug ..
make
make fuse_xattrs_coverage

Installing

make install

Links

About

add xattrs support using sidecar files.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 53.8%
  • C++ 13.7%
  • Python 13.3%
  • CMake 12.2%
  • M4 3.7%
  • Makefile 1.6%
  • Other 1.7%