<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Make Tech Easier&#187; ecryptfs</title>
	<atom:link href="http://maketecheasier.com/tag/ecryptfs/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 25 May 2012 21:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs</title>
		<link>http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25</link>
		<comments>http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25#comments</comments>
		<pubDate>Thu, 25 Sep 2008 02:43:47 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ecryptfs]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=892</guid>
		<description><![CDATA[eCryptfs is a encryption application for Linux that you can use to encrypt your files/folders and prevent others from viewing it. eCryptfs does not require its own partition. You can easily create a dynamic encrypted private directory on your Home folder that will shrink or grow in size according to... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25&amp;title=Create+a+Private+Encrypted+Folder+On+Ubuntu+Hardy+With+eCryptfs&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25">Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-897 alignleft" title="ecryptfs" src="http://imagecdn.maketecheasier.com/2008/09/ecryptfs.jpg" alt="" width="248" height="50" /><a href="http://ecryptfs.sourceforge.net" target="_blank">eCryptfs</a> is a encryption application for Linux that you can use to encrypt your files/folders and prevent others from viewing it. eCryptfs does not require its own partition. You can easily create a dynamic encrypted private directory on your Home folder that will shrink or grow in size according to the files you add to it. Whatever files you place in the private directory will be encrypted and safe from the public eyes.</p>
<p><span id="more-892"></span>In <a href="http://maketecheasier.com/ubuntu-ibex-alpha-6-review/2008/09/23" target="_blank">Ubuntu Ibex,</a> the eCryptfs package was included in the Ubuntu main to support the use of a <a href="https://wiki.ubuntu.com/EncryptedPrivateDirectory" target="_blank">secret encrypted folder</a> in the Home folder. To get it working in Ubuntu Hardy, you will have to follow the steps below:</p>
<p>First, install the eCryptfs package:</p>
<p class="codeblock">sudo apt-get install ecryptfs-utils</p>
<p>Create your own secret folder.</p>
<p class="codeblock">mkdir /secret</p>
<p>Mount the ecryptfs to the secret folder</p>
<p class="codeblock">sudo mount -t ecryptfs ~/secret ~/secret</p>
<p>It will then prompt you to answer a few questions.</p>
<p>1) Selecting your key type for newly created files</p>
<p><img class="size-full wp-image-893" style="border:1px solid #000000" title="ecryptfs-keytype" src="http://imagecdn.maketecheasier.com/2008/09/ecryptfs-keytype.jpg" alt="ecryptfs-key type" width="545" height="154" /></p>
<p>Press &#8220;1&#8243; to select <em>passphrase</em></p>
<p>You will be asked to enter and verify your passphrase.</p>
<p>2) Selecting your encryption cipher</p>
<p><img class="size-full wp-image-894" style="border:1px solid #000000" title="ecryptfs-cipher" src="http://imagecdn.maketecheasier.com/2008/09/ecryptfs-cipher.jpg" alt="ecryptfs-cipher" width="580" height="284" /></p>
<p>The default option is shown in the [ ]. If you are not sure of what to select, simply press Enter to select the default.</p>
<p>3) Select key byte</p>
<p><img class="size-full wp-image-896" style="border:1px solid #000000" title="ecryptfs-keybyte" src="http://imagecdn.maketecheasier.com/2008/09/ecryptfs-keybyte.jpg" alt="ecryptfs-keybyte" width="580" height="204" /></p>
<p>4) Enable plaintext passthrough</p>
<p>If you want to use unecrypted file inside your secret folder, then select &#8216;Y&#8217;. If not, type &#8216;N&#8217;.</p>
<p>Now, open your <em>Nautilus (Places-&gt;Home Folder)</em>. You should see a <em>secret</em> drive mounted in the filesystem.</p>
<p><strong>Testing out your secret folder encryption</strong></p>
<p>Add some files to the secret folder.</p>
<p>Unmount it</p>
<p class="codeblock">sudo umount ~/secret</p>
<p>Access the secret folder again and open any of the files that you have just added. You should not be able to open and view the file content. That&#8217;s good. All your files are now encrypted.</p>
<p><strong>Creating a launcher </strong></p>
<p>Having a launcher on your desktop allows you to mount the secret folder easily.</p>
<p>On your desktop, right click the mouse and select &#8220;<em>Create Launcher</em>&#8220;.</p>
<p>Enter the following:</p>
<p><strong>Type</strong>: Application in Terminal<br />
<strong>Name</strong>: eCryptfs <em>(or whatever name you want)</em><br />
<strong>Command</strong>: sudo mount -t ecryptfs /home/USER/secret /home/USER/secret key=passphrase,ecryptfs_cipher=aes,ecryptfs_key_bytes=16,ecryptfs_passthrough=n  (<em>Replace the USER with your own username</em>)</p>
<p>The next time you want to mount your secret folder, simply click on this launcher. It will pop up a terminal and ask you for your passphrase. Once that is verified, the secret folder will be mounted in the Home folder.</p>
<p><!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/integrate-skype-with-ubuntu-unity/2012/05/23' title='How to Integrate Skype With Ubuntu Unity'>How to Integrate Skype With Ubuntu Unity</a></li>
<li><a href='http://maketecheasier.com/install-java-runtime-in-ubuntu/2012/05/14' title='How to Install Java Runtime In Ubuntu 12.04'>How to Install Java Runtime In Ubuntu 12.04</a></li>
<li><a href='http://maketecheasier.com/connect-to-a-vpn-in-ubuntu/2012/05/07' title='How to Connect to A VPN In Ubuntu [Quick Tips]'>How to Connect to A VPN In Ubuntu [Quick Tips]</a></li>
<li><a href='http://maketecheasier.com/upgrade-to-gimp-2-8-in-ubuntu/2012/05/04' title='How to Upgrade to Gimp 2.8 in Ubuntu'>How to Upgrade to Gimp 2.8 in Ubuntu</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25&amp;title=Create+a+Private+Encrypted+Folder+On+Ubuntu+Hardy+With+eCryptfs&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25">Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25/feed</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: cdn.maketecheasier.com

Served from: maketecheasier.com @ 2012-05-25 16:25:37 -->
