Posts with the tag MacFUSE
Transparently Encrypt Folders with encfs
EncFS (on Wikipedia) – a FUSE filesystem – can help encrypt cloud synced folders (using business proof AES or Blowfish algorithms). It operates on smaller blocks (not a single big file) and thus works well with Dropbox, because when only one decrypted file is changed, it won't...
FUSE Filesystems
With FUSE - The Filesystem in Userspace you can mount all different kinds of remote / local filesystems on you Linux/Unix/Mac computer. Here are some implementations of interesting FUSE filesystems:
- SSHFS https://blog.philippklaus.de/2011/07/sshfs-on-mac-os-x-10-6-8-with-fuse4x/ works great!
- Encrypted Filesystem https://blog.philippklaus.de/2011/12/transparently-encrypt-folders-with-encfs/ works well!
- PicasaFUSE https://github.com/jonathanverner/picasafuse
- FuseFTP in Perl https://github.com/marcust/fuseftp
- ZFS-FUSE http://zfs-fuse.net/
- FlickrMS https://github.com/patrickjennings/FlickrMS
- GDataFS...
SSHFS on Mac OS X 10.6.8 and 10.7.2 with Fuse4X
Fuse4X is a port of FUSE - The Filesystem in Userspace to Mac OS X and allows you to mount all different kinds of remote / local filesystems on you Mac computer. A very popular 'filesystem' is sshfs, which allows you to mount a directory of a remote...