You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
debian | 2 months ago | |
.gitweb | 4 months ago | |
LICENSE | 5 years ago | |
Makefile | 6 months ago | |
README.adoc | 7 months ago | |
fusedisk | 7 months ago | |
fusefile.8 | 4 months ago | |
fusefile.c | 4 months ago | |
overlaytest.lsp | 1 year ago |
README.adoc
fusefile
This project implements a "fuse" device to mount a concatenation of fragments of one or more files as a single file.
The fused file allows writing to fragments (without changing their sizes); of course only for writable fragment files. The fused file may be set up with an overlay file to capture changes instead of writing the underlying fragment files.
This is a usage example to set up a fused file C consisting of files A and B:
$ fusefile C A B
This is an example of tearing down a fused file C:
$ fusermount -u C
See the man page for usage details and some more examples.