<?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"
	>
<channel>
	<title>Comments on: Stupid RAID tricks with EVMS and mdadm</title>
	<atom:link href="http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/</link>
	<description>distraction in action</description>
	<pubDate>Fri,  5 Dec 2008 09:32:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Dave Lachapelle &#187; Blog Archive &#187; Converting Raid-1 to Raid-5</title>
		<link>http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-21968</link>
		<dc:creator>Dave Lachapelle &#187; Blog Archive &#187; Converting Raid-1 to Raid-5</dc:creator>
		<pubDate>Fri, 25 Jul 2008 14:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-21968</guid>
		<description>[...] Then I stumbled across this blog entry in which a guy creates some experimental loopback devices, creates a RAID1 array and then converts [...]</description>
		<content:encoded><![CDATA[<p>[...] Then I stumbled across this blog entry in which a guy creates some experimental loopback devices, creates a RAID1 array and then converts [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chutz</title>
		<link>http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-21123</link>
		<dc:creator>chutz</dc:creator>
		<pubDate>Tue, 17 Jun 2008 02:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-21123</guid>
		<description>Dude, that's some nifty magic and it was certainly insightful. I had no idea that checksum(1 disk) = 1 disk.

Anyway, it is so much easier to just create the raid 5 on two disks instead of all this trickery. The added benefit is that you can grow it online (especially with SATA disks that can also be hotplugged).

http://tips.at.gg3.net/2006/12/20/raid5-on-two-disks-only/</description>
		<content:encoded><![CDATA[<p>Dude, that&#8217;s some nifty magic and it was certainly insightful. I had no idea that checksum(1 disk) = 1 disk.</p>
<p>Anyway, it is so much easier to just create the raid 5 on two disks instead of all this trickery. The added benefit is that you can grow it online (especially with SATA disks that can also be hotplugged).</p>
<p><a href="http://tips.at.gg3.net/2006/12/20/raid5-on-two-disks-only/" rel="nofollow">http://tips.at.gg3.net/2006/12/20/raid5-on-two-disks-only/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marki</title>
		<link>http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-18361</link>
		<dc:creator>Marki</dc:creator>
		<pubDate>Sun, 03 Feb 2008 20:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-18361</guid>
		<description>Nice... Just one small tip which was handy when I had to recustruct LVM with failed PV (which was not mirrored).
It allows you to create loopback devices bigger than your RAM. Suppose you need to simulate 160 GB HDD. You can create it in RAM even when booted from Live CD.
# dd if=/dev/zero of=/dev/shm/file1 bs=1M seek=10240 count=1

This command will create a 10 GB file, which will need only 1 MB of RAM. What this command does, is create a sparse file - nothing is allocated except last 1 MB of data, so only 1 MB of RAM is used. You can then vgcfgrestore PV headers on it - and used RAM will grow only by the amount of data you write to the file.</description>
		<content:encoded><![CDATA[<p>Nice&#8230; Just one small tip which was handy when I had to recustruct LVM with failed PV (which was not mirrored).<br />
It allows you to create loopback devices bigger than your RAM. Suppose you need to simulate 160 GB HDD. You can create it in RAM even when booted from Live CD.<br />
# dd if=/dev/zero of=/dev/shm/file1 bs=1M seek=10240 count=1</p>
<p>This command will create a 10 GB file, which will need only 1 MB of RAM. What this command does, is create a sparse file - nothing is allocated except last 1 MB of data, so only 1 MB of RAM is used. You can then vgcfgrestore PV headers on it - and used RAM will grow only by the amount of data you write to the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Wallace</title>
		<link>http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-4595</link>
		<dc:creator>Scott Wallace</dc:creator>
		<pubDate>Sun, 15 Apr 2007 08:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.n8gray.org/blog/2006/09/05/stupid-raid-tricks-with-evms-and-mdadm/#comment-4595</guid>
		<description>Well, I tried your RAID1 to RAID5 conversion this weekend on my home workstation and it worked a treat.

I've blogged about the experience at, http://scott.wallace.sh/node/1521.

I just wanted to drop you a note thanking you for making my life that little bit easier. I didn't have to reinstall my entire workstation to double my disk space!

Thanks!</description>
		<content:encoded><![CDATA[<p>Well, I tried your RAID1 to RAID5 conversion this weekend on my home workstation and it worked a treat.</p>
<p>I&#8217;ve blogged about the experience at, <a href="http://scott.wallace.sh/node/1521" rel="nofollow">http://scott.wallace.sh/node/1521</a>.</p>
<p>I just wanted to drop you a note thanking you for making my life that little bit easier. I didn&#8217;t have to reinstall my entire workstation to double my disk space!</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
