<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Obsolete Your Idols &#187; Nerdery</title>
	<atom:link href="http://blog.manjusri.org/tag/nerdery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.manjusri.org</link>
	<description>Book Reviews and Blather</description>
	<lastBuildDate>Wed, 06 Jul 2011 18:46:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Overengineering is Bestengineering</title>
		<link>http://blog.manjusri.org/2010/05/27/overengineering-is-bestengineering/</link>
		<comments>http://blog.manjusri.org/2010/05/27/overengineering-is-bestengineering/#comments</comments>
		<pubDate>Thu, 27 May 2010 21:38:56 +0000</pubDate>
		<dc:creator>binder</dc:creator>
				<category><![CDATA[Nerdery]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://blog.manjusri.org/?p=264</guid>
		<description><![CDATA[As you may know, I&#8217;m a big fan of what I&#8217;d consider the JWZ PSA style of data backup for my home systems (none of them are really pretentious enough to even be considered servers). For a while I&#8217;ve been continuing to expand on the list of &#8211;exclude options I&#8217;d been passing to rsync. But [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, I&#8217;m a big fan of what I&#8217;d consider the <a href="http://jwz.livejournal.com/801607.html">JWZ PSA</a> style of data backup for my home systems (none of them are really pretentious enough to even be considered <strong>servers</strong>).  For a while I&#8217;ve been continuing to expand on the list of &#8211;exclude options I&#8217;d been passing to rsync.  But no more!  At long last my tolerance for rambling rsync options was exhausted.</p>
<p>So of course I turned it into a script.  This script.</p>
<p><pre><code><br />
#!/bin/bash<br />
<br />
EXCLUDES=`mktemp --tmpdir=/tmp rsyncex.XXXXXX`<br />
RSYNCFLAGS=&quot;-q&quot;<br />
<br />
while getopts &quot;v&quot; Option<br />
do<br />
&nbsp;&nbsp;&nbsp;&nbsp;case $Option in<br />
&nbsp;&nbsp;&nbsp;&nbsp;v&nbsp;&nbsp; )&nbsp;&nbsp; RSYNCFLAGS=&#039;-v&#039;;;<br />
&nbsp;&nbsp;&nbsp;&nbsp;*&nbsp;&nbsp; )&nbsp;&nbsp; echo &quot;Only know -v for verbose&quot; ;;<br />
&nbsp;&nbsp;&nbsp;&nbsp;esac<br />
done<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
(<br />
cat &lt;&lt;&#039;EOL&#039;<br />
*.lock<br />
/proc/*<br />
/sys/*<br />
*/tiger/work/*<br />
*/nagios3/spool/*<br />
tmp/*<br />
/tmp/*<br />
/opt/splunk/var/*<br />
/var/www/munin/*<br />
EOL<br />
) &gt; ${EXCLUDES}<br />
<br />
# as an idle job if you can<br />
/usr/bin/ionice -c 3 -t \<br />
&nbsp;&nbsp;&nbsp;&nbsp;/usr/bin/rsync -xa ${RSYNCFLAGS} --links \<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--exclude-from=${EXCLUDES}&nbsp;&nbsp;--delete / /mnt/backup<br />
<br />
rm ${EXCLUDES}<br />
</code></pre></p>
<p>The points at which you would want to modify it for your own use should be obvious, if not the point of why you would want to use it at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.manjusri.org/2010/05/27/overengineering-is-bestengineering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open eyed.</title>
		<link>http://blog.manjusri.org/2008/07/10/open-eyed/</link>
		<comments>http://blog.manjusri.org/2008/07/10/open-eyed/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 05:02:23 +0000</pubDate>
		<dc:creator>binder</dc:creator>
				<category><![CDATA[Nerdery]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[administrivia]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://blog.manjusri.org/?p=43</guid>
		<description><![CDATA[I did what I&#8217;ve been threatening to do and deployed OpenID someplace. Here. This blog. I used an existing plugin to do it because I&#8217;ve got less time than ambition right now. Enjoy.]]></description>
			<content:encoded><![CDATA[<p>I did what I&#8217;ve been threatening to do and deployed OpenID someplace.  Here.  This blog.  I used an <a href="http://wordpress.org/extend/plugins/openid/installation/">existing plugin</a> to do it because I&#8217;ve got less time than ambition right now.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.manjusri.org/2008/07/10/open-eyed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

