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 182e1555fb
version change for bookworm-backports
2 months ago
debian version change for bookworm-backports 2 months ago
.gitweb added for the view at "git.rrq.au" 4 months ago
LICENSE Add LICENSE 5 years ago
Makefile deleted fusefile-olydump.c 6 months ago
README.adoc editorial 7 months ago
fusedisk added helper script for block device mounting 7 months ago
fusefile.8 Merge branch 'wip/stacked-overlay' 4 months ago
fusefile.c bug fix for trailing slash variant 4 months ago
overlaytest.lsp test program 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.