| Crates.io | unfusefs |
| lib.rs | unfusefs |
| version | 0.1.0 |
| created_at | 2026-01-03 12:06:49.439544+00 |
| updated_at | 2026-01-03 12:06:49.439544+00 |
| description | Split a file into chunks in a virtual filesystem |
| homepage | |
| repository | https://github.com/TheDcoder/UnFuseFS |
| max_upload_size | |
| id | 2019981 |
| size | 65,449 |
UnFuseFS is a simple FUSE implementation which divides the input file into equal-sized chunks, or to put it simply, it takes a file and cuts it up into multiple files in a virtual directory without taking any additional space on disk.
$ stat foobar
File: foobar
Size: 4000000000 Blocks: 0 IO Block: 4096 regular file
...
$ unfusefs foobar
Chunk Size: 1.9 GiB (2000000000 bytes)
Mounting "foobar" to "/tmp/split/foobar.split"
$ ls foobar.split
foobar.01 foobar.02
$ unfusefs --help # For more info
Use your usual Cargo commands or run ./build-release.sh to build a size-optimized release binary, you can also optionally set TARGET_PLATFORM for cross-compiliation.
NOTE: libfuse is not required since this project uses the fuser library to implement the FS in Rust entirely :)