opcoder0 / zmount

Fuse filesystem for compressed files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zmount

A Fuse filesystem for compressed files. The tool currently supports Zip files in read-only mode.

Usage

  -m string
        directory to mount compressed file
  -o string
        mount option values are comma separated combination of [r,w,f] (default "r")
  -stop
        stop and unmount
  -z string
        path to compressed file

Usage examples

To mount zip file in read-only mode

The command runs as a daemon. Path to trace/debug logs under /tmp/ look for /tmp/zmount*.log

zmount -m /path/to/mount/dir -z /path/to/zip/file

To unmount and stop the daemon

zmount -m /path/to/mount/dir -stop

To mount zip file in read-only mode and run in forground

zmount -m /path/to/mount/dir -z /path/to/zip/file -o r,f

Press ctrl-c to stop the process. Or send SIGINT to unmount and exit.

Work In Progress

  • Work in progress to support writes / updates

About

Fuse filesystem for compressed files

License:Apache License 2.0


Languages

Language:Go 99.8%Language:Makefile 0.2%