<?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>OpenEgg.org</title>
	<atom:link href="http://www.openegg.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openegg.org</link>
	<description>Where ideas incubate</description>
	<lastBuildDate>Wed, 22 Feb 2012 21:11:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>FlexRAID vs NZFS</title>
		<link>http://www.openegg.org/2012/02/22/flexraid-vs-nzfs/</link>
		<comments>http://www.openegg.org/2012/02/22/flexraid-vs-nzfs/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 21:11:27 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=176</guid>
		<description><![CDATA[I have been approached by a number of users all confused about the state and future of FlexRAID in light of the upcoming NZFS. First, I need to do some clean up on the naming of the products. FlexRAID: FlexRAID is a concept and not a product in itself. The core essence of that concept [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong><br />
I have been approached by a number of users all confused about the state and future of FlexRAID in light of the upcoming NZFS.</p>
<p>First, I need to do some clean up on the naming of the products.</p>
<p><strong>FlexRAID</strong>:<br />
FlexRAID  is a concept and not a product in itself. The core essence of that  concept is flexibility and solving many of the shortcomings that plague  current storage solutions.</p>
<p><strong>RAID-F</strong>: Also known as RAID over Filesystem.<br />
RAID-F  provides data protection and data pooling over existing filesystems. It  does that by overlaying its own lightweight and unifying filesystem on  top of any filesystem that the user&#8217;s OS can operate over.</p>
<p><strong>NZFS</strong>: The &#8220;Not ZFS&#8221; RAID system.<br />
Although having no commonality with ZFS, NZFS borrows a number of concepts from ZFS and its RAID suite.<br />
NZFS has two modes of operation: RAID under filesystem and RAID within filesystem.</p>
<p>In essence, FlexRAID will provide:<br />
- RAID under filesystem (NZFS)<br />
- RAID within filesystem (NZFS)<br />
- RAID over filesystem (RAID-F)</p>
<p>Each approach has it own implications (i.e., advantages and disadvantages), which we will get into once NZFS is out.</p>
<p><img title="Smiley" src="http://forum.flexraid.com/Smileys/default/smiley.gif" alt=":)" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2012/02/22/flexraid-vs-nzfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NZFS goes 100% Kernel mode</title>
		<link>http://www.openegg.org/2012/02/17/nzfs-goes-100-kernel-mode/</link>
		<comments>http://www.openegg.org/2012/02/17/nzfs-goes-100-kernel-mode/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 15:18:51 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=171</guid>
		<description><![CDATA[In my original design, NZFS consisted of a minimal kernel mode driver with the bulk of the processing happening in user mode. The motivations were quite simple: kernel mode development is a major pain in the ass and everywhere else! So, avoid it! On top of being very restricted resource wise, one must entirely obey [...]]]></description>
			<content:encoded><![CDATA[<p>In my original design, NZFS consisted of a minimal kernel mode driver with the bulk of the processing happening in user mode.<br />
The motivations were quite simple: kernel mode development is a major pain in the ass and everywhere else! So, avoid it! <img src='http://www.openegg.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>On top of being very restricted resource wise, one must entirely obey these guidelines: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q186775&#038;<br />
Not only bugs in kernel mode executions are unforgiving (blue screen of death anyone?), they are also non-obvious (get ready to call WinDbg your new best friend and time consuming&#8217;ly so).</p>
<p>Unless you are a hardcore and lifelong dedicated kernel mode developer, the constraints and learning curve are far too steep.<br />
My only salvation in this whole initiative is that I have been dabbling in kernel mode development ever since I started FlexRAID. This has given me enough time to slowly get comfortable with this very niche type of programming.</p>
<p>In any case, I really wanted to minimize my kernel mode execution. The rewards were obvious: less pain and less bugs.<br />
Moreover, most of my libraries are user mode libraries and porting them to the kernel means some serious refactoring.</p>
<p>I thought hard and long and fought myself between &#8220;easy street&#8221; and the &#8220;right way&#8221;.<br />
Yet, as Spike Lee would say, &#8220;Do the Right Thing&#8221; nudged me along the side of the &#8220;right way&#8221;.<br />
And so I did and ported everything into the kernel. <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Obviously, there are many advantages to going 100% kernel mode, but I will leave those points for another post.<br />
The key point in all this is that development of NZFS will take much longer given the now longer debugging and testing time it requires.</p>
<p>Nevertheless, I have made great progress as everything has been successfully ported to the kernel.<br />
Simple NZFS volumes work nicely including RAID 0 and mirrored volumes. I will be testing parity based RAID volumes this weekend.<br />
If all works out, the next step will be implementing the management and maintenance components.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2012/02/17/nzfs-goes-100-kernel-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NZFS news: Zero Scrubbing, Zero Maintenance design</title>
		<link>http://www.openegg.org/2012/01/16/nzfs-news-zero-scrubbing-zero-maintenance-design/</link>
		<comments>http://www.openegg.org/2012/01/16/nzfs-news-zero-scrubbing-zero-maintenance-design/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 16:37:39 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=168</guid>
		<description><![CDATA[RAID users are well familiar with this: scrubbing. For those who don&#8217;t, scrubbing is a full data scan to check on it integrity. Virtually every RAID implementation relies on scrubbing as part of its maintenance to ensure continuous data integrity. In FlexRAID&#8217;s existing implementations, scrubbing is implemented through the Validate and Verify/Force-Sync-Verify tasks. For NZFS, [...]]]></description>
			<content:encoded><![CDATA[<p>RAID users are well familiar with this: scrubbing.</p>
<p>For those who don&#8217;t, scrubbing is a full data scan to check on it integrity. Virtually every RAID implementation relies on scrubbing as part of its maintenance to ensure continuous data integrity.</p>
<p>In FlexRAID&#8217;s existing implementations, scrubbing is implemented through the Validate and Verify/Force-Sync-Verify tasks.<br />
For NZFS, I really wanted to do without those long running tasks in order to achieve a zero maintenance design.</p>
<p>Well, I have an idea, but my lips are sealed on it. <img src='http://www.openegg.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2012/01/16/nzfs-news-zero-scrubbing-zero-maintenance-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing NZFS (Not ZFS)</title>
		<link>http://www.openegg.org/2012/01/07/announcing-nzfs-not-zfs/</link>
		<comments>http://www.openegg.org/2012/01/07/announcing-nzfs-not-zfs/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 17:31:35 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=160</guid>
		<description><![CDATA[Get it? NZFS (Not ZFS) similar to GNU (GNU Not UNIX)&#8230; With the recent announcement of Storage Spaces by MS, it was clear that FlexRAID needed to step up in order to stay ahead of everyone in the storage pooling space. The current FlexRAID implementation of storage pooling has several key advantages over everything else [...]]]></description>
			<content:encoded><![CDATA[<p>Get it? NZFS (Not ZFS) similar to GNU (GNU Not UNIX)&#8230; <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>With the recent announcement of Storage Spaces by MS, it was clear that FlexRAID needed to step up in order to stay ahead of everyone in the storage pooling space.</p>
<p>The current FlexRAID implementation of storage pooling has several key advantages over everything else on the market or planned including:</p>
<ul>
<li>Better power saving features (only the disk where the data resides needs to be active)</li>
<li>Support for drives with existing data (FlexRAID never format any drive)</li>
<li>A drive taken from a FlexRAID pool is fully readable outside of the pool and on any other computer</li>
<li>Snapshot RAID when real-time parity synchronization is not necessary</li>
<li>Real-time RAID</li>
<li>Ability to restore specific files instead of the whole disk</li>
<li>Support for network drives in the storage pool</li>
<li>Disk spanning for better protection level and utilization</li>
<li>Multiple RAID engines including support for RAID&#8734;</li>
</ul>
<p>That said, it has certain inherent limitations because it lives above the host filesystems.</p>
<p>NZFS takes a different approach and provides pooling below the filesystem. That&#8217;s right, a NZFS storage pool will need to be formatted with your favorite filesystem be it NTFS, FAT, EXT, etc.</p>
<p>I am calling it NZFS because it is not ZFS but will bring many of the ZFS features such as checksum, ZIL, de-dup, copy-on-write, etc. to both Windows and Linux.<br />
Furthermore, it will be powered by the almighty FlexRAID&#8217;s RAID&#8734; engine.</p>
<p>Mirroring is crap and greatly inferior to multi-parity in all facets including protection level, space utilization, and ultimately cost.</p>
<p>Note that NZFS is not an improvement over the current storage pooling approach used by FlexRAID. It is just different and might be better suited for certain deployments.</p>
<p>More on all this later&#8230; busy coding. <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2012/01/07/announcing-nzfs-not-zfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storage data management or Data storage management?</title>
		<link>http://www.openegg.org/2011/12/24/storage-data-management-or-data-storage-management/</link>
		<comments>http://www.openegg.org/2011/12/24/storage-data-management-or-data-storage-management/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 15:21:06 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=158</guid>
		<description><![CDATA[I get asked quite often why the heading for FlexRAID states &#8220;Storage data management&#8221; as opposed to &#8220;Data storage management&#8221;. Well, FlexRAID concerns itself with the data and not the storage. Hence it concerns itself with storage data (data that is stored) as opposed to transactional/transient data (data that is not stored). Data storage management [...]]]></description>
			<content:encoded><![CDATA[<p>I get asked quite often why the heading for FlexRAID states &#8220;Storage data management&#8221; as opposed to &#8220;Data storage management&#8221;.</p>
<p>Well, FlexRAID concerns itself with the data and not the storage. Hence it concerns itself with storage data (data that is stored) as opposed to transactional/transient data (data that is not stored).</p>
<p>Data storage management leads to managing the storage mediums, which is mostly a secondary concern of FlexRAID.<br />
In fact, the sole form of storage management function in FlexRAID is provided thanks to its client UI as the core does not concern itself with such thing at all.<br />
It is the UI that provides disk organization and S.M.A.R.T monitoring as a form of disk storage management.</p>
<p>In sum, FlexRAID focuses only on data and more specifically on storage data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/12/24/storage-data-management-or-data-storage-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexRAID gets S.M.A.R.T (very SMART indeed)</title>
		<link>http://www.openegg.org/2011/12/20/flexraid-gets-s-m-a-r-t-very-smart-indeed/</link>
		<comments>http://www.openegg.org/2011/12/20/flexraid-gets-s-m-a-r-t-very-smart-indeed/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 00:31:17 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=145</guid>
		<description><![CDATA[What makes FlexRAID very S.M.A.R.T is its proprietary S.M.A.R.T data analysis engine. However, this will be discussed in a different post. For now, here are a few UI spoilers.]]></description>
			<content:encoded><![CDATA[<p>What makes FlexRAID very S.M.A.R.T is its proprietary S.M.A.R.T data analysis engine.</p>
<p>However, this will be discussed in a different post.<br />
For now, here are a few UI spoilers. <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/1.-System-Control-Panel.png"><img class="alignnone size-full wp-image-146" title="1. System Control Panel" src="http://www.openegg.org/wp-content/uploads/2011/12/1.-System-Control-Panel.png" alt="" width="704" height="615" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/2.-Overview.png"><img class="alignnone size-full wp-image-147" title="2. Overview" src="http://www.openegg.org/wp-content/uploads/2011/12/2.-Overview.png" alt="" width="704" height="638" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/3.-Attributes.png"><img class="alignnone size-full wp-image-148" title="3. Attributes" src="http://www.openegg.org/wp-content/uploads/2011/12/3.-Attributes.png" alt="" width="703" height="615" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/4.-Capabilities.png"><img class="alignnone size-full wp-image-149" title="4. Capabilities" src="http://www.openegg.org/wp-content/uploads/2011/12/4.-Capabilities.png" alt="" width="703" height="625" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/5.-Analysis-Result.png"><img class="alignnone size-full wp-image-150" title="5. Analysis Result" src="http://www.openegg.org/wp-content/uploads/2011/12/5.-Analysis-Result.png" alt="" width="703" height="624" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/6.-Short-Test.png"><img class="alignnone size-full wp-image-151" title="6. Short Test" src="http://www.openegg.org/wp-content/uploads/2011/12/6.-Short-Test.png" alt="" width="702" height="624" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/7.-Short-Test-Result.png"><img class="alignnone size-full wp-image-152" title="7. Short Test Result" src="http://www.openegg.org/wp-content/uploads/2011/12/7.-Short-Test-Result.png" alt="" width="704" height="626" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/8.-Temperature-logs.png"><img class="alignnone size-full wp-image-153" title="8. Temperature logs" src="http://www.openegg.org/wp-content/uploads/2011/12/8.-Temperature-logs.png" alt="" width="703" height="624" /></a></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/12/9.-Monitoring.png"><img class="alignnone size-full wp-image-154" title="9. Monitoring" src="http://www.openegg.org/wp-content/uploads/2011/12/9.-Monitoring.png" alt="" width="703" height="626" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/12/20/flexraid-gets-s-m-a-r-t-very-smart-indeed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexRAID Windows Share Management &amp; Integration</title>
		<link>http://www.openegg.org/2011/11/20/flexraid-windows-share-management-integration/</link>
		<comments>http://www.openegg.org/2011/11/20/flexraid-windows-share-management-integration/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 03:44:33 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[Real-Time RAID]]></category>
		<category><![CDATA[Storage Pool]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=123</guid>
		<description><![CDATA[- FlexRAID allows you to easily define server shares and manage user permissions to those shares. You can also define hidden shares. - The shares defined in FlexRAID integrate into Windows Share Management interface for more fine tuned management. - Through the Windows Share Management interface, you can define advanced settings including NTFS permissions. - [...]]]></description>
			<content:encoded><![CDATA[<h4>- FlexRAID allows you to easily define server shares and manage user permissions to those shares. You can also define hidden shares.</h4>
<p><br/><br />
<a href="http://www.openegg.org/wp-content/uploads/2011/11/ServerShares2.png"><img class="alignnone size-full wp-image-141" title="ServerShares" src="http://www.openegg.org/wp-content/uploads/2011/11/ServerShares2.png" alt="" width="716" height="634" /></a><br />
<br/><br />
<br/></p>
<h4>- The shares defined in FlexRAID integrate into Windows Share Management interface for more fine tuned management.</h4>
<p><br/><br />
<a href="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement4.png"><img class="alignnone size-full wp-image-140" title="WindowsShareMangement" src="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement4.png" alt="" width="1050" height="665" /></a><br />
<br/><br />
<br/></p>
<h4>- Through the Windows Share Management interface, you can define advanced settings including NTFS permissions.</h4>
<p><br/><br />
<a href="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement22.png"><img class="alignnone size-full wp-image-139" title="WindowsShareMangement2" src="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement22.png" alt="" width="1197" height="546" /></a><br />
<br/><br />
<br/></p>
<h4>- Although share permissions can be changed here, it is best to change them through the FlexRAID UI.</h4>
<p><br/><br />
<a href="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement32.png"><img class="alignnone size-full wp-image-138" title="WindowsShareMangement3" src="http://www.openegg.org/wp-content/uploads/2011/11/WindowsShareMangement32.png" alt="" width="918" height="608" /></a><br />
<br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/11/20/flexraid-windows-share-management-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexRAID&#8217;s redesigns finally fully ported to Linux</title>
		<link>http://www.openegg.org/2011/11/06/flexraids-redesigns-finally-fully-ported-to-linux/</link>
		<comments>http://www.openegg.org/2011/11/06/flexraids-redesigns-finally-fully-ported-to-linux/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 00:52:39 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=109</guid>
		<description><![CDATA[The FlexRAID redesigns have been finally and fully ported to Linux. With that, FlexRAID now provides a similar and consistent user experience regardless of the platform. Users can choose to run FlexRAID on Windows or on Linux based on their requirements and take advantage of what each platform has to offer. 1. Cruise Control Panel [...]]]></description>
			<content:encoded><![CDATA[<p>The FlexRAID redesigns have been finally and fully ported to Linux.</p>
<p>With that, FlexRAID now provides a similar and consistent user experience regardless of the platform.<br />
Users can choose to run FlexRAID on Windows or on Linux based on their requirements and take advantage of what each platform has to offer.</p>
<h3>1. Cruise Control Panel</h3>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/11/Linux_CC_Home2.png"><img class="alignnone size-full wp-image-110" title="Linux_CC_Home2" src="http://www.openegg.org/wp-content/uploads/2011/11/Linux_CC_Home2.png" alt="" width="911" height="679" /></a></p>
<h3>2. Cruise Control Drive Manager</h3>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/11/Linux_Drive_Manager21.png"><img class="alignnone size-full wp-image-112" title="Linux_Drive_Manager2" src="http://www.openegg.org/wp-content/uploads/2011/11/Linux_Drive_Manager21.png" alt="" width="914" height="674" /></a></p>
<h3>3. Storage Pool</h3>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/11/Linux_Storage_Pool2.png"><img class="alignnone size-full wp-image-113" title="Linux_Storage_Pool2" src="http://www.openegg.org/wp-content/uploads/2011/11/Linux_Storage_Pool2.png" alt="" width="987" height="674" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/11/06/flexraids-redesigns-finally-fully-ported-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real-Time RAID gets Auto-Correction feature</title>
		<link>http://www.openegg.org/2011/11/03/real-time-raid-gets-auto-correction-feature/</link>
		<comments>http://www.openegg.org/2011/11/03/real-time-raid-gets-auto-correction-feature/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 14:37:43 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=105</guid>
		<description><![CDATA[This is the one feature I have been longing to implement for the longest time. Well, it is finally here. It is important to write bug free and user proof code, but the reality is without full control of the user&#8217;s environment, that&#8217;s nearly impossible. The next best thing, however, is the ability to auto-correct. [...]]]></description>
			<content:encoded><![CDATA[<p>This is the one feature I have been longing to implement for the longest time.<br />
Well, it is finally here. <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It is important to write bug free and user proof code, but the reality is without full control of the user&#8217;s environment, that&#8217;s nearly impossible.<br />
The next best thing, however, is the ability to auto-correct. Whether it be from system crash, user error, bug or whatnot, being able to recover and auto-fix is quintessential.</p>
<p>FlexRAID in Real-Time RAID mode can now self correct without needing to bring the storage pool down. That&#8217;s right; FlexRAID can now self correct live! <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The next step will be to make the RAID self-heal the data itself from data rot stemming from memory errors or failing drive errors. The foundation for this next feature is already in the Snapshot RAID implementation. It is now just a matter of bridging the two to close the circle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/11/03/real-time-raid-gets-auto-correction-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FlexRAID Drive Pool and RAID for WHS 2011 spoilers</title>
		<link>http://www.openegg.org/2011/10/18/flexraid-drive-pool-and-raid-for-whs-2011-spoilers/</link>
		<comments>http://www.openegg.org/2011/10/18/flexraid-drive-pool-and-raid-for-whs-2011-spoilers/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 10:30:47 +0000</pubDate>
		<dc:creator>Brahim</dc:creator>
				<category><![CDATA[FlexRAID]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.openegg.org/?p=78</guid>
		<description><![CDATA[FlexRAID provides the cleanest integration into WHS 2011 out of all solutions out there. FlexRAID requires no plugin and presents its Storage Pool drive as a native NTFS drive to WHS 2011. This means you can add and manage a FlexRAID pool drive just like a regular but massive drive in WHS 2011&#8242;s dashboard. 1. [...]]]></description>
			<content:encoded><![CDATA[<p>FlexRAID provides the cleanest integration into WHS 2011 out of all solutions out there.</p>
<p>FlexRAID requires no plugin and presents its Storage Pool drive as a native NTFS drive to WHS 2011.<br />
This means you can add and manage a FlexRAID pool drive just like a regular but massive drive in WHS 2011&#8242;s dashboard.</p>
<p><strong>1. A clean and fresh installation of WHS 2011 + FlexRAID<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/1.-Fresh-Start.png"><img class="alignnone size-full wp-image-83" title="1. Fresh Start" src="http://www.openegg.org/wp-content/uploads/2011/10/1.-Fresh-Start.png" alt="" width="959" height="564" /></a></p>
<p><strong>2. Launch the FlexRAID Web UI<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/2.-Open-FlexRAID.png"><img class="alignnone size-full wp-image-84" title="2. Open FlexRAID" src="http://www.openegg.org/wp-content/uploads/2011/10/2.-Open-FlexRAID.png" alt="" width="952" height="670" /></a></p>
<p><strong>3. Create a new Cruise Control configuration and specify the type of RAID protection you desire<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/3.-Create-Cruise-Control-Config.png"><img class="alignnone size-full wp-image-85" title="3. Create Cruise Control Config" src="http://www.openegg.org/wp-content/uploads/2011/10/3.-Create-Cruise-Control-Config.png" alt="" width="953" height="670" /></a></p>
<p><strong>4. Open the configuration and go to the Drive Manager<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/4.-Open-Configuration.png"><img class="alignnone size-full wp-image-86" title="4. Open Configuration" src="http://www.openegg.org/wp-content/uploads/2011/10/4.-Open-Configuration.png" alt="" width="955" height="626" /></a></p>
<p><strong>5. Use the Drive Manager to manage your storage system<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/5.-Drive-Manager.png"><img class="alignnone size-full wp-image-87" title="5. Drive Manager" src="http://www.openegg.org/wp-content/uploads/2011/10/5.-Drive-Manager.png" alt="" width="806" height="679" /></a></p>
<p><strong>6. Add new drives to your Storage Pool<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/6.-Add-drives-to-pool.png"><img class="alignnone size-full wp-image-88" title="6. Add drives to pool" src="http://www.openegg.org/wp-content/uploads/2011/10/6.-Add-drives-to-pool.png" alt="" width="818" height="658" /></a></p>
<p><strong>7. Add as many PPUs as you require tolerance for your RAID<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/7.-Complete-adding-drives.png"><img class="alignnone size-full wp-image-89" title="7. Complete adding drives" src="http://www.openegg.org/wp-content/uploads/2011/10/7.-Complete-adding-drives.png" alt="" width="808" height="656" /></a></p>
<p><strong>8. Initialize your RAID<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/8.-Initialize-the-RAID.png"><img class="alignnone size-full wp-image-90" title="8. Initialize the RAID" src="http://www.openegg.org/wp-content/uploads/2011/10/8.-Initialize-the-RAID.png" alt="" width="806" height="656" /></a></p>
<p><strong>9. Start the Storage Pool</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/9.-Start-the-storage-pool.png"><img class="alignnone size-full wp-image-91" title="9. Start the storage pool" src="http://www.openegg.org/wp-content/uploads/2011/10/9.-Start-the-storage-pool.png" alt="" width="805" height="656" /></a></p>
<p><strong>10. After the Storage Pool has started, inspect your newly created drive</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/10.-Inspect-your-new-drive.png"><img class="alignnone size-full wp-image-92" title="10. Inspect your new drive" src="http://www.openegg.org/wp-content/uploads/2011/10/10.-Inspect-your-new-drive.png" alt="" width="923" height="655" /></a></p>
<p><strong>11. Verify that WHS correctly picked up the FlexRAID Storage Pool drive<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/11.-Verify-that-WHS-picked-up-the-new-drive.png"><img class="alignnone size-full wp-image-96" title="11. Verify that WHS picked up the new drive" src="http://www.openegg.org/wp-content/uploads/2011/10/11.-Verify-that-WHS-picked-up-the-new-drive.png" alt="" width="811" height="656" /></a></p>
<p><strong>12. Create your server folders using the WHS 2011 dashboard</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/12.-Create-your-server-folders1.png"><img class="alignnone size-full wp-image-103" title="12. Create your server folders" src="http://www.openegg.org/wp-content/uploads/2011/10/12.-Create-your-server-folders1.png" alt="" width="821" height="636" /></a></p>
<p><strong>13. </strong><strong>Confirmation of a successful server folder creation<br />
</strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/13.-Create-your-server-folders-confirmation.png"><img class="alignnone size-full wp-image-98" title="13. Create your server folders (confirmation)" src="http://www.openegg.org/wp-content/uploads/2011/10/13.-Create-your-server-folders-confirmation.png" alt="" width="810" height="636" /></a></p>
<p><strong>14. Enjoy FlexRAID on WHS 2011 <img src='http://www.openegg.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><a href="http://www.openegg.org/wp-content/uploads/2011/10/14.-Enjoy-FlexRAID-on-WHS2011.png"><img class="alignnone size-full wp-image-99" title="14. Enjoy FlexRAID on WHS2011" src="http://www.openegg.org/wp-content/uploads/2011/10/14.-Enjoy-FlexRAID-on-WHS2011.png" alt="" width="800" height="629" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openegg.org/2011/10/18/flexraid-drive-pool-and-raid-for-whs-2011-spoilers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

