fusefile is FUSE file mount that presents a series of fragments of other files as a single, contiguous file.
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.
 
 
 
 
 
Ralph Rönnquist e46d32a7a6
version bump
2 days ago
debian version bump 2 days ago
LICENSE Add LICENSE 4 years ago
Makefile added fusedisk to package 4 days ago
README.adoc editorial 4 weeks ago
fusedisk added helper script for block device mounting 4 days ago
fusefile.8 editorial improvments and polishing 3 days ago
fusefile.c spelling 4 days ago
overlaytest.lsp test program 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.