I would like to learn how to set up a encrypted folder or file on my computer. I am using Ubuntu 14.04 64 bit.
Asked
Active
Viewed 293 times
1
-
1P.S. I do not have a "smart phone", just the computer. – Ehawk Hawkins Sep 25 '15 at 08:08
-
Have you tried Truecrypt??? – Raphael Sep 25 '15 at 08:15
-
5possible duplicate of [Is there a tool to encrypt a file or directory?](http://askubuntu.com/questions/27770/is-there-a-tool-to-encrypt-a-file-or-directory) – Byte Commander Sep 25 '15 at 08:32
-
1possible duplicate of [How to encrypt individual folders?](http://askubuntu.com/questions/104542/how-to-encrypt-individual-folders) – Byte Commander Sep 25 '15 at 08:33
1 Answers
0
E.G. via encfs
Install
encfssudo apt-get install encfsCreate a folder for the encrypted files
mkdir -p ~/encryptedCreate a folder for the decrypted files
mkdir -p ~/decryptedStart
encfs ~/encrypted ~/decryptedAnd use e.g. the pre-configured paranoia mode
Check
mount | grep decryptedSample output
encfs on /home/aboettger/decrypted type fuse.encfs (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000,default_permissions)Place some files in
~/decryptedtouch ~/decrypted/fooand check the content of
~/encryptedls ~/encryptedSample output
guV8sPH68cUeEsZoNAsNBBCC
Use the Gnome Encfs Manager to manage your encrypted folders
sudo apt-add-repository ppa:gencfsm/ppa sudo apt-get update sudo apt-get install gnome-encfs-managerStart via Dash/GNOME Shell
Gnome Encfs Manager
and add and configure your folder
A.B.
- 89,123
- 21
- 245
- 323