e2ee57e0589394dcd08f0c902434d022d14abbb5
[rrq/fuse_xattrs.git] / README.md
1 [![Build Status](https://travis-ci.org/fbarriga/fuse_xattrs.svg?branch=travis)](https://travis-ci.org/fbarriga/fuse_xattrs)
2
3 ## Abstract
4
5 This filesystem provides xattr support using sidecar files.
6
7 ## Latest version
8
9 The latest version and more information can be found on
10 http://github.com/fbarriga/fuse_xattrs
11
12
13 ## How to mount a filesystem
14
15 Once fuse_xattrs is installed (see next section) running it is very simple:
16
17     fuse_xattrs mountpoint
18
19 To unmount the filesystem:
20
21     fusermount -u mountpoint
22
23
24 ## Building
25
26 First you need to download FUSE 2.9 or later from
27 http://github.com/libfuse/libfuse.
28
29     mkdir build && cd build
30     cmake ..
31     make
32
33 ## Code Coverage
34
35     mkdir build && cd build
36     cmake -DENABLE_CODECOVERAGE=1 -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_BUILD_TYPE=Debug ..
37     make
38     make fuse_xattrs_coverage
39
40 ## Installing
41
42     make install
43
44 ## Links
45
46 - http://man7.org/linux/man-pages/man2/setxattr.2.html
47 - http://man7.org/linux/man-pages/man2/listxattr.2.html
48 - http://man7.org/linux/man-pages/man2/getxattr.2.html
49 - http://man7.org/linux/man-pages/man3/errno.3.html
50 - https://www.freedesktop.org/wiki/CommonExtendedAttributes/