encfs over sshfs on Linux Mint 10
With standard config you get:
fusermount: bad mount point /folder/name: Permission denied
Uncomment user_allow_other from /etc/fuse.conf, and add user to fuse(get read access to /etc/fuse.conf):
1 2 | sudo nano /etc/fuse.conf sudo adduser your_username fuse |
Log out, and log back in. Check that you've got added to fuse:
1 | id | grep fuse |
Mount:
1 2 | sshfs -oallow_other host:/folder/to/mount /mountpoint encfs /folder/to/encrypted /mountpoint/decrypted |
Tags: encfs, linux mint, sshfs
May 7th, 2011 at 09:58
A better option might be using NFS over a SSH tunnel, since sshfs doesnt support hard links.