<?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># zpool create ... &#187; zfs</title>
	<atom:link href="http://zpool.org/category/zfs/feed" rel="self" type="application/rss+xml" />
	<link>http://zpool.org</link>
	<description>storage for my thoughts</description>
	<lastBuildDate>Tue, 17 Jan 2012 02:25:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to fix a stuck ZFS log device</title>
		<link>http://zpool.org/2012/01/10/how-to-fix-a-stuck-zfs-log-device</link>
		<comments>http://zpool.org/2012/01/10/how-to-fix-a-stuck-zfs-log-device#comments</comments>
		<pubDate>Wed, 11 Jan 2012 01:52:20 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=121</guid>
		<description><![CDATA[I ran into a troublesome ZFS bug several months ago where a pool with a log device became &#8220;stuck&#8221;. The &#8216;zpool remove&#8217; command would complete but would not remove the device. This was a bad place to be in, because the device was no longer usable, could not be removed, and would most likely prevent [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a troublesome ZFS bug several months ago where a pool with a log device became &#8220;stuck&#8221;.  The &#8216;zpool remove&#8217; command would complete but would not remove the device. This was a bad place to be in, because the device was no longer usable, could not be removed, and would most likely prevent the pool from ever being exported and reimported again.   Someone else had posted on the zfs-discuss mailing list about the same problem and put me in contact with George Wilson, who in turn put me on the right track to a successful workaround.  Log devices exhibiting this behavior need to have a specific field of a data structure zeroed out, and then the remove command will actually finish removing the device.</p>
<p>The procedure for fixing this is:</p>
<p>Find the corresponding virtual memory hex address on the left for the stuck log device on the right.</p>
<p><code> # echo '::spa -v | mdb -k'<br />
...<br />
ffffff0946273d40 HEALTHY   -              /dev/dsk/c4t5000CCA000342E60d0s0<br />
ffffff0946274380 HEALTHY   -              /dev/dsk/c7d0s0<br />
-                -         -            cache<br />
ffffff094b069680 HEALTHY   -              /dev/dsk/c7d0s1<br />
</code></p>
<p>Find the corresponding virtual memory hex address on the left for the field vdev_stat.vs_alloc.</p>
<p><code> # echo 'ffffff0946273d40::print -a vdev_t vdev_stat' | mdb -k<br />
vdev_stat = {<br />
ffffff0946273f70 vdev_stat.vs_timestamp = 0x52bcba2a6c<br />
ffffff0946273f78 vdev_stat.vs_state = 0<br />
ffffff0946273f80 vdev_stat.vs_aux = 0<br />
ffffff0946273f88 vdev_stat.vs_alloc = 0xfffffffffffe0000<br />
ffffff0946273f90 vdev_stat.vs_space = 0x222c000000<br />
ffffff0946273f98 vdev_stat.vs_dspace = 0x222c000000<br />
ffffff0946273fa0 vdev_stat.vs_rsize = 0<br />
ffffff0946273fa8 vdev_stat.vs_ops = [ 0x5, 0x1c, 0x20b, 0, 0, 0x92 ]<br />
ffffff0946273fd8 vdev_stat.vs_bytes = [ 0, 0x12a000, 0x640000, 0, 0, 0 ]<br />
ffffff0946274008 vdev_stat.vs_read_errors = 0<br />
ffffff0946274010 vdev_stat.vs_write_errors = 0<br />
ffffff0946274018 vdev_stat.vs_checksum_errors = 0<br />
ffffff0946274020 vdev_stat.vs_self_healed = 0<br />
ffffff0946274028 vdev_stat.vs_scan_removing = 0x1<br />
ffffff0946274030 vdev_stat.vs_scan_processed = 0<br />
}<br />
</code></p>
<p>Change the value. Depending on the size of the current value, you may need to use /Z0 to zero the field.</p>
<p><code> # echo 'ffffff0946273f88/Z0' | mdb -kw<br />
0xffffff0946273f88:             0xffffffff00000000      =       0x0<br />
</code></p>
<p>Verify that &#8216;zpool iostat -v &lt;pool&gt;&#8217; shows the alloc column for the stuck log device is now 0 and then re-issue the zpool remove command.</p>
<p><code> # zpool iostat -v data<br />
capacity   operations       bandwidth<br />
pool                      alloc  free  read    write  read   write<br />
-------------------------  -----  -----  -----  -----  -----  -----<br />
...<br />
c4t5000CCA000342E60d0         0  137G     0     0     0     0<br />
c7d0s0                    16.0E  9.94G     0     0     0     0<br />
cache                         -     -     -     -     -     -<br />
c7d0s1                    64.9G  7.78M    17    59  394K 7.07M<br />
-------------------------  -----  -----  -----  -----  -----  -----</code></p>
<p><code> </code></p>
<p><code># zpool remove data c4t5000CCA000342E60d0<br />
</code></p>
<p>I experienced this problem on NexentaCore 3.1 which shares the same kernel bits with NexentaStor 3.x.  Someone apparently filed a bug with Oracle (CR 7000154) but the information is locked away behind their paid support portal for those that don&#8217;t have access.  I haven&#8217;t looked recently but at the time there wasn&#8217;t an Illumos bug filed and it&#8217;s still not fixed.  Hopefully the above information will help others experiencing this problem, however, please note that I am not responsible for any damage this might do to your data.  Please make sure you have things backed up, and be aware that inputting anything to mdb in this manner can cause a kernel panic on a running system!</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2012/01/10/how-to-fix-a-stuck-zfs-log-device/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New co-lo box</title>
		<link>http://zpool.org/2010/10/19/new-co-lo-box</link>
		<comments>http://zpool.org/2010/10/19/new-co-lo-box#comments</comments>
		<pubDate>Wed, 20 Oct 2010 03:14:57 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[zfs]]></category>
		<category><![CDATA[ssd]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=64</guid>
		<description><![CDATA[It has been about six years since I last upgraded my co-lo box that hosts a myriad of services and websites for opensource, business, friends, and personal hobbies. Now I have a new machine in place that should last at least another six years. A tremendous amount of thanks goes out to Andrew at NETPLEX [...]]]></description>
			<content:encoded><![CDATA[<p>It has been about six years since I last upgraded my co-lo box that hosts a myriad of services and websites for opensource, business, friends, and personal hobbies. Now I have a new machine in place that should last at least another six years.  A tremendous amount of thanks goes out to Andrew at <a href="http://www.netplex.net/">NETPLEX</a> for dealing with the inevitable problems that come up when you ship a machine nearly 1000 miles.  No matter how prepared you think you are <strong>it&#8217;s. never. easy.</strong>  Regardless, the guys at NETPLEX went way beyond the call of duty to help get everything installed and setup so I could proceed with the migration.</p>
<p>The new box came together after I scored a good deal on several 3U Chenbro chassis that included rails and a redundant PSU.  The full components list includes:</p>
<ul>
<li><a href="http://usa.chenbro.com/corporatesite/products_detail.php?sku=30">Chenbro RM31212 3U Rackmount Chassis</a></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819117234">Intel Xeon E5620 Westmere 2.4GHz Quad-Core CPU</a> (x2)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813182174">Supermicro X8DTH-6F Motherboard</a></li>
<li><a href="http://www.crucial.com/store/mpartspecs.aspx?mtbpoid=BEB9F262A5CA7304">Crucial 4GB DDR3 PC3-8500 DIMM</a> (x8)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820227610">OCZ Vertex 2 40GB SATAII SSDs</a> (x2 for mirrored zfs system pool)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820167027&#038;cm_re=intel_80gb_x25-m-_-20-167-027-_-Product">Intel X25-M 80GB SATAII SSD</a> (L2ARC read cache)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822145298&#038;Tpk=hitachi%207k2000">Hitachi 7K2000 SATAII Hard Drives</a> (x6 for raidz2 mirrored zfs data pool)</li>
</ul>
<p>The Supermicro motherboard has dual SAS2 ports onboard that posed a small challenge for the Chenbro case, but it was nothing a little bit of dremel tool action couldn&#8217;t solve.  Other than that everything went together well and I&#8217;m really happy with how it turned out.   I have plenty of room for expansion with six additional hot-swap bays, four additional memory slots, and seven PCI Express slots.  This bad boy is running NCP 3.0.1 along with most of the newer packages I&#8217;ve been backporting. It should be able to handle quite a large number of zones and VirtualBox VMs among other things.</p>
<p>Here are a few pictures I took after everything was assembled:</p>
<p><a href="http://zpool.org/wp-content/uploads/2010/10/colo_front1.png" rel="lightbox[64]"><img src="http://zpool.org/wp-content/uploads/2010/10/colo_front1.png" alt="" title="Front of new box" width="640" height="328" class="alignnone size-full wp-image-69" /></a><a href="http://zpool.org/wp-content/uploads/2010/10/colo_back1.png" rel="lightbox[64]"><img src="http://zpool.org/wp-content/uploads/2010/10/colo_back1.png" alt="" title="Back of new box" width="640" height="387" class="alignnone size-full wp-image-68" /></a><a href="http://zpool.org/wp-content/uploads/2010/10/colo_inside1.png" rel="lightbox[64]"><img src="http://zpool.org/wp-content/uploads/2010/10/colo_inside1.png" alt="" title="Insides of new box" width="640" height="422" class="alignnone size-full wp-image-70" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2010/10/19/new-co-lo-box/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supercharge your X4500 Thumper with SSDs</title>
		<link>http://zpool.org/2009/05/13/thumper-with-ssd</link>
		<comments>http://zpool.org/2009/05/13/thumper-with-ssd#comments</comments>
		<pubDate>Wed, 13 May 2009 16:32:22 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[zfs]]></category>
		<category><![CDATA[ssd]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=38</guid>
		<description><![CDATA[Hybrid storage pools are the new coolest thing in ZFS land and are being pushed commercially with the recent release of Sun&#8217;s 7000 series open storage. For various reasons, Sun has only added a supported SSD option to the X4540 Thor systems. This unfortunately doesn&#8217;t help those of us wanting to extend our X4500 Thumper [...]]]></description>
			<content:encoded><![CDATA[<p>Hybrid storage pools are the new coolest thing in ZFS land and are being pushed commercially with the recent release of Sun&#8217;s <a href="http://www.sun.com/storage/openstorage/products.jsp">7000 series open storage</a>.  For various reasons, Sun has only added a supported SSD option to the X4540 Thor systems.  This unfortunately doesn&#8217;t help those of us wanting to extend our X4500 Thumper investments and get in on the SSD performance action.  I&#8217;m fairly certain you could buy Sun&#8217;s Thor solution and use it in your Thumper, but I for one wasn&#8217;t impressed with the price.</p>
<p>Fortunately there is a simple, relatively inexpensive way to use SSD drives with your Thumper.  Here&#8217;s what you need:</p>
<p>
<a href="http://www.sun.com/servers/x64/x4500/"><img src="http://zpool.org/wp-content/uploads/2009/05/x4500-293x300.jpg" alt="" title="x4500" width="293" height="300" class="alignleft size-medium wp-image-40" /></a> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820167013"><img src="http://zpool.org/wp-content/uploads/2009/05/intel-x25e-278x300.jpg" alt="" title="intel x25-e" width="278" height="300" class="alignleft size-medium wp-image-42" /></a> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16817994064"><img src="http://zpool.org/wp-content/uploads/2009/05/mb882sp-1s-1b-300x225.jpg" alt="" title="Icy Dock SSD to SATA converter" width="300" height="225" class="alignnone size-medium wp-image-43" /></a></p>
<p>You&#8217;ll also want a <a href="http://mxsun.stores.yahoo.net/5410456.html">spare X4500 drive bracket</a> unless you&#8217;re willing to use a bracket from the drive(s) you have to pull out.  Insert your Intel X25-E SSD into the Icy Dock, attach the Icy Dock to the X4500 bracket like any 3.5&#8243; drive, and insert the result into your Thumper.  Voila.  The Icy Dock bay is well constructed despite being plastic (I would prefer it was made out of aluminum).  Also, $20 for a hunk of plastic and a converter isn&#8217;t ideal, but those of you that would suggest duct tape have no sense of aesthetics.</p>
<p>In my case, I swapped out two 1TB drives for two 32GB Intel X25-E SSDs.  I then partitioned the SSDs into two slices, one for mirrored system disks and the other for ZIL.  They show up and work just fine:</p>
<pre>
platform = Sun Fire X4500

Device    Serial        Vendor   Model             Rev  Temperature
------    ------        ------   -----             ---- -----------
c0t0d0p0  E002PAJTBX4E  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c0t1d0p0  E002PAJTBWTE  ATA      HITACHI HUA7210S  A90A 30 C (86 F)
c0t2d0p0  F002PAJSY2AF  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c0t3d0p0  F002PAJSV5BF  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c0t4d0p0  E002PAJTBX1E  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c0t5d0p0  E002PAJTBWME  ATA      HITACHI HUA7210S  A90A 32 C (89 F)
c0t6d0p0  F002PAJS156F  ATA      HITACHI HUA7210S  A90A 34 C (93 F)
c0t7d0p0  F002PAJSW14F  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c1t0d0p0  E002PAJT4VLE  ATA      HITACHI HUA7210S  A90A 29 C (84 F)
c1t1d0p0  E002PAJTBWWE  ATA      HITACHI HUA7210S  A90A 32 C (89 F)
c1t2d0p0  F002PAJSZP2F  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c1t3d0p0  E002PAJT5BUE  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c1t4d0p0  E002PAJTBX7E  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c1t5d0p0  E002PAJTBX3E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c1t6d0p0  F002PAJS1DEF  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c1t7d0p0  E002PAJT541E  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c5t0d0p0  E002PAJTA8WE  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c5t1d0p0  E002PAJTAJ0E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c5t2d0p0  E002PAJT50KE  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c5t3d0p0  E002PAJTB9LE  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c5t4d0p0  E002PAJTAGME  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c5t5d0p0  E002PAJT58JE  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c5t6d0p0  E002PAJT52TE  ATA      HITACHI HUA7210S  A90A 34 C (93 F)
c5t7d0p0  E002PAJT4UNE  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c6t0d0p0  140067032HGN  ATA      SSDSA2SH032G1GN   8850 255 C (491 F)
c6t1d0p0  E002PAJTAJ6E  ATA      HITACHI HUA7210S  A90A 30 C (86 F)
c6t2d0p0  F002PAJSZNEF  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c6t3d0p0  E002PAJTBH7E  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c6t4d0p0  1400CB032HGN  ATA      SSDSA2SH032G1GN   8850 255 C (491 F)
c6t5d0p0  E002PAJT120E  ATA      HITACHI HUA7210S  A90A 30 C (86 F)
c6t6d0p0  F002PAJS79AF  ATA      HITACHI HUA7210S  A90A 32 C (89 F)
c6t7d0p0  E002PAJT5UZE  ATA      HITACHI HUA7210S  A90A 34 C (93 F)
c7t0d0p0  E002PAJTBVJE  ATA      HITACHI HUA7210S  A90A 29 C (84 F)
c7t1d0p0  E002PAJTAJ3E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c7t2d0p0  E002PAJT53ME  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c7t3d0p0  F002PAJSZNDF  ATA      HITACHI HUA7210S  A90A 34 C (93 F)
c7t4d0p0  E002PAJTBL8E  ATA      HITACHI HUA7210S  A90A 27 C (80 F)
c7t5d0p0  E002PAJTAK4E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c7t6d0p0  F002PAJS56AF  ATA      HITACHI HUA7210S  A90A 32 C (89 F)
c7t7d0p0  F002PAJSAW1F  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c8t0d0p0  E002PAJTAHTE  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c8t1d0p0  E002PAJSRR8E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c8t2d0p0  F002PAJT7YAF  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c8t3d0p0  E002PAJT4W9E  ATA      HITACHI HUA7210S  A90A 35 C (95 F)
c8t4d0p0  E002PAJT583E  ATA      HITACHI HUA7210S  A90A 28 C (82 F)
c8t5d0p0  E002PAJTAG8E  ATA      HITACHI HUA7210S  A90A 31 C (87 F)
c8t6d0p0  E002PAJTBATE  ATA      HITACHI HUA7210S  A90A 33 C (91 F)
c8t7d0p0  E002PAJT52UE  ATA      HITACHI HUA7210S  A90A 34 C (93 F)
</pre>
<p></p>
<p>
<b>Updated: 2010/04/02</b></p>
<p>The high temperature shown for the SSDs is simply due to Sun&#8217;s <i>hd</i> utility not comprehending the return values properly.  This is probably due to non-Sun firmware or lack of SSD specific awareness but it does not affect operation.  There have been <a href="http://www.mail-archive.com/zfs-discuss@opensolaris.org/msg29164.html">other reports</a> of problems with FMA marking the drives as faulty (which may or may not bother you), but the most recent Intel firmware seems to have resolved this.  I have been running these SSDs in two X4500s for nearly a year with no problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2009/05/13/thumper-with-ssd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My ZFS media server</title>
		<link>http://zpool.org/2008/12/16/my-zfs-media-server</link>
		<comments>http://zpool.org/2008/12/16/my-zfs-media-server#comments</comments>
		<pubDate>Tue, 16 Dec 2008 07:07:26 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[zfs]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=26</guid>
		<description><![CDATA[Every self-respecting geek has a home media server to store their CD and DVD rips, downloaded TV shows, photos, etc. and I&#8217;m no exception. I&#8217;ve always found it interesting to see what others put together to fill this void, so I&#8217;m returning the favor by showing off my current setup: The full components list includes: [...]]]></description>
			<content:encoded><![CDATA[<p>Every self-respecting geek has a home media server to store their CD and DVD rips, downloaded TV shows, photos, etc. and I&#8217;m no exception.  I&#8217;ve always found it interesting to see what others put together to fill this void, so I&#8217;m returning the favor by showing off my current setup:</p>
<p><a href="http://zpool.org/wp-content/uploads/2008/12/media_server.png" rel="lightbox[26]"><img class="size-full wp-image-27" title="media_server" src="http://zpool.org/wp-content/uploads/2008/12/media_server.png" alt="my zfs media server" width="500" height="410" /></a></p>
<p>The full components list includes:</p>
<ul>
<li><a href="http://usa.chenbro.com/corporatesite/products_detail.php?serno=33">Chenbro RM31212B 3U Rackmount Chassis</a> including a 460W Zippy PSU</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819115202">Intel Core i7 920 Nehalem 2.66GHz Quad-Core</a></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820148247">Crucial 6GB 240-Pin DDR3 SDRAM (PC3 10600) Triple Channel Memory Kit</a></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813182165">Supermicro MBD-X8SAX-O Intel X58 Server Motherboard</a></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822148106">Seagate Barracuda 7200.9 ST3120813AS 120GB 7200 RPM Sata Hard Drive</a>(x2 system drives)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822148065">Seagate Barracuda 7200.8 ST3250823AS 250GB 7200 RPM Sata Hard Drive (x6 data drives)</a></li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16822148274">Seagate Barracuda 7200.11 ST31000340AS 1TB 7200 RPM SATA Hard Drive</a> (x6 data drives)</li>
<li><a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16815124027">SYBA SD-SA2PEX-2IR PCI-e SATA II card</a> (x2)</li>
<li>Supermicro AOC-SAT-MV8 (x1)</li>
<li>Ancient Matrox PCI video card</li>
</ul>
<p><strong>platinum.alloy.net</strong> serves up audio/video/photos/etc. to two <a href="http://wiki.awkwardtv.org/">hacked AppleTV</a> boxes, my wife&#8217;s iMac, and my Mac Pro via Samba.   It also serves up home directories for the <a href="http://wiki.sun-rays.org/">Sun Ray thin-client</a> in the kitchen and acts as a backup server for our Macbook Pro laptops.</p>
<p>It has been through a number of incarnations over the years.   I picked up the Chenbro case off eBay a year or so ago for around $350 which was a steal, considering they run upwards of $800 new.  The motherboard, CPU, memory, and 1TB drives are new as of December 2008 (early Christmas present, yay!).   Everything else I&#8217;ve had for a couple of years and it&#8217;s been the usual organic upgrade process.   The Supermicro MBD-X8SAX-O motherboard is so new that I must have been the first one to buy it off Newegg.   The price for the new motherboard/cpu/memory dropped about $100 less than a week after I ordered, and I hadn&#8217;t even received the parts yet.  Typical!  I tend not to be so bleeding edge and only upgrade every three years or so, but the timing was right and Nehalem was calling me in my sleep.</p>
<p>I was previously using a Tyan S2865G2NR board with a 2.2GHz AMD Athlon X2 and 4GB of Crucial memory.  There was nothing wrong with this other than it didn&#8217;t have enough PCI-X or PCI-E slots, and socket 939 is getting a bit long in the tooth.  The upshot is that I can get ~$200 out of the old parts on eBay and recoup some of the bleeding edge cost.</p>
<p>Upgrading to the new motherboard was mostly straightforward, although I had to do a manual dist-upgrade to the latest <a href="http://nexenta.org/">NexentaCP</a> unstable since the OpenSolaris b85 kernel had problems booting.  I burned <a href="http://www.nexenta.org/releases/nexenta-core-platform_2.0-b85-alpha2_x86.iso.zip">NexentaCore 2.0 Alpha1</a> and used the recovery grub option to login, mount my syspool, and fix things.  I&#8217;m in the process of migrating all the data off the six Seagate 250GB drives which are attached to the AOC-SAT-MV8.  This card has had a lot of problems with ZFS and has been discontinued by Supermicro in favor of the AOC-SAT2-MV8.   Whenever I expand beyond six disks, I&#8217;m going to skip straight to the <a href="http://www.supermicro.com/products/accessories/addon/AOC-USAS-L8i.cfm">AOC-USAS-L8i</a> using mini-SAS to SATA cables.</p>
<p>So far the new board/cpu/memory appear stable, and it&#8217;s been serving up WALL-E repeatedly to our three year old for a few days now.   It&#8217;s nice to see Hyperthreading giving us what appears as 8 core bling:</p>
<p><code><br />
# psrinfo -v<br />
Status of virtual processor 0 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:47.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 1 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 2 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 3 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 4 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 5 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 6 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
Status of virtual processor 7 as of: 12/15/2008 22:56:39<br />
on-line since 12/14/2008 18:22:51.<br />
The i386 processor operates at 2660 MHz,<br />
and has an i387 compatible floating point processor.<br />
</code></p>
<p>I&#8217;ll work on benchmarking this home-grown thumper after the New Year.  The next upgrade is to install four <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16820167005">Intel X25-M SSDs</a> for the ZIL and L2ARC caches.  Given the cost I think I&#8217;ll wait awhile this time.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2008/12/16/my-zfs-media-server/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ultimate Home ZFS Storage Server?</title>
		<link>http://zpool.org/2007/10/31/ultimate-home-zfs-storage-server</link>
		<comments>http://zpool.org/2007/10/31/ultimate-home-zfs-storage-server#comments</comments>
		<pubDate>Wed, 31 Oct 2007 05:28:15 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[zfs]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://zpool.org/2007/10/31/ultimate-home-zfs-storage-server</guid>
		<description><![CDATA[Chenbro has announced a new mini-itx home server/NAS chassis that would make for a super small, super quiet OpenSolaris ZFS storage server. Couple this with an MSI Industrial 945GM1 Core 2 Duo Mainboard, 4GB of memory, a 2.5&#8243; system disk, four 750GB or 1TB data drives, and a cheap four port PCI SATA card, maybe [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: center"><img src="http://zpool.org/wp-content/uploads/2007/10/es34069.jpg" alt="es34069.jpg" height="456" width="328" /></div>
<p>Chenbro has <a href="http://usa.chenbro.com/corporatesite/products_detail.php?serno=97">announced</a> a new mini-itx home server/NAS chassis that would make for a super small, super quiet OpenSolaris ZFS storage server.  Couple this with an <a href="http://www.logicsupply.com/products/ms_7265">MSI Industrial 945GM1 Core 2 Duo Mainboard</a>, 4GB of memory, a 2.5&#8243; system disk, four 750GB or 1TB data drives, and a cheap <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16816132006">four port PCI SATA card</a>, maybe an SD card or two for the <a href="http://blogs.sun.com/perrin/entry/slog_blog_or_blogging_on">slog</a>, and you&#8217;ll have yourself a mini-thumper.  The only con for me is the single system disk, although there are creative solutions around that.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2007/10/31/ultimate-home-zfs-storage-server/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: zpool.org @ 2012-02-07 07:12:11 -->
