Created
October 9, 2011 20:51
-
-
Save petasittek/1274159 to your computer and use it in GitHub Desktop.
EncFS on Dropbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# APPLICABLE FOR UBUNTU/DEBIAN | |
# install encfs and fuse | |
sudo apt-get install fuse-utils encfs | |
# add fuse module to Linux Kernel | |
sudo modprobe fuse | |
# add fuse to end of /etc/modules to autoload fuse module | |
sudo nano /etc/modules | |
# add your self to fuse group | |
sudo adduser <user> fuse | |
# paths have to be absolute, alternatively ~ can be used | |
encfs ~/Dropbox/.encrypted/ ~/encfs/ | |
# configure cipher algorithm, block size, filename encoding etc. | |
# or you can go with default configuration just by pressing [Enter] | |
# unmount | |
fusermount -u ~/encfs | |
# to mount again | |
encfs ~/Dropbox/.encrypted/ ~/encfs/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment