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 days ago | |
---|---|---|
debian | 2 days ago | |
LICENSE | 4 years ago | |
Makefile | 4 days ago | |
README.adoc | 4 weeks ago | |
fusedisk | 4 days ago | |
fusefile.8 | 3 days ago | |
fusefile.c | 4 days ago | |
overlaytest.lsp | 10 months 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.