Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/sandrain/fuse-xattrfs
- Owner: sandrain
- License: gpl-3.0
- Created: 2015-10-29T00:56:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-29T01:06:45.000Z (about 9 years ago)
- Last Synced: 2023-02-27T04:37:42.337Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
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
```