ECryptfs: Difference between revisions

From DrewWiki
Jump to navigation Jump to search
(New page: http://ubuntuforums.org/showthread.php?t=148600 Install encfs <pre>apt-get install encfs</pre> <pre>mkdir -p ~/encrypted ~/temp_encr</pre> Created encrypted dir / create password <pre>mou...)
 
No edit summary
Line 5: Line 5:
<pre>mkdir -p ~/encrypted ~/temp_encr</pre>
<pre>mkdir -p ~/encrypted ~/temp_encr</pre>
Created encrypted dir / create password
Created encrypted dir / create password
<pre>mount -t encfs ~/encrypted ~/temp_encr</pre>
<pre>encfs ~/encrypted ~/temp_encr</pre>


Copy files to ~/temp_encr
Copy files to ~/temp_encr

Revision as of 06:34, 18 December 2008

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