cryptomator / cli

Cryptomator Command-Line Interface
GNU Affero General Public License v3.0
278 stars 40 forks source link

Feature request: add support for mounting FUSE instead of WebDAV #64

Closed pongnguy closed 2 months ago

pongnguy commented 2 months ago

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.

SailReal commented 2 months ago

Fuse is supported since https://github.com/cryptomator/cli/pull/33, it is just not yet documented :sweat_smile:

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
SailReal commented 2 months ago

Duplicate of #25