encfswrapper mounts an encfs filesystem while another program executes. When all instances of programs started by encfswrapper using the same encfs mount point have terminated, the encfs filesystem is unmounted automatically.
- encfs
- Python 2 or Python 3
git clone https://github.com/lenzenmi/encfswrapper.git
cd encfswrapper
python setup.py installUsage is pretty simple. just call encfswrapper like you would encfs but append the command you want to run with all of its arguments
encfswrapper encfsDir mountPoint (command [options...])Zim is a desktop wiki. It's lovely for making beautiful notes. It uses a simple markup language and stores everything in plain text files that can easily be read with any text editor.
Once you have a lot of useful notes, it may be nice to back them up on the cloud somewhere using a tool like rsync. The problem is that once you start sending your private notes out onto the internet, they become public. If you want your private notes to stay private, you'll need to encrypt them.
By default, zim stores your notes in your home folder in a directory called Notes. Lets move that.
mv ~/Notes ~/Notes-oldNext we need to make a few directories for encfs.
mkdir ~/.Notes # A hidden directory in your home folder for encrypted data.
mkdir ~/Notes # Zim's default storage folderNow go ahead and setup encfs
encfs ~/.Notes ~/NotesYou'll be prompted for a password, and a bunch of other encfs settings. When it's done, Everything you copy into your ~/Notes folder will automatically be encrypted and stored in ~/.Notes. Let's do that.
rsync -av ~/Notes-old ~/NotesYou can view all of your data in ~/Notes in plain text. If you start zim, it should work fine.
You can also look inside ~/.Notes to see all of your data in encrypted form.
Let's unmount our encfs folder.
fusermount -u ~/Notes
ls ~/Notes
ls ~/.NotesThe ~/Notes folder should now be empty, but all of our encrypted data is still present inside ~/.Notes.
Now we can use encfswrapper to automate mounting this folder when we start zim.
encfswrapper ~/.Notes ~/Notes zim --standaloneNote
The standalone option is required to keep zim from daemonizing which would cause encfswrapper to unmount your encfs mount point.
Hooray! Zim should now be working normally and all of your stored notes will be encrypted! It's now safe to replicate your ~/.Notes folder anywhere on the internet.
Unfortunately the above command requires a lot more typing than before. Compare:
1 zim
2 encfswrapper ~/.Notes ~/Notes zim --standaloneWe can improve this by writing a simple bash script and placing it in /usr/local/bin/zim and making it executable. If your PATH is setup correctly, as it should be by default, this file will run instead of the default /usr/bin/zim, thus overriding it.
/usr/local/bin/zim
#!/bin/bash
if [ "$ZIM_CRYPT" ] && [ "ZIM_MOUNT" ]; then
encfswrapper "$ZIM_CRYPT" "$ZIM_MOUNT" /usr/bin/zim --standalone
else
/usr/bin/zim
fiAll we are doing here is checking to see if two environmental variables are set. If they are not, we run zim normally. If they are, we call encfswrapper to start zim.
Now all we have to do is set those environmental variables. Add these lines to your ~/.bashrc file.
export ZIM_CRYPT='~/.Notes'
export ZIM_MOUNT='~/Notes'That's it. Now you can start your encrypted zim the same way you always have.
zim