![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Ubuntu 9.10 is out!!!
When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu. The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely. |
|
Tutorials & Tips The place to find Ubuntu related Tips & Tricks. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Just Give Me the Beans!
![]() Join Date: Jan 2005
Beans: 65
|
HOWTO: Encrypted directory with EncFS
This guide describes how to create encrypted directories. These can come in handy for laptop users, password lists and the like.
1. Install the software Code:
sudo apt-get install encfs fuse-utils sudo modprobe fuse 2. Add yourself to the fuse group The installer creates a fuse group and to use fusermount you need to be in this group. You can do this with your favourite GUI admin tool or command line: Code:
sudo adduser <your username> fuse I put mine in my home dir, but you can put it anywhere you like. Code:
mkdir ~/encrypted This is the directory where you will mount the encrypted directory. Through this path you can access the encrypted files. Code:
mkdir ~/temp_encr The first time you try to mount the directory, encfs will create the encrypted filesystem. It works like the regular mount: Code:
encfs <folder to mount> <mount point> Code:
encfs /home/<your username>/encrypted /home/<your username>/temp_encr 6. Do the work Put some files in your ~/temp_encr folder and look in the ~/encrypted one: they will show up there, encrypted. 7. Unmount the encrypted filesystem Unmounting is as easy as Code:
fusermount -u /home/<your username>/temp_encr Repeat! EncFS will only create the filesystem once, after that first time it will ask for a password and mount your directory. Remember to keep the two directories apart: in this example the "encrypted" folder holds your encrypted data and should not be used directly. The gateway to access this data is "temp_encr" or whatever you want to call it. Sites used: http://arg0.net/wiki/encfs - the main EncFS site how-to-mount-a-remote-ssh-filesystem-using-sshfs Last edited by remmelt; March 22nd, 2006 at 01:24 PM.. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|