Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sandrain/fuse-xattrfs

A simple FUSE file system, which stores extended attributes in SQLite.
https://github.com/sandrain/fuse-xattrfs

Last synced: 3 days ago
JSON representation

A simple FUSE file system, which stores extended attributes in SQLite.

Awesome Lists containing this project

README

        

# xattrfs #

A simple FUSE file system, which stores extended attributes in SQLite database. All other file operations are delivered to the underlying base file system.

## Prerequisites ##

* Linux (not tested on other platforms)
* FUSE (fuse-devel)
* SQLite (sqlite3-devel)

## Install ##

```
$ ./autogen.sh
$ ./configure --prefix=/any/dir/you/want
$ make
$ make install
```

It only generates a single executable (xattrfs).

## Usage ##

```
$ xattrfs -h
Usage: xattrfs [OPTIONS].. b:

options:
-d, --debug Enable debug mode
-h, --help This help message

$ xattrfs b:/source /dest
```