cryptomator/cli

Feature request: add support for mounting FUSE instead of WebDAV

pongnguy opened this issue · 2 comments

The current GUI client gives the option of mounting locally as FUSE or WebDAV. However, the CLI only supports WebDAV. I have found FUSE to be almost pain-free, whereas WebDAV is tricky to set up. Any plans to add FUSE mount from CLI, or enabling mounting as FUSE from fstab? This would greatly streamline interacting with encrypted files programmatically.

Fuse is supported since #33, it is just not yet documented 😅

Here you can see a usage example:

java -jar cryptomator-cli.jar \
  --vault demoVault=/home/julian/Downloads/Demo \
  --password demoVault=asdasdasd \
  --fusemount demoVault=/home/julian/Downloads/mount

Duplicate of #25