<?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: 7 Steps To An Encrypted Partition (local or removable disk)</title>
	<atom:link href="http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/</link>
	<description>Enhancing your Ubuntu experience!</description>
	<lastBuildDate>Thu, 02 Feb 2012 10:29:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: liju</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-14929</link>
		<dc:creator>liju</dc:creator>
		<pubDate>Thu, 15 Sep 2011 14:55:50 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-14929</guid>
		<description>Thanks to Christer help I have working solution. So if anyone wants to check dd status also for not mounted partitions, here is recipie:

1) find the process ID of the dd command using something like: ps -ef &#124; grep dd
(I have used top instead)
2) run kill -USR1 $pid (found above)
3) if you want a constant status update on an interval run: watch -n
10 &#039;kill -USR1 $pid&#039; . This&#039;ll show you status every 10 seconds.</description>
		<content:encoded><![CDATA[<p>Thanks to Christer help I have working solution. So if anyone wants to check dd status also for not mounted partitions, here is recipie:</p>
<p>1) find the process ID of the dd command using something like: ps -ef | grep dd<br />
(I have used top instead)<br />
2) run kill -USR1 $pid (found above)<br />
3) if you want a constant status update on an interval run: watch -n<br />
10 &#8216;kill -USR1 $pid&#8217; . This&#8217;ll show you status every 10 seconds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: liju</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-14925</link>
		<dc:creator>liju</dc:creator>
		<pubDate>Tue, 13 Sep 2011 07:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-14925</guid>
		<description>&lt;a href=&quot;#comment-14576&quot; rel=&quot;nofollow&quot;&gt;@David Harmon &lt;/a&gt; 
Can You kindly advice how to check the progress of dd? I am doing this for two days already with /dev/random on 2 TB partition. 
Is there anyway to check how much is already done if partition is not mounted?
Thanks!</description>
		<content:encoded><![CDATA[<p><a href="#comment-14576" rel="nofollow">@David Harmon </a><br />
Can You kindly advice how to check the progress of dd? I am doing this for two days already with /dev/random on 2 TB partition.<br />
Is there anyway to check how much is already done if partition is not mounted?<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: openwiki</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-14846</link>
		<dc:creator>openwiki</dc:creator>
		<pubDate>Tue, 12 Jul 2011 16:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-14846</guid>
		<description>I use ext4.

sudo mke2fs -t ext4 /dev/mapper/name -L label
/dev/mapper/name /data ext4 defaults 0 0

Good tutorial.</description>
		<content:encoded><![CDATA[<p>I use ext4.</p>
<p>sudo mke2fs -t ext4 /dev/mapper/name -L label<br />
/dev/mapper/name /data ext4 defaults 0 0</p>
<p>Good tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Harmon</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-14576</link>
		<dc:creator>David Harmon</dc:creator>
		<pubDate>Mon, 07 Feb 2011 16:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-14576</guid>
		<description>&lt;a href=&quot;#comment-5085&quot; rel=&quot;nofollow&quot;&gt;@ Crosshair  &lt;/a&gt; 
You don&#039;t need to.  &quot;dd&quot; will automatically exit when it runs out of partition (or disk).  By the way, you can in fact random-wipe a whole disk (like /dev/sdc), but you&#039;re much better off doing it by partitions (/dev/sdc1).  This is especially so when you&#039;re trying to wipe a terabyte or larger drive -- split it up into partitions that you can wipe in a mere day or two!  I was getting a fairly steady 4MB/s, but I don&#039;t know whether that was pinned by my drive or the USB spec.

Oh yeah -- after a reboot, make sure the drive you&#039;re working on is still the *same* device!</description>
		<content:encoded><![CDATA[<p><a href="#comment-5085" rel="nofollow">@ Crosshair  </a><br />
You don&#8217;t need to.  &#8220;dd&#8221; will automatically exit when it runs out of partition (or disk).  By the way, you can in fact random-wipe a whole disk (like /dev/sdc), but you&#8217;re much better off doing it by partitions (/dev/sdc1).  This is especially so when you&#8217;re trying to wipe a terabyte or larger drive &#8212; split it up into partitions that you can wipe in a mere day or two!  I was getting a fairly steady 4MB/s, but I don&#8217;t know whether that was pinned by my drive or the USB spec.</p>
<p>Oh yeah &#8212; after a reboot, make sure the drive you&#8217;re working on is still the *same* device!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Harmon</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-14571</link>
		<dc:creator>David Harmon</dc:creator>
		<pubDate>Fri, 04 Feb 2011 13:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-14571</guid>
		<description>Hmm.  Under 10.04, after adding the fstab line, I got a filesystem which root can mount or unmount (without password!), but the user owning the mount point can&#039;t.  Adding the &quot;user&quot; option to fstab allowed me (and presumably anyone) to mount it, but still didn&#039;t ask for a password.  Is this because I haven&#039;t rebooted yet?  (It&#039;s worrisome....)

I haven&#039;t tried Darren&#039;s entry for /etc/crypttab yet -- eventually I&#039;ll want a boot-mounted partition, but I&#039;d like to deal with this issue first.

Might it be better to change the ownership of the mapper device and change fstab to use &quot;owner&quot; instead of &quot;user&quot;?</description>
		<content:encoded><![CDATA[<p>Hmm.  Under 10.04, after adding the fstab line, I got a filesystem which root can mount or unmount (without password!), but the user owning the mount point can&#8217;t.  Adding the &#8220;user&#8221; option to fstab allowed me (and presumably anyone) to mount it, but still didn&#8217;t ask for a password.  Is this because I haven&#8217;t rebooted yet?  (It&#8217;s worrisome&#8230;.)</p>
<p>I haven&#8217;t tried Darren&#8217;s entry for /etc/crypttab yet &#8212; eventually I&#8217;ll want a boot-mounted partition, but I&#8217;d like to deal with this issue first.</p>
<p>Might it be better to change the ownership of the mapper device and change fstab to use &#8220;owner&#8221; instead of &#8220;user&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liviu</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-11960</link>
		<dc:creator>Liviu</dc:creator>
		<pubDate>Mon, 23 Aug 2010 09:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-11960</guid>
		<description>Very nice tutorial. Thank you</description>
		<content:encoded><![CDATA[<p>Very nice tutorial. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cifrar una partición o disco duro externo en GNU/Linux &#171; Conocimiento Abierto</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-10133</link>
		<dc:creator>Cifrar una partición o disco duro externo en GNU/Linux &#171; Conocimiento Abierto</dc:creator>
		<pubDate>Sun, 10 Jan 2010 14:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-10133</guid>
		<description>[...] 7 Steps To An Encrypted Partition (local or removable disk) [...]</description>
		<content:encoded><![CDATA[<p>[...] 7 Steps To An Encrypted Partition (local or removable disk) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-9222</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 10 Jul 2009 03:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-9222</guid>
		<description>yeah, i&#039;ll second the change to sdc1 rather than sdc. I was having a heck of a time getting this to work until I figured that out. </description>
		<content:encoded><![CDATA[<p>yeah, i&#039;ll second the change to sdc1 rather than sdc. I was having a heck of a time getting this to work until I figured that out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfatio</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-7611</link>
		<dc:creator>sfatio</dc:creator>
		<pubDate>Wed, 31 Dec 2008 17:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-7611</guid>
		<description>I followed this guide but i cannot automount with Gnome the disk. Permissions are ok and via console i can mount that, but as I fill in my passphrase in gnome it gives this error:

it&#039;s not possible to mount encrypted data:
DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.

any help would be greatly appreciated
tnx! bye!</description>
		<content:encoded><![CDATA[<p>I followed this guide but i cannot automount with Gnome the disk. Permissions are ok and via console i can mount that, but as I fill in my passphrase in gnome it gives this error:</p>
<p>it&#8217;s not possible to mount encrypted data:<br />
DBus error org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.</p>
<p>any help would be greatly appreciated<br />
tnx! bye!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MValdez</title>
		<link>http://ubuntu-tutorials.com/2007/08/17/7-steps-to-an-encrypted-partition-local-or-removable-disk/#comment-5702</link>
		<dc:creator>MValdez</dc:creator>
		<pubDate>Sat, 23 Aug 2008 23:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=418#comment-5702</guid>
		<description>&gt; the Gnome Desktop (someone verify in KDE?)
&gt; will recognize the encrypted setup and 
&gt; prompt you for a key visually

Of course KDE also do this.

Jim and Rich: you can access your LUKS-encrypted disks from any computer with LUKS and dm-crypt. I have used all my encrypted removable devices in different computers with Ubuntu and OpenSuse (my work desktot, my laptop, my home desktops, friend&#039;s laptops, etc.) and they work without problems.

mjukr: LUKS is so Linux-native it works flawlessly, TrueCrypt is a Windows-centric project which later became multiplatform, maybe that explain why is not so easy to use in Linux.

MrMan: the command shred can only delete data on a filesystem, not directly on the raw device (which is safer). Using dd is therefore far superior to clean a partition before encryption.

Regards,

MV</description>
		<content:encoded><![CDATA[<p>&gt; the Gnome Desktop (someone verify in KDE?)<br />
&gt; will recognize the encrypted setup and<br />
&gt; prompt you for a key visually</p>
<p>Of course KDE also do this.</p>
<p>Jim and Rich: you can access your LUKS-encrypted disks from any computer with LUKS and dm-crypt. I have used all my encrypted removable devices in different computers with Ubuntu and OpenSuse (my work desktot, my laptop, my home desktops, friend&#8217;s laptops, etc.) and they work without problems.</p>
<p>mjukr: LUKS is so Linux-native it works flawlessly, TrueCrypt is a Windows-centric project which later became multiplatform, maybe that explain why is not so easy to use in Linux.</p>
<p>MrMan: the command shred can only delete data on a filesystem, not directly on the raw device (which is safer). Using dd is therefore far superior to clean a partition before encryption.</p>
<p>Regards,</p>
<p>MV</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (User agent is rejected)
Database Caching 2/6 queries in 0.004 seconds using disk: basic
Object Caching 309/310 objects using disk: basic

Served from: ubuntu-tutorials.com @ 2012-02-09 23:26:05 -->
