ECryptfs: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(fix syntax for ECryptfs) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==ecryptfs== | |||
<syntaxhighlight lang=bash> | |||
sudo apt-get install ecryptfs-utils | |||
ecryptfs-setup-private | |||
umount.ecryptfs_private | |||
mount.ecryptfs_private | |||
</syntaxhighlight> | |||
==encfs== | |||
http://ubuntuforums.org/showthread.php?t=148600 | http://ubuntuforums.org/showthread.php?t=148600 | ||
Install encfs | Install encfs | ||
< | <syntaxhighlight lang=bash> | ||
apt-get install encfs | |||
mkdir -p ~/encrypted ~/temp_encr | |||
</syntaxhighlight> | |||
Created encrypted dir / create password | Created encrypted dir / create password | ||
< | <syntaxhighlight lang=bash> | ||
encfs ~/encrypted ~/temp_encr | |||
</syntaxhighlight> | |||
Copy files to ~/temp_encr | Copy files to ~/temp_encr | ||
Umount encrypted dir | Umount encrypted dir | ||
< | <syntaxhighlight lang=bash> | ||
fusermount -u ~/temp_encr | |||
</syntaxhighlight> |
Latest revision as of 00:44, 25 January 2018
ecryptfs
sudo apt-get install ecryptfs-utils
ecryptfs-setup-private
umount.ecryptfs_private
mount.ecryptfs_private
encfs
http://ubuntuforums.org/showthread.php?t=148600
Install encfs
apt-get install encfs
mkdir -p ~/encrypted ~/temp_encr
Created encrypted dir / create password
encfs ~/encrypted ~/temp_encr
Copy files to ~/temp_encr
Umount encrypted dir
fusermount -u ~/temp_encr