<?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>the reality tunnel &#187; backup</title>
	<atom:link href="http://blogs.terrorware.com/geoff/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.terrorware.com/geoff</link>
	<description>questionable social commentary, poorly coded hacks, media illiteracy</description>
	<lastBuildDate>Sat, 04 Sep 2010 16:14:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Backing up and verifying files in Mac OS</title>
		<link>http://blogs.terrorware.com/geoff/2009/03/03/backing-up-and-verifying-files-in-mac-os/</link>
		<comments>http://blogs.terrorware.com/geoff/2009/03/03/backing-up-and-verifying-files-in-mac-os/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 15:47:07 +0000</pubDate>
		<dc:creator>Geoffrey Hing</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://blogs.terrorware.com/geoff/?p=1637</guid>
		<description><![CDATA[There are some interesting backup tools for system backups (Time Machine) but I want to just be able to copy and verify a directory (and its children).Â  I&#8217;ve heard that the commercial product Retrospect provides copy and verify functionality, but I&#8217;m cheap. This is the method that I used.Â  I&#8217;d be interested on hearing feedback [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.terrorware.com%2Fgeoff%2F2009%2F03%2F03%2Fbacking-up-and-verifying-files-in-mac-os%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.terrorware.com%2Fgeoff%2F2009%2F03%2F03%2Fbacking-up-and-verifying-files-in-mac-os%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>There are some interesting backup tools for system backups (Time Machine) but I want to just be able to copy and verify a directory (and its children).Â  I&#8217;ve heard that the commercial product Retrospect provides copy and verify functionality, but I&#8217;m cheap.</p>
<p>This is the method that I used.Â  I&#8217;d be interested on hearing feedback about it:</p>
<blockquote>
<pre># Copy the files using ditto 
$ ditto /Volumes/Backup/columbus_da/ /Volumes/ghingexternal/columbus_da

# Get md5s for the original and copied files
$ find /Volumes/ghingexternal/columbus_day/ -exec md5 '{}' \; &gt; md5s-new.txt
$ find /Volumes/Backup/columbus_day/ -exec md5 '{}' \; &gt; md5s-old.txt

# Strip out the directory prefix from the md5 files
$ mv md5s-old.txt md5s-old.txt.bak
$ mv md5s-new.txt md5s-new.txt.bak
$ sed 's/\/Volumes\/ghingexternal\///' md5s-new.txt.bak &gt; md5s-new.txt
$ sed 's/\/Volumes\/Backup\///' md5s-old.txt.bak &gt; md5s-old.txt

# Compare the md5s of the copied files
$ diff md5s-old.txt md5s-new.txt</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blogs.terrorware.com/geoff/2009/03/03/backing-up-and-verifying-files-in-mac-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>backing up my mail with isync</title>
		<link>http://blogs.terrorware.com/geoff/2006/02/14/backing-up-my-mail-with-isync/</link>
		<comments>http://blogs.terrorware.com/geoff/2006/02/14/backing-up-my-mail-with-isync/#comments</comments>
		<pubDate>Tue, 14 Feb 2006 05:50:29 +0000</pubDate>
		<dc:creator>Geoffrey Hing</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blogs.terrorware.com/geoff/2006/02/14/backing-up-my-mail-with-isync/</guid>
		<description><![CDATA[In the event that I switch mail providers, its good to have a backup. I found the isync program that seems like it will do a good job with this. Here is the command line I used to do the backup: isync -1 -M mail_backup/ -L -s imap.myisp.com -u imap_username -a]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogs.terrorware.com%2Fgeoff%2F2006%2F02%2F14%2Fbacking-up-my-mail-with-isync%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.terrorware.com%2Fgeoff%2F2006%2F02%2F14%2Fbacking-up-my-mail-with-isync%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>In the event that I switch mail providers, its good to have a backup. I found the isync program that seems like it will do a good job with this. Here is the command line I used to do the backup:</p>
<p>isync -1  -M mail_backup/ -L -s imap.myisp.com -u imap_username -a</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.terrorware.com/geoff/2006/02/14/backing-up-my-mail-with-isync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
