<?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>Bitratchet</title>
	<atom:link href="http://blog.bitratchet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bitratchet.com</link>
	<description>Bicycling, Photography and Programming</description>
	<lastBuildDate>Thu, 24 May 2012 03:52:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.bitratchet.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0a03a8dcab40cceb4da704d5ab789c9f?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Bitratchet</title>
		<link>http://blog.bitratchet.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.bitratchet.com/osd.xml" title="Bitratchet" />
	<atom:link rel='hub' href='http://blog.bitratchet.com/?pushpress=hub'/>
		<item>
		<title>Return of the 007 SSH Agent</title>
		<link>http://blog.bitratchet.com/2012/05/23/return-of-the-007-ssh-agent/</link>
		<comments>http://blog.bitratchet.com/2012/05/23/return-of-the-007-ssh-agent/#comments</comments>
		<pubDate>Thu, 24 May 2012 03:52:00 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[passphrase]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/?p=2184</guid>
		<description><![CDATA[Years ago when I first stared listening to podcasts when I had barely worked at PRWeb for a year even, I came up with a piece of shell script to automatically start up an ssh-agent and ask for your passphrase. Unfortunately, the code created tons of ssh-agents, which was unfortunate. Here is a version that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2184&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Years ago when I first stared listening to podcasts when I had barely worked at PRWeb for a year even, I came up with a piece of shell script to automatically start up an ssh-agent and ask for your passphrase.</p>
<p>Unfortunately, the code created tons of ssh-agents, which was unfortunate.</p>
<p>Here is a version that behaves much better:</p>
<blockquote><pre>  1 #!/bin/bash<br />  2 export SSH_RECENT="$HOME/.ssh/recent"<br />  3 [ -f $SSH_RECENT ] &amp;&amp; eval `cat $SSH_RECENT`<br />  4 RUNNING_AGENTS=0<br />  5 if [ ! -z "$SSH_AGENT_PID" ]<br />  6 then<br />  7 RUNNING_AGENTS=`ps -p $SSH_AGENT_PID | grep -v CMD | wc -l`<br />  8 fi<br />  9 if [ $RUNNING_AGENTS -lt 1 -a $UID -ne 0 ]<br /> 10 then<br /> 11 eval `ssh-agent`<br /> 12 echo "export SSH_AGENT_PID=$SSH_AGENT_PID" &gt; $SSH_RECENT<br /> 13 echo "export SSH_AUTH_SOCK=$SSH_AUTH_SOCK" &gt;&gt; $SSH_RECENT<br /> 14 fi <br /> 15 <br /> 16 [ `ssh-add -l | fgrep -v ' no ' | wc -l` -lt 1 ] &amp;&amp; ssh-add</pre>
</blockquote>
<p>Can you tell me why I&#8217;m choosing to evaluate $UID for zero?</p>
<p>And, will this work if I switch from an Xterm to a virtual terminal?</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://blog.bitratchet.com/tag/linux/'>Linux</a>, <a href='http://blog.bitratchet.com/tag/passphrase/'>passphrase</a>, <a href='http://blog.bitratchet.com/tag/security/'>security</a>, <a href='http://blog.bitratchet.com/tag/shell-script/'>shell script</a>, <a href='http://blog.bitratchet.com/tag/ssh/'>ssh</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2184&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/05/23/return-of-the-007-ssh-agent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>
	</item>
		<item>
		<title>Father and Daughter, Elizabeth Park</title>
		<link>http://blog.bitratchet.com/2012/05/09/father-and-daughter-elizabeth-park/</link>
		<comments>http://blog.bitratchet.com/2012/05/09/father-and-daughter-elizabeth-park/#comments</comments>
		<pubDate>Thu, 10 May 2012 04:57:42 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bellingham]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/05/09/father-and-daughter-elizabeth-park/</guid>
		<description><![CDATA[This seems to be the one of the more popular photos I&#8217;ve posted this year. Here&#8217;s a slightly more romantic version of it. I have a 24&#215;18 @ 300dpi source file for making large prints if so desired. Filed under: Uncategorized Tagged: bellingham, family, photo<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2183&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This seems to be the one of the more popular photos I&#8217;ve posted this year. Here&#8217;s a slightly more romantic version of it. I have a 24&#215;18 @ 300dpi source file for making large prints if so desired.</p>
<div class="wp-caption aligncenter" style="width: 618px"><a href="http://bitratchet.files.wordpress.com/2012/05/marleys-party-01-1900.jpg"><img class=" wp-image " title="Father and Daughter, Elizabeth Park, 2012" src="http://bitratchet.files.wordpress.com/2012/05/marleys-party-01-1900.jpg?w=608&h=407" alt="Image of Father and Daughter, Elizabeth Park, 2012" width="608" height="407" /></a><p class="wp-caption-text">Father and Daughter, Elizabeth Park, 2012</p></div>
<br />Filed under: <a href='http://blog.bitratchet.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://blog.bitratchet.com/tag/bellingham/'>bellingham</a>, <a href='http://blog.bitratchet.com/tag/family/'>family</a>, <a href='http://blog.bitratchet.com/tag/photo/'>photo</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2183&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/05/09/father-and-daughter-elizabeth-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>

		<media:content url="http://bitratchet.files.wordpress.com/2012/05/marleys-party-01-1900.jpg?w=1014" medium="image">
			<media:title type="html">Father and Daughter, Elizabeth Park, 2012</media:title>
		</media:content>
	</item>
		<item>
		<title>Strength in Numbers was fun</title>
		<link>http://blog.bitratchet.com/2012/05/04/strength-in-numbers-was-fun/</link>
		<comments>http://blog.bitratchet.com/2012/05/04/strength-in-numbers-was-fun/#comments</comments>
		<pubDate>Sat, 05 May 2012 06:17:46 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[galbraith]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[mountain bike]]></category>
		<category><![CDATA[mtb]]></category>
		<category><![CDATA[north fork]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/05/04/strength-in-numbers-was-fun/</guid>
		<description><![CDATA[Good time watching that at the Mt Baker Theater. I was the only one to show up with a recumbent&#8230;and BSD daemon horns. Filed under: Uncategorized Tagged: galbraith, geek, mountain bike, mtb, north fork<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2178&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Good time watching that at the Mt Baker Theater. I was the only one to show up with a recumbent&#8230;and BSD daemon horns.</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://blog.bitratchet.com/tag/galbraith/'>galbraith</a>, <a href='http://blog.bitratchet.com/tag/geek/'>geek</a>, <a href='http://blog.bitratchet.com/tag/mountain-bike/'>mountain bike</a>, <a href='http://blog.bitratchet.com/tag/mtb/'>mtb</a>, <a href='http://blog.bitratchet.com/tag/north-fork/'>north fork</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2178/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2178/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2178/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2178&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/05/04/strength-in-numbers-was-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>
	</item>
		<item>
		<title>Upcoming: New Standing Workstation</title>
		<link>http://blog.bitratchet.com/2012/05/04/upcoming-new-standing-workstation/</link>
		<comments>http://blog.bitratchet.com/2012/05/04/upcoming-new-standing-workstation/#comments</comments>
		<pubDate>Fri, 04 May 2012 13:53:47 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[commuting]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[sustainable living]]></category>
		<category><![CDATA[exercise ball]]></category>
		<category><![CDATA[lower back]]></category>
		<category><![CDATA[reclaimed lumber]]></category>
		<category><![CDATA[standing workspace]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/?p=2175</guid>
		<description><![CDATA[I&#8217;ve posted about how my previous endeavors to work at a standing workspace, at work, and at home. It has not gone sour on me yet. Presently at Candelatech I&#8217;ve been sitting on an exercise ball with three landscape monitors. It&#8217;s a lot of screen realestate! I love not needing to maximize and minimize windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2175&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted about how my previous endeavors to work at a standing workspace, at work, and at home. It has not gone sour on me yet. Presently at<br />
Candelatech I&#8217;ve been sitting on an exercise ball with three landscape monitors. It&#8217;s a lot of screen realestate! I love not needing to maximize and minimize windows and the ability to glance at my debug window and at log output at the same time. <img class="alignright" title="stand at the workstation" src="https://encrypted-tbn0.google.com/images?q=tbn:ANd9GcRHLQxkLY47gDyu3NpXSGxZdj2uIU8lui8QtOKDLyfgVN6hmRFi" alt="" width="226" height="142" /></p>
<p>I feel like I slouch a lot more when I&#8217;m on the exercise ball&#8211;I&#8217;m eager to bounce up to the standing work space again. And soon I shall. I have built a wooden monitor rack from lumber reclaimed from a few projects around the house. I have hauled the pieces to work on my bike. It looks like nothing you&#8217;ve ever seen before. Expect photos soon.st</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/commuting/'>commuting</a>, <a href='http://blog.bitratchet.com/category/diy/'>DIY</a>, <a href='http://blog.bitratchet.com/category/environment/'>environment</a>, <a href='http://blog.bitratchet.com/category/health/'>Health</a>, <a href='http://blog.bitratchet.com/category/linux/'>Linux</a>, <a href='http://blog.bitratchet.com/category/programming/'>Programming</a>, <a href='http://blog.bitratchet.com/category/sustainable-living/'>sustainable living</a> Tagged: <a href='http://blog.bitratchet.com/tag/exercise-ball/'>exercise ball</a>, <a href='http://blog.bitratchet.com/tag/lower-back/'>lower back</a>, <a href='http://blog.bitratchet.com/tag/reclaimed-lumber/'>reclaimed lumber</a>, <a href='http://blog.bitratchet.com/tag/standing-workspace/'>standing workspace</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2175&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/05/04/upcoming-new-standing-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>

		<media:content url="https://encrypted-tbn0.google.com/images?q=tbn:ANd9GcRHLQxkLY47gDyu3NpXSGxZdj2uIU8lui8QtOKDLyfgVN6hmRFi" medium="image">
			<media:title type="html">stand at the workstation</media:title>
		</media:content>
	</item>
		<item>
		<title>Bellingham Air Museum</title>
		<link>http://blog.bitratchet.com/2012/05/03/bellingham-air-museum/</link>
		<comments>http://blog.bitratchet.com/2012/05/03/bellingham-air-museum/#comments</comments>
		<pubDate>Fri, 04 May 2012 04:55:34 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[Bellingham]]></category>
		<category><![CDATA[civil liberty]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[justice]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[jingoism]]></category>
		<category><![CDATA[museum]]></category>
		<category><![CDATA[patriotism]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[propeller]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/05/03/bellingham-air-museum/</guid>
		<description><![CDATA[I like the phrase &#8220;starter crank.&#8221; I loved planes as a boy, but now I&#8217;m bitter about the symbolism. Is this an attempt to poke at jingoism? I love the tone of the shiny metal, truly. HIgher res available. Filed under: Bellingham, civil liberty, economy, education, environment, justice, Photos, security, wallpaper Tagged: air, desktop, jingoism, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2173&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like the phrase &#8220;starter crank.&#8221; I loved planes as a boy, but now I&#8217;m bitter about the symbolism. Is this an attempt to poke at jingoism? I love the tone of the shiny metal, truly.</p>
<p style="text-align:center;"><a href="http://bitratchet.files.wordpress.com/2012/05/2012-12-09-air-museum-star-as.jpg"><img class=" wp-image aligncenter" src="http://bitratchet.files.wordpress.com/2012/05/2012-12-09-air-museum-star-as.jpg?w=608&h=407" alt="Image" width="608" height="407" /></a></p>
<p>HIgher res available.</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/bellingham-2/'>Bellingham</a>, <a href='http://blog.bitratchet.com/category/civil-liberty/'>civil liberty</a>, <a href='http://blog.bitratchet.com/category/economy/'>economy</a>, <a href='http://blog.bitratchet.com/category/education/'>education</a>, <a href='http://blog.bitratchet.com/category/environment/'>environment</a>, <a href='http://blog.bitratchet.com/category/justice/'>justice</a>, <a href='http://blog.bitratchet.com/category/photos/'>Photos</a>, <a href='http://blog.bitratchet.com/category/security/'>security</a>, <a href='http://blog.bitratchet.com/category/photos/wallpaper/'>wallpaper</a> Tagged: <a href='http://blog.bitratchet.com/tag/air/'>air</a>, <a href='http://blog.bitratchet.com/tag/desktop/'>desktop</a>, <a href='http://blog.bitratchet.com/tag/jingoism/'>jingoism</a>, <a href='http://blog.bitratchet.com/tag/museum/'>museum</a>, <a href='http://blog.bitratchet.com/tag/patriotism/'>patriotism</a>, <a href='http://blog.bitratchet.com/tag/photo/'>photo</a>, <a href='http://blog.bitratchet.com/tag/propeller/'>propeller</a>, <a href='http://blog.bitratchet.com/tag/wallpaper/'>wallpaper</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2173&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/05/03/bellingham-air-museum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>

		<media:content url="http://bitratchet.files.wordpress.com/2012/05/2012-12-09-air-museum-star-as.jpg?w=1014" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>2012-04 Pork Chops</title>
		<link>http://blog.bitratchet.com/2012/04/30/2012-04-pork-chops/</link>
		<comments>http://blog.bitratchet.com/2012/04/30/2012-04-pork-chops/#comments</comments>
		<pubDate>Tue, 01 May 2012 05:29:34 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bbq]]></category>
		<category><![CDATA[bellingham]]></category>
		<category><![CDATA[cooking]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[spring]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/04/30/2012-04-pork-chops/</guid>
		<description><![CDATA[Not quite warm or dry enough to eat outside, but fine time to gather some garnish for the chops. Filed under: food, fun, Photos, Uncategorized Tagged: bbq, bellingham, cooking, photo, spring<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2164&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Not quite warm or dry enough to eat outside, but fine time to gather some garnish for the chops.</p>
<div class="wp-caption aligncenter" style="width: 578px"><a href="http://bitratchet.files.wordpress.com/2012/04/2012-04-29-pork-s.jpg"><img class=" wp-image  " title="2012-04 Pork Chops" src="http://bitratchet.files.wordpress.com/2012/04/2012-04-29-pork-s.jpg?w=568&h=379" alt="2012-04 Pork Chops" width="568" height="379" /></a><p class="wp-caption-text">2012-04 Pork Chops</p></div>
<br />Filed under: <a href='http://blog.bitratchet.com/category/food/'>food</a>, <a href='http://blog.bitratchet.com/category/fun/'>fun</a>, <a href='http://blog.bitratchet.com/category/photos/'>Photos</a>, <a href='http://blog.bitratchet.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://blog.bitratchet.com/tag/bbq/'>bbq</a>, <a href='http://blog.bitratchet.com/tag/bellingham/'>bellingham</a>, <a href='http://blog.bitratchet.com/tag/cooking/'>cooking</a>, <a href='http://blog.bitratchet.com/tag/photo/'>photo</a>, <a href='http://blog.bitratchet.com/tag/spring/'>spring</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2164&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/04/30/2012-04-pork-chops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>

		<media:content url="http://bitratchet.files.wordpress.com/2012/04/2012-04-29-pork-s.jpg?w=1014" medium="image">
			<media:title type="html">2012-04 Pork Chops</media:title>
		</media:content>
	</item>
		<item>
		<title>LinuxFest Northwest 2012 was great fun (plus Apache talk slides)</title>
		<link>http://blog.bitratchet.com/2012/04/30/linuxfest-northwest-2012-was-great-fun-plus-apache-talk-slides/</link>
		<comments>http://blog.bitratchet.com/2012/04/30/linuxfest-northwest-2012-was-great-fun-plus-apache-talk-slides/#comments</comments>
		<pubDate>Tue, 01 May 2012 03:42:37 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[F/LOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[bellingham linux]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[rewrites]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/04/30/linuxfest-northwest-2012-was-great-fun-plus-apache-talk-slides/</guid>
		<description><![CDATA[I really had a great weekend. I liked taking the kids to the Fest on Saturday, and I&#8217;m glad that I got them to do some robots. They of course wanted to spend a lot of time in the game room. And I was impressed that they were eager for lunch (salmon)! I got caught [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2157&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I really had a great weekend. I liked taking the kids to the Fest on Saturday, and I&#8217;m glad that I got them to do some robots. They of course wanted to spend a lot of time in the game room. And I was impressed that they were eager for lunch (salmon)!</p>
<p>I got caught on camera for a second in the &#8220;Why Linux Doesn&#8217;t Suck&#8221; talk. (Haven&#8217;t gotten a chance to review the posting on lunduke.com to see if I was edited out.) I really only made it to a few talks, but I mostly got to have great conversations with a lot of people.</p>
<p>Surprisingly, I spent a lot of time talking about embedded storage servers and the possibility of NanoBSD for embedded (Compact Flash based) devices. Interesting stuff, but I also suspect now that DSL and Slitaz Linux distros weigh in super small as well.</p>
<p>My Apache talk only garnered five attendees and one passer by whom I almost ejected. I had rewriten my Apache Rewrites talk from last year and whittled it down to six slides, and that was really all I needed. I was done in 30 minutes, and the rest of the time was discussing some real-world examples. We dug into the subject and I think everyone left much smarter.</p>
<p>And here are this year&#8217;s slides: <a href="http://blog.bitratchet.com/2012/04/30/linuxfest-northwest-2012-was-great-fun-plus-apache-talk-slides/2012-04-apache/" rel="attachment wp-att-2159">2012-04 Apache Rewrites</a></p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/computing/'>computing</a>, <a href='http://blog.bitratchet.com/category/floss/'>F/LOSS</a>, <a href='http://blog.bitratchet.com/category/linux/'>Linux</a> Tagged: <a href='http://blog.bitratchet.com/tag/apache/'>Apache</a>, <a href='http://blog.bitratchet.com/tag/bellingham-linux/'>bellingham linux</a>, <a href='http://blog.bitratchet.com/tag/fun/'>fun</a>, <a href='http://blog.bitratchet.com/tag/rewrites/'>rewrites</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2157&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/04/30/linuxfest-northwest-2012-was-great-fun-plus-apache-talk-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>
	</item>
		<item>
		<title>12.04 upgrade &#8230; :-(</title>
		<link>http://blog.bitratchet.com/2012/04/28/12-04-upgrade/</link>
		<comments>http://blog.bitratchet.com/2012/04/28/12-04-upgrade/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 15:22:33 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/2012/04/28/12-04-upgrade/</guid>
		<description><![CDATA[So my loop of apt-get -f install is done and now when I try and start various GTK apps, I get library configuration errors. I can&#8217;t get Libre Office Writter to start, either. I don&#8217;t have much hope for dpkg-reconfigure &#8211;all in this case. I think it&#8217;s about time for an install on a fresh [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2150&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So my loop of <em>apt-get -f install</em> is done and now when I try and start various GTK apps, I get library configuration errors. I can&#8217;t get Libre Office Writter to start, either. I don&#8217;t have much hope for dpkg-reconfigure &#8211;all in this case.</p>
<p>I think it&#8217;s about time for an install on a fresh drive. Or a raid of three 10krpm drives!</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2150&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/04/28/12-04-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 12.04 &#8212; apt-get my guile</title>
		<link>http://blog.bitratchet.com/2012/04/28/ubuntu-12-04-apt-get-my-guile/</link>
		<comments>http://blog.bitratchet.com/2012/04/28/ubuntu-12-04-apt-get-my-guile/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 13:47:36 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[F/LOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[12.04]]></category>
		<category><![CDATA[fix-install]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/?p=2146</guid>
		<description><![CDATA[So first impression on rebooting into an upgrade of Ubuntu 12.04 &#8212; busted install. Unity would not start up, I killed lightdm and restarted it, and I immediately notice that firefox has missing png for some of the tab buttons. &#160; Presently I&#8217;m repeating: $ apt-get autoclean $ dpkg --clear-avail $ apt-get update $ apt-get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2146&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Broken Upgrade!" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Grimacing_grunt.jpg/92px-Grimacing_grunt.jpg" alt="" width="92" height="119" /></p>
<p>So first impression on rebooting into an upgrade of Ubuntu 12.04 &#8212; busted install. Unity would not start up, I killed lightdm and restarted it, and I immediately notice that firefox has missing png for some of the tab buttons.</p>
<p>&nbsp;</p>
<p>Presently I&#8217;m repeating:</p>
<blockquote>
<pre>$ apt-get autoclean
$ dpkg --clear-avail
$ apt-get update
$ apt-get -f install
$ apt-get autoremove</pre>
</blockquote>
<p>And this appears to be doing a good job of finding and removing corrupted /var/&#8230;/dpkg package files and fixing my install.</p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/computing/'>computing</a>, <a href='http://blog.bitratchet.com/category/floss/'>F/LOSS</a>, <a href='http://blog.bitratchet.com/category/linux/'>Linux</a> Tagged: <a href='http://blog.bitratchet.com/tag/12-04/'>12.04</a>, <a href='http://blog.bitratchet.com/tag/fix-install/'>fix-install</a>, <a href='http://blog.bitratchet.com/tag/ubuntu/'>ubuntu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2146&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/04/28/ubuntu-12-04-apt-get-my-guile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Grimacing_grunt.jpg/92px-Grimacing_grunt.jpg" medium="image">
			<media:title type="html">Broken Upgrade!</media:title>
		</media:content>
	</item>
		<item>
		<title>Recommendations for #Linux storage server?</title>
		<link>http://blog.bitratchet.com/2012/04/26/recommendations-for-linux-storage-server/</link>
		<comments>http://blog.bitratchet.com/2012/04/26/recommendations-for-linux-storage-server/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 04:38:32 +0000</pubDate>
		<dc:creator>jedreynolds</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[arch]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[embedded]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.bitratchet.com/?p=2144</guid>
		<description><![CDATA[I&#8217;ve got an embedded 800mhz Via system that I&#8217;m going to retrofit with a 2TB drive for catching backups. I used to run CentOS 3.5 on there but those days are long gone. I&#8217;d rather run a rolling distro&#8230;Debian&#8230;Arch. I will likely also retrofit it with a CF adapter for the boot device. Likely I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2144&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got an embedded 800mhz Via system that I&#8217;m going to retrofit with a 2TB drive for catching backups. I used to run CentOS 3.5 on there but those days are long gone. I&#8217;d rather run a rolling distro&#8230;Debian&#8230;Arch. I will likely also retrofit it with a CF adapter for the boot device. Likely I will use it for a caching DNS server, and if I have resources left over, maybe some Squid caching for the household as well. What would you recommend?</p>
<br />Filed under: <a href='http://blog.bitratchet.com/category/computing/'>computing</a>, <a href='http://blog.bitratchet.com/category/linux/'>Linux</a> Tagged: <a href='http://blog.bitratchet.com/tag/arch/'>arch</a>, <a href='http://blog.bitratchet.com/tag/backups/'>backups</a>, <a href='http://blog.bitratchet.com/tag/centos/'>centos</a>, <a href='http://blog.bitratchet.com/tag/debian/'>debian</a>, <a href='http://blog.bitratchet.com/tag/embedded/'>embedded</a>, <a href='http://blog.bitratchet.com/tag/storage/'>storage</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bitratchet.wordpress.com/2144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bitratchet.wordpress.com/2144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bitratchet.wordpress.com/2144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.bitratchet.com&#038;blog=11329649&#038;post=2144&#038;subd=bitratchet&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.bitratchet.com/2012/04/26/recommendations-for-linux-storage-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/692743b968bfdb8fdd1a6e2131fa2e1a?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">jedreynolds</media:title>
		</media:content>
	</item>
	</channel>
</rss>
