<?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 ...</title>
	<atom:link href="http://zpool.org/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>Installing VirtualBox 4.0.6 on NexentaCore 3.x</title>
		<link>http://zpool.org/2011/05/11/installing-virtualbox-4-0-6-on-nexentacore-3-x</link>
		<comments>http://zpool.org/2011/05/11/installing-virtualbox-4-0-6-on-nexentacore-3-x#comments</comments>
		<pubDate>Thu, 12 May 2011 03:29:49 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[nexenta virtualbox]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=98</guid>
		<description><![CDATA[I have been running VirtualBox on NCP for nearly a year now both in production and development environments, thanks to some earlier work by Ernst Gill. I&#8217;ve finally found the time to update his work for VirtualBox 4.0.6. I have unfortunately not had time to test this thoroughly so I&#8217;d appreciate feedback if you find [...]]]></description>
			<content:encoded><![CDATA[<p>I have been running VirtualBox on NCP for nearly a year now both in production and development environments, thanks to some earlier work by <a href="http://www.nexenta.org/boards/1/topics/127">Ernst Gill</a>.  I&#8217;ve finally found the time to update his work for VirtualBox 4.0.6.  I have unfortunately not had time to test this thoroughly so I&#8217;d appreciate feedback if you find something wrong with it.  You can obtain the patch <a href='http://zpool.org/wp-content/uploads/2011/05/vbox-4.0.6-nexenta.tar.gz'>here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2011/05/11/installing-virtualbox-4-0-6-on-nexentacore-3-x/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrating Snow Leopard Server with Unix LDAP and NFS</title>
		<link>http://zpool.org/2011/01/14/integrating-snow-leopard-server-with-unix-ldap-and-nfs</link>
		<comments>http://zpool.org/2011/01/14/integrating-snow-leopard-server-with-unix-ldap-and-nfs#comments</comments>
		<pubDate>Sat, 15 Jan 2011 04:19:23 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[ldap]]></category>
		<category><![CDATA[nfs]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sunray]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=86</guid>
		<description><![CDATA[I recently purchased a pair of Apple Xserve boxes for a project at work, with the goal of providing a functional Mac OS X desktop environment via our existing Sun Ray thin-clients. These two systems will be setup using Aqua Connect aka ACTS in a load-balanced, Windows Terminal Server like fashion. In order to make [...]]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a pair of Apple Xserve boxes for a project at work, with the goal of providing a functional Mac OS X desktop environment via our existing Sun Ray thin-clients.  These two systems will be setup using <a href="http://www.aquaconnect.net/">Aqua Connect</a> aka ACTS in a load-balanced, Windows Terminal Server like fashion.  </p>
<p>In order to make this production worthy, it needs to integrate well with my existing LDAP and NFS environment.  Snow Leopard Server comes with its own built-in Open Directory based on OpenLDAP, but my LDAP instances are based on <a href="http://www.opends.org/">OpenDS</a>.   In researching what would be necessary to make SLS talk to OpenDS, I came across Brent Kearney&#8217;s excellent <a href="http://www.netmojo.ca/2008/03/27/integrating-leopard-server-with-unix-ldap/">Integrating Leopard Server With UNIX LDAP</a> blog posts.  His work is similar to a post by <a href="http://rajeev.name/blog/2006/09/09/integrating-mac-os-x-into-unix-ldap-environment-with-nfs-home-directories/trackback">Rajeev Karamchedu</a> that covers this for Tiger.  In both cases they are using Sun&#8217;s Directory Server product which is similar to but different than OpenDS.</p>
<p>Suffice it to say that I&#8217;m not going to reproduce Brent&#8217;s work but I will document changes that I&#8217;ve had to make in order to make it work on Snow Leopard.  The first of such changes was converting the apple.schema file to something that OpenDS would be happy with.  This was accomplished by using Ludovic Poitou&#8217;s <a href="http://http://blogs.sun.com/Ludo/entry/opends_tips_adding_schema_from">script</a> for converting OpenLDAP schemas to OpenDS LDIF format.  The resulting file still had a few errors that needed to be manually corrected but they were trivial.  A working version of the file can be downloaded  <a href='http://zpool.org/wp-content/uploads/2011/01/92-apple.ldif_.txt'>here</a>.  Note that the original apple.schema relies on some parts of the Samba schema.  I modified mine to use <a href='http://zpool.org/wp-content/uploads/2011/01/50-samba.ldif_.txt'>50-samba.ldif</a> which came from the <a href="https://www.opends.org/wiki/page/SambaPDCServer">OpenDS wiki</a>.</p>
<p>With these two extended schema files in place, all of the special Apple LDAP attributes are now available to me.  The files should also work with <a href="http://www.opendj.org">OpenDJ</a> which I plan on migrating to in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2011/01/14/integrating-snow-leopard-server-with-unix-ldap-and-nfs/feed</wfw:commentRss>
		<slash:comments>1</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>apt.zpool.org Nexenta repository returns</title>
		<link>http://zpool.org/2010/08/02/apt-zpool-org-nexenta-repository</link>
		<comments>http://zpool.org/2010/08/02/apt-zpool-org-nexenta-repository#comments</comments>
		<pubDate>Tue, 03 Aug 2010 00:49:14 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=55</guid>
		<description><![CDATA[I have re-established my local Nexenta repository and am making it available to the public. If you are interested in newer versions of Apache, PHP, and Samba compatible with NCP 2.x or 3.x then you&#8217;ll want to peruse apt.zpool.org. Some other tidbits include the latest stable BCFG2, a patched gamin package that supports Solaris FEN, [...]]]></description>
			<content:encoded><![CDATA[<p>I have re-established my local Nexenta repository and am making it available to the public.  If you are interested in newer versions of Apache, PHP, and Samba compatible with NCP 2.x or 3.x then you&#8217;ll want to peruse <a href="http://apt.zpool.org/">apt.zpool.org</a>.    Some other tidbits include the latest stable <a href="http://bcfg2.org">BCFG2</a>, a patched gamin package that supports Solaris FEN, and a working php5-imap package.</p>
<p>These packages are pulled in from a variety of sources but most of them come from Debian (unstable).  Note that I make no guarantees of any kind so use these packages at your own risk.  I use them in production for machines at work and elsewhere but it doesn&#8217;t mean you should.  Feel free to leave feedback though if you run into any problems.</p>
<p>To add the repository, edit /etc/apt/sources.list and include:<br />
<code><br />
deb http://apt.zpool.org/ hardy-unstable main<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2010/08/02/apt-zpool-org-nexenta-repository/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>How to fix a failed apt-clone dist-upgrade on Nexenta unstable</title>
		<link>http://zpool.org/2009/02/24/fix-a-broken-apt-clone</link>
		<comments>http://zpool.org/2009/02/24/fix-a-broken-apt-clone#comments</comments>
		<pubDate>Tue, 24 Feb 2009 16:27:40 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[opensolaris]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=35</guid>
		<description><![CDATA[The current Nexenta NCP 2.0 hardy-unstable repository has some broken bits that prevent a clean apt-clone dist-upgrade from working. A common question on the IRC channel is how to work around this, and I&#8217;ve answered it enough times that I thought it best to write up some basic instructions. Here&#8217;s an example of what happens: [...]]]></description>
			<content:encoded><![CDATA[<p>The current Nexenta NCP 2.0 hardy-unstable repository has some broken bits that prevent a clean apt-clone dist-upgrade from working.  A common question on the IRC channel is how to work around this, and I&#8217;ve answered it enough times that I thought it best to write up some basic instructions.</p>
<p>Here&#8217;s an example of what happens:</p>
<p><code><br />
# apt-clone -v dist-upgrade<br />
This operation will upgrade your system using ZFS capabilities. Proceed ? (y/n) y</p>
<p>Updating APT sources ...<br />
apt-get -V update<br />
Hit http://apt.nexenta.org hardy-unstable Release.gpg<br />
Hit http://apt.nexenta.org hardy-unstable Release<br />
Hit http://apt.nexenta.org hardy-unstable/main Packages<br />
Hit http://apt.nexenta.org hardy-unstable/contrib Packages<br />
Hit http://apt.nexenta.org hardy-unstable/non-free Packages<br />
Hit http://apt.nexenta.org hardy-unstable/main Sources<br />
Hit http://apt.nexenta.org hardy-unstable/contrib Sources<br />
Hit http://apt.nexenta.org hardy-unstable/non-free Sources<br />
Reading package lists... Done<br />
Initiating Nexenta upgrade procedure. Please wait...<br />
Success. This upgrade will download approximately 38.90MB<br />
This upgrade will require REBOOT. Proceed? (y/n) y</p>
<p>Upgrade is in progress. Please DO NOT interrupt...<br />
Creating Upgrade Checkpoint...<br />
syspool/rootfs-nmu-002: entry not found in menu.lst</p>
<p>Upgrade Checkpoint has been created: rootfs-nmu-002</p>
<p>Use 'zfs list -r syspool' command to list all available<br />
upgrade/rollback checkpoints</p>
<p>apt-get -V -y install dpkg apt<br />
Reading package lists... Done<br />
Building dependency tree<br />
Reading state information... Done<br />
dpkg is already the newest version.<br />
apt is already the newest version.<br />
0 upgraded, 0 newly installed, 0 to remove and 16 not upgraded.<br />
rmdir /tmp/upgrade-attempt.21883 2&gt;/dev/null<br />
mkdir /tmp/upgrade-attempt.21883<br />
mount -F zfs syspool/rootfs-nmu-002 /tmp/upgrade-attempt.21883 2&gt;/dev/null<br />
chroot /tmp/upgrade-attempt.21883 mount /proc 2&gt;/dev/null<br />
mount -F lofs -O /etc/mnttab /tmp/upgrade-attempt.21883/etc/mnttab 2&gt;/dev/null<br />
mount -F lofs -O /devices /tmp/upgrade-attempt.21883/devices 2&gt;/dev/null<br />
APT_CLONE_ENV=1 chroot /tmp/upgrade-attempt.21883 apt-get -V  -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"  dist-upgrade<br />
Reading package lists... Done<br />
Building dependency tree<br />
Reading state information... Done<br />
Calculating upgrade... Done<br />
The following packages will be upgraded:<br />
man-db (2.5.2-2nexenta1 =&gt; 2.5.2-2nexenta2)<br />
sunwcakr (5.11.104-2 =&gt; 5.11.104-3)<br />
sunwckr (5.11.104-4 =&gt; 5.11.104-5)<br />
sunwcsl (5.11.104-5 =&gt; 5.11.104-6)<br />
sunwemlxs (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwiscsidmr (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwiscsidmu (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwiscsir (5.11.104-5 =&gt; 5.11.104-6)<br />
sunwiscsitr (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwiscsitu (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwkrbu (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwstmf (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwstmfu (5.11.104-1 =&gt; 5.11.104-2)<br />
sunwzfskr (5.11.104-5 =&gt; 5.11.104-7)<br />
sunwzfsr (5.11.104-4 =&gt; 5.11.104-6)<br />
sunwzfsu (5.11.104-4 =&gt; 5.11.104-6)<br />
16 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 20.8MB/38.9MB of archives.<br />
After this operation, 3048kB disk space will be freed.<br />
Do you want to continue [Y/n]? y<br />
Get:1 http://apt.nexenta.org hardy-unstable/main sunwcakr 5.11.104-3 [2462kB]<br />
Get:2 http://apt.nexenta.org hardy-unstable/main sunwckr 5.11.104-5 [14.5MB]<br />
Get:3 http://apt.nexenta.org hardy-unstable/main sunwzfsr 5.11.104-6 [453kB]<br />
Get:4 http://apt.nexenta.org hardy-unstable/main man-db 2.5.2-2nexenta2 [1050kB]<br />
Get:5 http://apt.nexenta.org hardy-unstable/main sunwiscsir 5.11.104-6 [236kB]<br />
Get:6 http://apt.nexenta.org hardy-unstable/main sunwzfskr 5.11.104-7 [851kB]<br />
Get:7 http://apt.nexenta.org hardy-unstable/main sunwzfsu 5.11.104-6 [1253kB]<br />
Fetched 20.8MB in 49s (420kB/s)<br />
nl.1: sh: fatal: relocation error: file /lib/libncurses.so.5: symbol main: referenced symbol not found<br />
E: Sub-process /usr/bin/apt-clone -c exited unexpectedly<br />
E: Failure running script /usr/bin/apt-clone -c<br />
chroot /tmp/upgrade-attempt.21883 umount /proc 2&gt;/dev/null<br />
umount /tmp/upgrade-attempt.21883/etc/mnttab 2&gt;/dev/null<br />
umount /tmp/upgrade-attempt.21883/devices 2&gt;/dev/null<br />
rm -rf /tmp/nl*<br />
umount /tmp/upgrade-attempt.21883 2&gt;/dev/null<br />
rmdir /tmp/upgrade-attempt.21883<br />
Upgrade failed. Would you like to rollback changes now? (y/n)<br />
</code></p>
<p>In order to fix this, you would answer no to the rollback and then execute something like this:</p>
<p><code><br />
# mount -F zfs syspool/rootfs-nmu-002 /mnt<br />
# chroot /mnt mount /proc<br />
# mount -F lofs -O /etc/mnttab /mnt/etc/mnttab<br />
# mount -F lofs -O /devices /mnt/devices<br />
# chroot /mnt<br />
</code></p>
<p>Now from within the chroot, execute:</p>
<p><code><br />
# rm -r /tmp/nl*<br />
# APT_CLONE_ENV=1 apt-get -V  -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold"  dist-upgrade<br />
# bootadm update-archive<br />
# exit<br />
</code></p>
<p>This should get all the packages within the clone upgraded properly, update the boot archive, and back you out of the clone.  Now you need to install a new grub, unmount the clone, and reboot:</p>
<p><code><br />
# installgrub /mnt/boot/grub/stage1 /mnt/boot/grub/stage2 /dev/rdsk/<br />
# installgrub /mnt/boot/grub/stage1 /mnt/boot/grub/stage2 /dev/rdsk/ (if you have one)<br />
# chroot /mnt umount /proc<br />
# umount /mnt/devices<br />
# umount /mnt/etc/mnttab<br />
# umount /mnt<br />
</code></p>
<p>Obviously you&#8217;ll need to replace  with the correct device(s), such as c0d0s0 and c1d0s0.  If you don&#8217;t know which devices to use, run <strong>zpool status syspool</strong> and it should tell you.  Note above that we did not activate the new clone as the default bootfs.  It is best now to reboot, select the new entry from the grub menu, and verify that the clone is working properly.  Once you&#8217;re booted into the clone, you can run <strong>apt-clone -a rootfs-nmu-002</strong> to make it the default.</p>
<p>Hopefully this helps some of you out there having problems.  Feel free to drop by ##nexenta on irc.freenode.net if you require more assistance.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2009/02/24/fix-a-broken-apt-clone/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>Flash 10 on Sun Ray</title>
		<link>http://zpool.org/2008/12/12/flash-10-on-sun-ray</link>
		<comments>http://zpool.org/2008/12/12/flash-10-on-sun-ray#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:44:10 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[sunray]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://zpool.org/?p=22</guid>
		<description><![CDATA[Once again I&#8217;m revisiting the state of Flash support running under Sun Ray software. My previous post showed there had been improvements made on this front. How are things doing over a year later? My Sun Ray environment today is using Ubuntu Hardy and Flash 10 from the included flashplugin-nonfree package. I&#8217;m still using PulseAudio [...]]]></description>
			<content:encoded><![CDATA[<p>Once again I&#8217;m revisiting the state of Flash support running under Sun Ray software.  My <a href="http://zpool.org/2007/10/26/flash-9-on-sun-ray-followup">previous</a> post showed there had been improvements made on this front.  How are things doing over a year later?</p>
<p>My Sun Ray environment today is using Ubuntu Hardy and Flash 10 from the included flashplugin-nonfree package.  I&#8217;m still using PulseAudio with a <a href="http://www.mail-archive.com/sunray-users@filibeto.org/msg09965.html">workaround</a> by Sebastian Hesselbarth that nicely configures pulseaudio for each user and redirects sound through the appropriate $UTAUDIODEV device.  No more libflashsupport dependency.  With this in place, users launch the Sound configuration in GNOME and set all options to &#8220;PulseAudio Sound Server&#8221;, and it just works.  </p>
<p>Unfortunately the smurfing effect has returned in Flash 10, having been temporarily fixed at one point in a Flash 9 beta.  Someone filed a <a href="http://bugs.adobe.com/jira/browse/FP-764">bug</a> with Adobe recently about this, and it appears it is being investigated.  Hopefully Adobe can fix this soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2008/12/12/flash-10-on-sun-ray/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexenta and third-party APT repositories</title>
		<link>http://zpool.org/2008/04/10/nexenta-and-third-party-apt-repositories</link>
		<comments>http://zpool.org/2008/04/10/nexenta-and-third-party-apt-repositories#comments</comments>
		<pubDate>Fri, 11 Apr 2008 03:55:04 +0000</pubDate>
		<dc:creator>pds</dc:creator>
				<category><![CDATA[nexenta]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[xfce]]></category>

		<guid isPermaLink="false">http://zpool.org/2008/04/10/nexenta-and-third-party-apt-repositories</guid>
		<description><![CDATA[NexentaOS has come a long way over the last year, and has recently released Nexenta Core Platform 1.0 which is considered stable. In doing so, the developers are providing a minimal core set of well tested packages somewhat akin to Debian&#8217;s netinst that can be used for building up servers or entire distributions. In fact, [...]]]></description>
			<content:encoded><![CDATA[<p>NexentaOS has come a long way over the last year, and has recently released <a href="http://www.nexenta.org/os/Elatte_Release">Nexenta Core Platform 1.0</a> which is considered stable.  In doing so, the developers are providing a minimal core set of well tested packages somewhat akin to Debian&#8217;s <a href="http://www.debian.org/CD/netinst/">netinst</a> that can be used for building up servers or entire distributions.   In fact, they&#8217;re encouraging this by providing a <a href="http://www.nexenta.org/os/DistributionBuilder">distribution builder</a>.  This opens up many possibilities for extending what you can do with the OS, and I hope to start experimenting with it soon to produce an updated XFCE4 desktop.</p>
<p>In the meantime, I&#8217;m making my <a href="http://apt.zpool.org/">experimental APT repository</a> available.  This is just a collection of packages I&#8217;ve had to compile over the last year or so to support work related projects.  Some of these packages require manually patching and other changes to get compiled properly and I am remiss in getting these submitted upstream.  My next goal is to get as many of these as possible (within the <a href="http://www.nexenta.org/os/NexentaRepositoryPolicyMain">repository guidelines</a>) into the official Nexenta APT repository and actually start maintaining some of them.  Anyway, I hope some of these packages prove useful to others.</p>
]]></content:encoded>
			<wfw:commentRss>http://zpool.org/2008/04/10/nexenta-and-third-party-apt-repositories/feed</wfw:commentRss>
		<slash:comments>0</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 06:37:38 -->
