up vote 1 down vote favorite
1
share [g+] share [fb]

It's possible to mount a compressed archive in Linux as if it were a directory using tools like archivemount or gvfsd-mount, both of which depend on libarchive. This only works for "proper archives", though; collections of multiple files with a directory structure. Is there a way to mount single compressed files? In other words, mount a .bz2 as opposed to a .tar.bz2.

Previous discussions:

link|improve this question

53% accept rate
feedback

1 Answer

Why, yes there is, sort of. There's a FUSE filesystem called fuseflt that does almost what you want. Rather than mounting a single file, it mounts a directory. Within the mount, you can set up arbitrary filters. The documentation gives your specific example: mounting a directory full of zipped files so that they appear to be unzipped.

link|improve this answer
That looks promising, but I have yet to try it. – endolith Oct 16 '09 at 14:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.