<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rich0&#039;s Gentoo Blog</title>
	<atom:link href="http://rich0gentoo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rich0gentoo.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 22 Jan 2012 22:23:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rich0gentoo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rich0&#039;s Gentoo Blog</title>
		<link>http://rich0gentoo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rich0gentoo.wordpress.com/osd.xml" title="Rich0&#039;s Gentoo Blog" />
	<atom:link rel='hub' href='http://rich0gentoo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>A Quick Dracut Module</title>
		<link>http://rich0gentoo.wordpress.com/2012/01/21/a-quick-dracut-module/</link>
		<comments>http://rich0gentoo.wordpress.com/2012/01/21/a-quick-dracut-module/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:28:36 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=142</guid>
		<description><![CDATA[Since the general trend on many linux distros is towards requiring /usr to be mounted at boot time, I figured I&#8217;d see what it would take to get it working using dracut. I&#8217;ve been messing with dracut for a while, and for some reason it stubbornly refuses to detect my raid devices. The kernel autodetection [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=142&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since the general trend on many linux distros is towards requiring /usr to be mounted at boot time, I figured I&#8217;d see what it would take to get it working using dracut.</p>
<p>I&#8217;ve been messing with dracut for a while, and for some reason it stubbornly refuses to detect my raid devices.  The kernel autodetection works fine, but this is disabled when booting from an initramfs.  Dracut would timeout and drop me to a dash shell, and if I just typed mdadm -As followed by exit it would boot just fine.  </p>
<p>Dracut is using udev to set up raid devices, and obviously that is not working.</p>
<p>Beyond this, I&#8217;d like to get my /usr mounted pre-boot, and there is a module called usrmount that purports to do just this.  However, it isn&#8217;t working in my case because /usr is a bind mount to a subdir on an lvm volume, and it just isn&#8217;t figuring that out (it doesn&#8217;t even run lvm in the first place despite having the module installed, let alone figuring out what to mount in what order &#8211; I suspect the lvm module only works if root is on lvm).</p>
<p>My solution to both problems is to build my own simple dracut module.  If you want to try it out:</p>
<ol>
<li>cd /usr/lib/dracut/modules.d/</li>
<li>mkdir 91local</li>
<li>cat &gt; 91local/module-setup.sh<br />
<code>#!/bin/bash<br />
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-<br />
# ex: ts=8 sw=4 sts=4 et filetype=sh</p>
<p>check() {<br />
    return 0<br />
}</p>
<p>depends() {<br />
    return 0<br />
}</p>
<p>install() {<br />
    inst_hook pre-trigger 91 "$moddir/mount-local.sh"<br />
}<br />
</code></li>
<li>cat &gt; 91local/mount-local.sh<br />
<code>#!/bin/sh<br />
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-<br />
# ex: ts=8 sw=4 sts=4 et filetype=sh</p>
<p>mount_local()<br />
{<br />
        mdadm -As<br />
        lvm pvscan<br />
        lvm vgscan<br />
        lvm lvscan<br />
        lvm vgchange -ay<br />
}</p>
<p>mount_local</code></li>
</ol>
<p>Then run dracut to build your initramfs, and it should let mdadm and lvm auto-detect everything before it gets to mounting stuff.  You can then use the fstab-sys to mount whatever you need to mount user.  However, in your fstab.sys if you&#8217;re configuring a bindmount be sure to prepend /sysroot/ before the source directory.<br />
Example fstab.sys:<br />
<code>/dev/vg1/data           /data   ext4            noatime,user_xattr,barrier=1 0 0<br />
/sysroot/data/usr               /usr    none            bind    0 0<br />
/sysroot/data/var               /var    none            bind    0 0</code></p>
<p>Hopefully this helps somebody out &#8211; the dracut documentation is pretty sparse.  In fact, if somebody connected to dracut stumbles upon this I&#8217;d be open to a better way of hooking my script &#8211; pre-trigger just doesn&#8217;t seem right &#8211; I&#8217;d rather let udev try to do everything first.  However, I couldn&#8217;t find any way to hook after udev runs but before it bombs out not finding my root device.  Suggestions welcome.</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>, <a href='http://rich0gentoo.wordpress.com/category/linux/'>linux</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=142&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2012/01/21/a-quick-dracut-module/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>Another MythTV Update</title>
		<link>http://rich0gentoo.wordpress.com/2011/12/14/another-mythtv-update/</link>
		<comments>http://rich0gentoo.wordpress.com/2011/12/14/another-mythtv-update/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 15:06:56 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[foss]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mythtv]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=138</guid>
		<description><![CDATA[Agreeing with some advice on gentoo-dev, I&#8217;m going to post this as a blog entry instead of a Gentoo news item. The quick version of this update is expect to see 0.24.1 in portage in a few days. The long version follows&#8230; As many have noticed, the Gentoo version of MythTV has been significantly lagging [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=138&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Agreeing with some advice on gentoo-dev, I&#8217;m going to post this as a blog entry instead of a Gentoo news item.  The quick version of this update is expect to see 0.24.1 in portage in a few days.  The long version follows&#8230;<br />
<span id="more-138"></span><br />
As many have noticed, the Gentoo version of MythTV has been significantly lagging the upstream version. We plan to introduce 0.24.1, which is the current upstream stable version, in the next few days. Before going through the upgrade we wanted to make you aware of our future plans for MythTV in Gentoo and some of your alternatives. </p>
<p>The Gentoo MythTV package will generally try to stay closer to upstream than it has in the last year, but probably will only be updated a few times per year at most. It will benefit from the full Gentoo QA process, including introduction to ~arch followed by stabilization. Dependencies will also be controlled in line with Gentoo QA so things should suddenly not stop working without warning. Versions that are stabilized will stay in the tree longer after they are superseded for those who want to take their time with upgrades. </p>
<p>The versions of MythTV in Gentoo may also not support the full range of upstream plugins. </p>
<p>There is an alternative for those of you who want a more bleeding-edge experience. Upstream maintains a Gentoo overlay at: git://github.com/MythTV/packaging.git </p>
<p>The upstream repository will be the first to receive updates and will have many more intermediate versions including bugfixes. The overlay also supports all the upstream plugins. However, it is not subject to Gentoo QA policy &#8211; dependencies could stop working or disappear without warning, and older versions may not be kept around. Generally speaking, we have not heard complaints from those who use it. Any issues with the upstream overlay should be reported to the MythTV project and not to Gentoo bugzilla. </p>
<p>If you&#8217;re already using the upstream overlay you shouldn&#8217;t be impacted by anything done in Portage &#8211; your versions will generally stay higher than our own. </p>
<p>If we drop your favorite plugin and you want it back and are willing to help maintain it, send us a note at mythtv@gentoo.org. If you&#8217;re willing to test it and ensure it works for everybody else, we can keep it in the portage tree. </p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/foss/'>foss</a>, <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>, <a href='http://rich0gentoo.wordpress.com/category/linux/'>linux</a>, <a href='http://rich0gentoo.wordpress.com/category/mythtv/'>mythtv</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=138&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2011/12/14/another-mythtv-update/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>KDump on Gentoo</title>
		<link>http://rich0gentoo.wordpress.com/2011/11/11/kdump-on-gentoo/</link>
		<comments>http://rich0gentoo.wordpress.com/2011/11/11/kdump-on-gentoo/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 02:45:16 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=130</guid>
		<description><![CDATA[I&#8217;ve been trying to learn a little more about kernel debugging (part of my quest to learn a little more about btrfs), and I figured I&#8217;d post a quick howto on getting kernel crash dumps captured on Gentoo. Certainly a more elegant solution than this could be devised with more automation. It wouldn&#8217;t take much [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=130&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to learn a little more about kernel debugging (part of my quest to learn a little more about btrfs), and I figured I&#8217;d post a quick howto on getting kernel crash dumps captured on Gentoo.<br />
<span id="more-130"></span><br />
Certainly a more elegant solution than this could be devised with more automation.  It wouldn&#8217;t take much to setup, and turning it into a package might be nice.  Maybe a project for the future if I manage to generate enough panics.</p>
<p>There are a lot of posts about kdump you&#8217;ll find on Google, but most are distro-specific and leave out how to actually make it work if it isn&#8217;t already configured.  The best post I&#8217;ve found is <a href="http://www.mjmwired.net/kernel/Documentation/kdump/">this one</a>, which this procedure is largely based on.</p>
<p>To keep things simple I&#8217;m going to just use a single kernel for the system and recovery, which creates just a few limitations on your kernel configuration.</p>
<ol>
<li>emerge kexec-tools &#8211; you won&#8217;t get anywhere without this.</li>
<li>Check your kernel configuration for the following settings:<br />
<code>CONFIG_KEXEC=y<br />
CONFIG_SYSFS=y<br />
CONFIG_DEBUG_INFO=Y  </code>(technically not needed, but what&#8217;s the point)<code><br />
CONFIG_CRASH_DUMP=y<br />
CONFIG_PROC_VMCORE=y<br />
CONFIG_RELOCATABLE=y</code>
</li>
<li>Edit your grub.conf and add to your boot line crashkernel=64M for up to around 12GB of system RAM</li>
<li>Create /etc/local.d/kdump.start containing (don&#8217;t forget to chmod it a+x):<br />
<code>#!/bin/bash</p>
<p>kexec -p /[path-to-kernel] --append="root=[root-device] single irqpoll maxcpus=1 reset_devices"</code></li>
</ol>
<p>That&#8217;s it.  Note that your kernel has to be reachable, and the typical gentoo config leaves /boot unmounted, so you&#8217;ll either need to remove noauto from your fstab or place a copy of your kernel elsewhere.  </p>
<p>I didn&#8217;t get this working with an initramfs &#8211; this is supposed to be possible but obviously the more complexity the trickier.</p>
<p>With these changes whenever you get a kernel panic or lockup (hard/soft if the kernel is set to detect them) the system will use kexec to run the kernel in crash mode, relocated to a reserved area of memory.  The rest of RAM will be untouched.  When the system boots up log in and copy /proc/vmcore to a file &#8211; this is your crash dump.  Then reboot your system to get back to a normal configuration &#8211; you shouldn&#8217;t continue to operate in this state.</p>
<p>The obvious improvement to this is to create a script and run it with init= and have it copy the core file for you, then reboot&#8230;</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>, <a href='http://rich0gentoo.wordpress.com/category/linux/'>linux</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=130&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2011/11/11/kdump-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>The Foundation Activity Tracker</title>
		<link>http://rich0gentoo.wordpress.com/2011/07/19/the-foundation-activity-tracker/</link>
		<comments>http://rich0gentoo.wordpress.com/2011/07/19/the-foundation-activity-tracker/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 20:24:24 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>
		<category><![CDATA[gentoo foundation]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=123</guid>
		<description><![CDATA[If you haven&#8217;t noticed on gentoo-nfp, I&#8217;ve created an activity tracking page (with the help of David Abbot) to track periodic compliance activities for the Foundation. Some have asked why do this, and why not simply use the Gentoo Calendar/etc to accomplish this? My thinking is that the current tools do not go far enough. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=123&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t noticed on gentoo-nfp, I&#8217;ve created an <a href="http://www.gentoo.org/foundation/en/secretary/activities/activity_tracker.xml">activity tracking page</a> (with the help of David Abbot) to track periodic compliance activities for the Foundation.</p>
<p>Some have asked why do this, and why not simply use the Gentoo Calendar/etc to accomplish this?<br />
<span id="more-123"></span><br />
My thinking is that the current tools do not go far enough.  When the whole fiasco on the list about tax documents broke out a few months ago I started reading up and took more of an interest in these matters.  What I&#8217;ve found is that truly staying on top of these kinds of activities involves a decent learning curve and quite a bit of organization.  Even big corporations like Microsoft have let domains expire/etc.  There are some activities that are just too important to allow to get lost in the shuffle.</p>
<p>My goal is for the activity tracker to turn into a one-stop-shop for any kind of recurring activity that the Foundation has to perform either due to strict regulatory compliance (like filing our taxes), or because it is just REALLY important (like renewing our domain name &#8211; though the scope of responsibility on that one is unclear to me).  </p>
<p>The site is not going to be about work-in-progress or any kind of one-time events.  I think that Bugzilla already is working fine for this.  In fact, ideally I&#8217;d anticipate that any recurring activity like a tax filing would be associated with a series of bugs for each time it was performed.</p>
<p>Suggestions from the community are of course welcome.  As anybody can see it is clearly a work in progress.  However, I envision a day not long in the future where anybody can see an index of things that need to be done, when they need to be done next, and links to detailed pages on how to do them, and the results of having done them in the past.  A volunteer wanting to take on some filing would be able to quickly learn everything they need to do it efficiently, freeing up Officers to supervise more.  Or, when Officers do perform the work it will be done more consistently with fewer omissions, and links to tools, templates, and related materials will speed up the work.</p>
<p>And for the record, I think the volunteers managing the Foundation in the past few years have been doing a good job.  This is hard work, and in any distributed organization staying on top of this is harder.  In many cases they&#8217;ve inherited a bit of a mess and are doing their best to clean it up.  The goal here is to make our problems and their solutions more transparent to all.</p>
<p>Once we&#8217;re done any concerned member of the community should be able to go down the list and audit us (well, to the extent we&#8217;re able to divulge things).  If somebody notices a date coming up and no bug filed, they can file a bug or ping a trustee to make sure we&#8217;re doing our job.  Sure, it might result in occasional embarrassment, but better that than serious non-compliance.</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>, <a href='http://rich0gentoo.wordpress.com/category/gentoo-foundation/'>gentoo foundation</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=123&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2011/07/19/the-foundation-activity-tracker/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s Up With MythTV on Gentoo?</title>
		<link>http://rich0gentoo.wordpress.com/2011/06/18/whats-up-with-mythtv-on-gentoo/</link>
		<comments>http://rich0gentoo.wordpress.com/2011/06/18/whats-up-with-mythtv-on-gentoo/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 02:59:05 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=120</guid>
		<description><![CDATA[I&#8217;ve gotten a few fair questions over the last few weeks about the status of MythTV on Gentoo. Here is a quick synopsis of where things stand&#8230; Right now Gentoo is considerably behind upstream for MythTV. Gentoo&#8217;s latest stable is in the 0.22 branch, with 0.23 being in testing. Upstream considers 0.24.1 stable. The good [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=120&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve gotten a few fair questions over the last few weeks about the status of MythTV on Gentoo.  Here is a quick synopsis of where things stand&#8230;<br />
<span id="more-120"></span><br />
Right now Gentoo is considerably behind upstream for MythTV.  Gentoo&#8217;s latest stable is in the 0.22 branch, with 0.23 being in testing.  Upstream considers 0.24.1 stable.</p>
<p>The good news is that upstream actually provides a Gentoo overlay which should make getting this into the tree relatively easy.  The bad news is that MythTV and its plugins are heavily dependent on an eclass, and the upstream overlay eclass contains substantial changes (and is likely not backwards compatible with the ebuilds in the Gentoo tree).</p>
<p>Complicating things is the fact that the MythTV herd is pretty thin these days on Gentoo, with Cardoe being tied up with other things (as an aside &#8211; we all owe Cardoe thanks for sustaining things for this long).  My own MythTV setup is also used by my family of four, which means that I don&#8217;t like to mess with it unless I have a solid weekend to deal with any issues that crop up, especially since my front-end runs minimyth which is itself problematic and needs to be kept in-sync since MythTV does not support cross-version client/server setups.  A series of personal emergencies hasn&#8217;t really helped much either.</p>
<p>Still, our users do deserve better, and I&#8217;m eager to try out 0.24 myself.  So, rather than slow things up by trying to consolidate the eclasses into something that is both forwards- and backwards-compatible I plan to just introduce a mythtv-2.eclass into the tree, and migrate over.  Once the old builds are cleaned out the old eclass will no longer be used (removing it is a different matter for the longer-term).</p>
<p>Hopefully I&#8217;ll get a chance to upgrade to the version in upstream&#8217;s overlay soon, and once I&#8217;m reasonably confident that it is OK I&#8217;ll introduce it into the tree.  It will likely be light on plugins initially unless I can find some willing testers &#8211; if you&#8217;re interested in helping out feel free to contact me offline or comment below.</p>
<p>So, sorry for the long wait.  If you are in a hurry feel free to try out upstream&#8217;s overlay &#8211; unless it contains some major issue that is what Gentoo will end up with and it will be easy for you to switch over.  Oh, and expect 0.24.1 to be the target for Gentoo &#8211; no sense starting out behind.</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=120&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2011/06/18/whats-up-with-mythtv-on-gentoo/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>Gaps in the Cloud</title>
		<link>http://rich0gentoo.wordpress.com/2011/01/31/gaps-in-the-cloud/</link>
		<comments>http://rich0gentoo.wordpress.com/2011/01/31/gaps-in-the-cloud/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 16:28:29 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[chrome]]></category>
		<category><![CDATA[foss]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=103</guid>
		<description><![CDATA[Well, I&#8217;ve been getting a lot of use out of my CR-48 ChromeOS netbook, and I&#8217;ve found that I can do almost everything I normally do with it, although not always with FOSS. There are a few gaps that I haven&#8217;t found either proprietary or FOSS options for, and that is the focus of this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=103&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I&#8217;ve been getting a lot of use out of my CR-48 ChromeOS netbook, and I&#8217;ve found that I can do almost everything I normally do with it, although not always with FOSS.  There are a few gaps that I haven&#8217;t found either proprietary or FOSS options for, and that is the focus of this post.</p>
<p>The biggest one is financial management.  I&#8217;ve been stuck away from home for about a week and my CR-48 is my main lifeline to the outside world.  I can look up my bills online, and pay my bills online.  The one thing I can&#8217;t do from my CR-48 is access my checkbook register.  </p>
<p>The problem is that I&#8217;m using Quicken for my checkbook, and the only way to get at that remotely is to remote desktop into a windows server over ssh (perhaps a virtual one).  The CR-48 doesn&#8217;t support either RDP or ssh connection forwarding (which is the only way I&#8217;d ever use RDP &#8211; without setting up a VPN or something equivalent).  </p>
<p>The most obvious proprietary alternative online is mint.com, but it really isn&#8217;t a Quicken alternative.  Mint is great for telling me what happened last week, but horrible for telling me what will happen three weeks from now.  I get paid monthly, so I can&#8217;t afford to pay somebody $500 today only to find out that I have some big transaction coming in three weeks from now that will send me into the red.  Sure, I could just keep some huge balance in my account, but I&#8217;d rather keep large balances someplace more useful (like paying down loans or in some kind of decent investment).</p>
<p>Email is a big FOSS gap.  Right now I&#8217;m using Gmail and that is great.  However, it would be better if I could set up my own cloud hosting for Chrome OS authentication/syncing, and have a Gmail-like experience with FOSS.  The closest I&#8217;ve seen is RoundCube, which is nice, but it lacks the keyboard shortcuts and streamlined interface of Gmail.  Drag-and-drop is a real pain on a netbook, and just being able to hit &#8220;e&#8221; or archive to deal with incoming mail is a lot easier than the multiple-click-on-small-icons workflow of RoundCube to do the same.</p>
<p>FOSS up till now has tended to focus on big desktop applications.  I guess it makes sense from the standpoint that the average desktop user isn&#8217;t going to set up their own LAMP box.  However, I&#8217;m perfectly happy to set up a LAMP box and run my own cloud-based services.  It just seems like there aren&#8217;t many worth running.</p>
<p>I suspect we&#8217;ll start to see better solutions if cloud-based netbooks (running ChromeOS or whatever) take off.  As we move towards a more mobile world, it becomes more important for data to be accessible on the run.  </p>
<p>Oh, and if nothing else it would be REALLY nice if somebody came up with an NX client that runs as a Chrome application.  I&#8217;ve seen a VNC app, and I guess I could sort-of live with that (if it supports ssh), but NX would be much nicer.  An RDP-over-ssh app would also be nice&#8230;</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/chrome/'>chrome</a>, <a href='http://rich0gentoo.wordpress.com/category/foss/'>foss</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=103&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2011/01/31/gaps-in-the-cloud/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>First Experiences with the Chrome OS Netbook</title>
		<link>http://rich0gentoo.wordpress.com/2010/12/18/first-experiences-with-the-chrome-os-netbook/</link>
		<comments>http://rich0gentoo.wordpress.com/2010/12/18/first-experiences-with-the-chrome-os-netbook/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 13:41:05 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[chrome]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=93</guid>
		<description><![CDATA[Just got a nice surprise in the mail on Thurs &#8211; a CR-48 Google Chrome Netbook! Here are some of my first impressions from it. I have given Chrome OS a test drive or two over the last year, either in virtual machines or using USB drive packages of it. My impression at that time [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=93&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just got a nice surprise in the mail on Thurs &#8211; a CR-48 Google Chrome Netbook!  Here are some of my first impressions from it.</p>
<p>I have given Chrome OS a test drive or two over the last year, either in virtual machines or using USB drive packages of it.  My impression at that time was that this had some potential, but my experience was fairly marred by the low performance of USB flash or virtual machines, and of course the touted benefits like battery life and fast boot don&#8217;t really work out well in that kind of environment.</p>
<p>With the Netbook, those particular features stand out &#8211; and they do make a big difference.  Granted, perhaps my experience with laptops in general has been marred by my employer&#8217;s tendency to load their standard image up with junk, but I&#8217;ve never found laptops to be &#8220;instant-on&#8221; in real life, and they struggle with battery life.  With Chrome OS I tend to just let it sleep most of the time and I get real instant-on, and if I do power it down the 10 second boot time is VERY realistic &#8211; perhaps even pessimistic.  Login time &#8211; oh, about two seconds.  I haven&#8217;t tested the full battery life though others have &#8211; in my heavy use in the last few days I haven&#8217;t gotten the thing under about 85%.</p>
<p>Since I use Chrome as my day-to-day browser I basically was up and running about two minutes after turning the thing on.  This is touted as another benefit of Chrome &#8211; any device is basically interchangeable with all the cloud syncing.  I could see this being useful for an employer &#8211; just have a pool of laptops and let employees grab one and use it, rather than having a 1:1 assignment.  Provisioning new units of course would be a snap as well.</p>
<p>Performance of the unit is fine &#8211; a few webpages that run slowly in Chrome on my desktops run slow on the netbook, but really I see nothing to complain about here.</p>
<p>So, let&#8217;s talk about the downsides to the hardware.  I&#8217;ve always struggled with trackpads.  This one doesn&#8217;t have hardware buttons, it is purely gestures, and it has two levels of sensitivity (though I&#8217;d appreciate if the hard-press required SLIGHTLY less force).  I&#8217;ve disabled tap-to-click, as perhaps I&#8217;m ham-handed, but I find that I constantly bump it and mess up whatever I am typing.  Perhaps some intelligence would help here &#8211; ramp down the sensitivity when I&#8217;ve just typed 500 consecutive characters with no mouse use (hmm, maybe this is a good use for that send-feedback button).  Without a hardware button to hold, click-and-drag is difficult except for very short drags, and that complicates things.  Also, I&#8217;ve found the right-click and middle-click gestures to be unreliable, sometimes causing navigation I don&#8217;t want to happen which of course tends to slow me down and possibly lose work.</p>
<p>Click-and-drag is a problem for me, because of the way I manage email.  I am a big Thunderbird user, and I used to use SquirrelMail for those times I needed remote access via the web.  I just switched to Roundcube which is a little nicer if you have to live with nothing but web, but that app is short on keyboard shortcuts (sounds like another feature request coming on &#8211; n for next would be nice, and a delete shortcut as this thing has no DELETE key).  I have been browse over search kind of guy with emails for years, and I&#8217;m finding that sorting mail into folders with this netbook is pretty painful.  I suspect that I&#8217;ll need to change over to more of a search mentality to cut down on my need to browse.  Gmail really is a better model for limited UI experiences, and I&#8217;m wondering if much of that time I spend micro-managing my email is a value-add.  </p>
<p>I&#8217;m still on the fence about drinking the cool-aid and switching to Gmail entirely, at least as my primary mail interface (perhaps with an archive being sent to my server for safety).  Right now I&#8217;m hosting my own email, and I really like not having to deal with quotas/etc, and the security of not having it all out on the cloud.  I guess if I want to be really trusting I may be able to just have Gmail be an IMAP client to my server.  It would be really nice if I could figure out a way to easily just have an IMAP-only password for my account &#8211; I&#8217;m sure with a little hacking I could get that working, and my email is backed up daily so not too much could go wrong there.</p>
<p>Right now the number of apps that work offline is fairly limited &#8211; mainly just notepads/etc.  For the most part I&#8217;m using my Cr-48 around the house, which doesn&#8217;t make that a big problem.  In fact, it is pretty rare for me to be completely without network, and my android phone really covers those kinds of remote situations well already.  The Cr-48 does have 3G with Verizon, with 100MB free per month for two years.  I&#8217;m not sure how much I&#8217;d even need to use that, but this really would be all I need for the rare email check on the road.</p>
<p>App selection for Chrome is still pretty limited.  I&#8217;d really like to see:</p>
<ul>
<li>Offline Email Client</li>
<li>NX Client</li>
<li>SSH Client (better than the crosh one which works in a pinch)</li>
<li>Offline Google Docs (ok, now I&#8217;m dreaming)</li>
<li>Decent Media Player and File Browsers for external storage</li>
</ul>
<p>One thing I have found is that you really need to use it for a day or two before passing judgment.  Some of the things that drove me craziest passed as I got used to doing things differently.  However, I&#8217;m still not sure I&#8217;m ready to do away with home/end/pgup/pgdown/delete (I never use insert).  </p>
<p>I&#8217;m sure there will be more to follow.  I&#8217;d be interested in the impressions of others as well.</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/chrome/'>chrome</a>, <a href='http://rich0gentoo.wordpress.com/category/linux/'>linux</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=93&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2010/12/18/first-experiences-with-the-chrome-os-netbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>Gentoo and Security Updates</title>
		<link>http://rich0gentoo.wordpress.com/2010/10/05/gentoo-and-security-updates/</link>
		<comments>http://rich0gentoo.wordpress.com/2010/10/05/gentoo-and-security-updates/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 10:17:06 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=84</guid>
		<description><![CDATA[While it pains me a bit to say this, and I don&#8217;t have a great deal of time to type this, I wanted to at least try to get some kind of word out to our user community that the high-profile kernel regression announced a few weeks ago (and fixed a few weeks ago in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=84&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While it pains me a bit to say this, and I don&#8217;t have a great deal of time to type this, I wanted to at least try to get some kind of word out to our user community that the high-profile kernel regression announced a few weeks ago (and fixed a few weeks ago in almost every other distro), remains a vulnerability in Gentoo with no clear timeline for resolution.</p>
<p>Gentoo <a href="http://bugs.gentoo.org/show_bug.cgi?id=337645">bug 337654</a> is tracking this issue.  </p>
<p>Users can emerge a more recent version of gentoo-sources to get the patch, and I&#8217;d recommend doing so if local root exploits are something that concern you.  </p>
<p>I&#8217;d like to dwell a bit longer on solutions, but I don&#8217;t really have time to do so right now.  Clearly the kernel team could use help with security issues.  The security team probably could use help as well in staying on top of these kinds of issues.  I don&#8217;t want to kick people when they are down &#8211; Gentoo is an all-volunteer effort.  However, situations like this really don&#8217;t do much to improve the reputation of the distro, and at the very least we need to inform users when problems like this arise.</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=84&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2010/10/05/gentoo-and-security-updates/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>An Appeal to Devs &#8211; Please Use News</title>
		<link>http://rich0gentoo.wordpress.com/2010/09/04/an-appeal-to-devs-please-use-news/</link>
		<comments>http://rich0gentoo.wordpress.com/2010/09/04/an-appeal-to-devs-please-use-news/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 16:58:36 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=77</guid>
		<description><![CDATA[Well, I spent half of today rebuilding my system, and upgrading mysql. I figured that I might use the opportunity of my newly-found spare time while running revdep-rebuild to perhaps put out a general plea for developers to make use of the news feature in portage. Upgrading to mysql 5.1 requires doing a full dump [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=77&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I spent half of today rebuilding my system, and upgrading mysql.</p>
<p>I figured that I might use the opportunity of my newly-found spare time while running revdep-rebuild to perhaps put out a general plea for developers to make use of the news feature in portage.</p>
<p>Upgrading to mysql 5.1 requires doing a full dump of your databases, some manual cleanup, an upgrade, and then some manual restore steps.  Oh, and that dump has to be done BEFORE the upgrade or you end up having to revert back to 5.0 (which I ended up doing).  Usually mysql upgrades are relatively painless, but jumps between major versions (0.1 level) are often not.</p>
<p>The upgrade also breaks anything that links to libmysql, which is quite a bit on a system that runs any number of services (mail, mythtv, ulog, etc).  </p>
<p>It might have been nice if a news item were published a day or two before stabilizing mysql 5.1 so that users might have some advance warning and could plan accordingly.</p>
<p>Now, this upgrade didn&#8217;t rise to the level of some of the past breakages that actually were very painful to recover from and could result in unbootable systems/etc.  Still, it never hurts to give users notice.  The beauty of news items is that they only pester users who will actually be impacted by them.  I don&#8217;t think anybody running mysql would mind a reminder that an upcoming upgrade requires careful planning &#8211; this is far more relevant to users than half the stuff we put in elogs/etc.</p>
<p>On the other hand, I do appreciate the mysql upgrade guide on the gentoo website (might not hurt to update it a tiny bit), and Peter Davies&#8217;s blog entry from 1.5 years ago was very helpful.  If these had been pointed out before stabilizing the build the stable experience would have been a little smoother.  </p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/gentoo/'>gentoo</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=77&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2010/09/04/an-appeal-to-devs-please-use-news/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
		<item>
		<title>Control Over Application Distribution</title>
		<link>http://rich0gentoo.wordpress.com/2010/07/20/control-over-application-distribution/</link>
		<comments>http://rich0gentoo.wordpress.com/2010/07/20/control-over-application-distribution/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 14:57:32 +0000</pubDate>
		<dc:creator>rich0</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://rich0gentoo.wordpress.com/?p=68</guid>
		<description><![CDATA[I was giving some thought to something that flameeyes wrote regarding quality control and application distribution, and rather than a condensed comment I thought I&#8217;d elaborate a little on my thoughts. Before reading on, I&#8217;d encourage you to read what he wrote, as I think he gets a lot of things right. However, where I&#8217;d [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=68&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was giving some thought to <a href="http://blog.flameeyes.eu/2010/07/18/in-all-fairness">something that flameeyes wrote</a> regarding quality control and application distribution, and rather than a condensed comment I thought I&#8217;d elaborate a little on my thoughts.</p>
<p>Before reading on, I&#8217;d encourage you to read what he wrote, as I think he gets a lot of things right.</p>
<p>However, where I&#8217;d like to add something is where we get into providing a complete platform vs providing a particular user experience built on a platform. What is the difference?  Well, let&#8217;s take android as an easy example.</p>
<p>Android is a platform, which is open source, although developed arguably in a less than open manner.  The Google branded phones are a particular user experience built on the Android platform.  There is a certain tendency for users to confuse the two, which is what leads to shouts of &#8220;foul&#8221; when Google does something to their Market.</p>
<p>The Google Market is not part of Android, so in a sense their control over the Market is part of improving the user experience, and doesn&#8217;t reflect a lack of openness on the platform.</p>
<p>The problem with this is that if you look at the platform as ONLY being Android, then the platform turns out to be fairly lacking.  Android actually has no package distribution and management system at all.  That means that absent the Market all you have is some odd 3rd party clones of the market or the ability to do a one-time install of apks from a website/etc, none of which are really filling the need for a package manager.</p>
<p>How do other platforms handle this?  Well, let&#8217;s look at Ubuntu, which delivers both a platform, and a default user experience built upon it.  In their case, the user experience is really nothing more than a particular default configuration of the platform.  In Ubuntu (and most popular linux distros, certainly including Gentoo) the package manager is part of the platform &#8211; not the experience.  The package manager is open source, and while Ubuntu controls access to their repository, they do not control the package manager.  If users want to use another repository (or create their own) they need only add a URL to their package manager, and the new repository gets seamlessly merged into the package database &#8211; perhaps with even greater priority than Ubuntu&#8217;s official repository if so configured.</p>
<p>If Google&#8217;s market operated in the same manner, then it would be part of the platform, and the experience is the quality assurance they provide to it.  I think we&#8217;d see fewer complaints in this case.  The problem is that Google does not allow users to configure their market to include apps published from alternate sources, which means that since Android doesn&#8217;t provide a package manager that users effectively have no way to address this capability gap.</p>
<p>Then if you look at the fact that many phone distributors disable parts of the platform, such as the ability to install apps via sources other than the market, you compound the issue.</p>
<p>I see the situation with mozilla in the same way.  As long as a mozilla product user can install an extension from any number of sources and receive automatic updates of this extension, then I have no issue with mozzila providing a default experience that has a level of QA.  If, on the other hand, mozilla designs their products so that you can only install extensions from their site, or only extensions from their site receive automatic updates/etc, then they&#8217;re essentially limiting their platform to intentionally constrain users to have a particular experience.</p>
<p>This is a debate that has also raged on the Gentoo mailing lists.  Different people have different attitudes towards QA, and as a result we have a plethora of overlays in Gentoo that provide levels of QA that are different from the official policy.  This has the downside of fragmenting development work, and the upside of taking advantage of the flexibility of the platform.  </p>
<p>What do you think?  What is the best way to provide the best of both worlds?  How can a platform provide a &#8220;just right&#8221; level of QA filtering appropriate for every end user?</p>
<br />Filed under: <a href='http://rich0gentoo.wordpress.com/category/linux/'>linux</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rich0gentoo.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rich0gentoo.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rich0gentoo.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rich0gentoo.wordpress.com&amp;blog=12853060&amp;post=68&amp;subd=rich0gentoo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rich0gentoo.wordpress.com/2010/07/20/control-over-application-distribution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/30cf91a2b01fd7dcce8060be56928250?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rich0</media:title>
		</media:content>
	</item>
	</channel>
</rss>
