<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Encrypted home on Ubuntu using cryptoloop</title>
	<atom:link href="http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/</link>
	<description>A little bit of technology, security and networking with Linux, FreeBSD and Mac OS X, plus some personal opinions.</description>
	<lastBuildDate>Tue, 02 Feb 2010 09:15:52 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: relet</title>
		<link>http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/comment-page-1/#comment-36674</link>
		<dc:creator>relet</dc:creator>
		<pubDate>Sat, 02 Aug 2008 10:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/#comment-36674</guid>
		<description>If you suddenly cannot execute files on your encrypted disk anymore, remove the &quot;user&quot; option from /etc/security/pam_mount.conf.xml in the last few lines. It overrides the exec option, effectively mounting your drive as &quot;noexec&quot;. You will receive errors like:
bash: ./executable: Permission denied.
also, /usr/bin/env will fail to execute python and other scripts correctly.</description>
		<content:encoded><![CDATA[<p>If you suddenly cannot execute files on your encrypted disk anymore, remove the &#8220;user&#8221; option from /etc/security/pam_mount.conf.xml in the last few lines. It overrides the exec option, effectively mounting your drive as &#8220;noexec&#8221;. You will receive errors like:<br />
bash: ./executable: Permission denied.<br />
also, /usr/bin/env will fail to execute python and other scripts correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dany Chouinard</title>
		<link>http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/comment-page-1/#comment-36497</link>
		<dc:creator>Dany Chouinard</dc:creator>
		<pubDate>Mon, 07 Jan 2008 16:40:30 +0000</pubDate>
		<guid isPermaLink="false">http://felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/#comment-36497</guid>
		<description>Nice tutorial, was great help for me.  I used it to complement a linuxmagazine tutorial (august 2003 : Implementing Encrypted Home Directories by Mike Petullo).

I was just wondering, Have you figured what to if the user change it&#039;s password (which he does every 6-8 month, of course, isn&#039;t it?).</description>
		<content:encoded><![CDATA[<p>Nice tutorial, was great help for me.  I used it to complement a linuxmagazine tutorial (august 2003 : Implementing Encrypted Home Directories by Mike Petullo).</p>
<p>I was just wondering, Have you figured what to if the user change it&#8217;s password (which he does every 6-8 month, of course, isn&#8217;t it?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravn</title>
		<link>http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/comment-page-1/#comment-36494</link>
		<dc:creator>ravn</dc:creator>
		<pubDate>Thu, 03 Jan 2008 17:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/#comment-36494</guid>
		<description>Without having tried, would it be possible to encrypt the file system with another password than the user password? Having the same password stored in two places, /etc/shadow and USER.key makes it more vulnerable.</description>
		<content:encoded><![CDATA[<p>Without having tried, would it be possible to encrypt the file system with another password than the user password? Having the same password stored in two places, /etc/shadow and USER.key makes it more vulnerable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalisto</title>
		<link>http://www.felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/comment-page-1/#comment-35746</link>
		<dc:creator>Kalisto</dc:creator>
		<pubDate>Wed, 30 May 2007 12:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://felipe-alfaro.org/blog/2006/08/19/encrypted-home-on-ubuntu-using-cryptoloop/#comment-35746</guid>
		<description>Great Tutorial!! btw

# echo “@include common-pammount” &gt;&gt; /etc/pam.d/common-auth
# echo “@include common-pammount” &gt;&gt; /etc/pam.d/common-session

should be:

# echo @include common-pammount &gt;&gt; /etc/pam.d/common-auth
# echo @include common-pammount &gt;&gt; /etc/pam.d/common-session

and:
echo “volume ${USER} auto - /home/${USER}.img /home/${USER} loop,user,exec,encryption=aes,keybits=${KEYSIZE} aes-${KEYSIZE}-ecb /home/${USER}.key” &gt;&gt; /etc/security/pam_mount.conf

should be:
echo volume ${USER} auto - /home/${USER}.img /home/${USER} loop,user,exec,encryption=aes,keybits=${KEYSIZE} aes-${KEYSIZE}-ecb /home/${USER}.key &gt;&gt; /etc/security/pam_mount.conf

Also there is a bug with ubuntu and pam mount:
https://bugs.launchpad.net/ubuntu/ source/libpam-mount/ bug/117736</description>
		<content:encoded><![CDATA[<p>Great Tutorial!! btw</p>
<p># echo “@include common-pammount” &gt;&gt; /etc/pam.d/common-auth<br />
# echo “@include common-pammount” &gt;&gt; /etc/pam.d/common-session</p>
<p>should be:</p>
<p># echo @include common-pammount &gt;&gt; /etc/pam.d/common-auth<br />
# echo @include common-pammount &gt;&gt; /etc/pam.d/common-session</p>
<p>and:<br />
echo “volume ${USER} auto &#8211; /home/${USER}.img /home/${USER} loop,user,exec,encryption=aes,keybits=${KEYSIZE} aes-${KEYSIZE}-ecb /home/${USER}.key” &gt;&gt; /etc/security/pam_mount.conf</p>
<p>should be:<br />
echo volume ${USER} auto &#8211; /home/${USER}.img /home/${USER} loop,user,exec,encryption=aes,keybits=${KEYSIZE} aes-${KEYSIZE}-ecb /home/${USER}.key &gt;&gt; /etc/security/pam_mount.conf</p>
<p>Also there is a bug with ubuntu and pam mount:<br />
<a href="https://bugs.launchpad.net/ubuntu/" rel="nofollow">https://bugs.launchpad.net/ubuntu/</a> source/libpam-mount/ bug/117736</p>
]]></content:encoded>
	</item>
</channel>
</rss>
