<?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>linsec.ca blog &#187; OS X</title>
	<atom:link href="http://linsec.ca/blog/tag/os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://linsec.ca/blog</link>
	<description>You can have it right, or you can have it now.  But you can&#039;t have it right now.</description>
	<lastBuildDate>Mon, 23 Jan 2012 23:38:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Figuring this git thing out</title>
		<link>http://linsec.ca/blog/2011/10/29/figuring-this-git-thing-out/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=figuring-this-git-thing-out</link>
		<comments>http://linsec.ca/blog/2011/10/29/figuring-this-git-thing-out/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 18:37:29 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=1019</guid>
		<description><![CDATA[I&#8217;m a little old-school in that I like subversion. I&#8217;ve used subversion for years, and have had it as a big part of my workflow for a really really long time. Unfortunately, there&#8217;s this git thing popping up all over the place and I&#8217;m starting to feel dated. (It&#8217;s bad enough that my daughter turned [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a little old-school in that I like subversion.  I&#8217;ve used subversion for years, and have had it as a big part of my workflow for a really really long time.  Unfortunately, there&#8217;s this git thing popping up all over the place and I&#8217;m starting to feel dated.  (It&#8217;s bad enough that my daughter turned 10 this month, which makes me feel old, so I have to find other ways of not feeling out-dated!).</p>
<p>The problem is that all of my version control repos are in subversion, and I hate losing history.  On some, I went through a painful CVS->SVN migration when I first started using subversion, and I was pleasantly surprised that git makes it quite a bit easier.  I found <a href="http://www.albin.net/git/convert-subversion-to-git">this blog posting</a> that helped me (for the most part&#8230; if you don&#8217;t use tags and branches, etc. you want to pay attention when doing some of the steps&#8230; took me a bit to figure that out).  Most notably, in steps four and five when changing the &#8220;trunk&#8221; to &#8220;master&#8221;; it assumes you have the standard trunk/, tags/, branches/ layout (which I do in some repos, and not in others).  If you use that convention, it works fine.  If not, you can run into problems like I did.</p>
<p>The posting indicates to use:</p>
<pre>
git svn clone [SVN repo URL] --no-metadata -A authors-transform.txt \
   --stdlayout ~/temp
...
git init --bare ~/new-bare.git
cd ~/new-bare.git
git symbolic-ref HEAD refs/heads/trunk
cd ~/temp
git remote add bare ~/new-bare.git
git config remote.bare.push 'refs/remotes/*:refs/heads/*'
git push bare
cd ~/new-bare.git
git branch -m trunk master
</pre>
<p>But this didn&#8217;t work for me, as &#8211;stdlayout isn&#8217;t so standard in my case (no tags/trunk/branches, so the top-level is the &#8220;trunk&#8221;).  Instead I had to do:</p>
<pre>
git svn clone [svn repo] -A authors-transform.txt ~/tmp/git
cd ~/tmp/git
git init --bare ~/git/scripts.git
git remote add bare ~/git/scripts.git
git config remote.bare.push 'refs/remotes/*:refs/heads/*'
git push bare
cd ~/git/scripts.git
git branch -m git-svn master
</pre>
<p>In this case, the only branch is the &#8220;git-svn&#8221; branch, so we want to turn &#8220;git-svn&#8221; into &#8220;master&#8221; (rather than trying to hunt down some non-existant branch called &#8220;trunk&#8221;).  There might have been a better way to do this, but I&#8217;m a n00b so forgive me.  All the explanation for the above is in that blog post I mentioned before (I&#8217;m mostly noting this as undoubtably I&#8217;ll bump my head against this again).</p>
<p>Some other useful links I found were <a href="http://wiki.sourcemage.org/Git_Guide#How_do_I_get_my_copy_of_the_repository.3F">this git guide</a> and a piece on <a href="http://gofedora.com/how-to-install-configure-gitweb/">setting up gitweb on Fedora</a> (works on RHEL also).  Gitweb was essential, as I&#8217;m used to using viewvc with my subversion repos.</p>
<p>So will I use git for all my repos?  Probably not.  There are some old ones that don&#8217;t need to be converted because it&#8217;s all legacy code, and there are some others that I&#8217;ve built up with too much automation.  I would like to try to extract some pieces of existing subversion repos into git, however.  The AIDE+gpg scripts are one; they&#8217;re in the Annvix tools repo, and I&#8217;d like to try to break it out into it&#8217;s own git repo with history&#8230; not sure if this is possible but I&#8217;ll poke around and see what I can come up with.  There are a few other Annvix tools that I&#8217;d do the same with (the rsec tool for one).  Since Annvix isn&#8217;t in development anymore, I&#8217;d like to &#8220;untie&#8221; those tools from it and offer them as stand-alone things (probably on github or something).</p>
<p>So that&#8217;s my Saturday adventures for this weekend.  =)</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/10/29/figuring-this-git-thing-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unwanted guest account in OS X 10.7.2</title>
		<link>http://linsec.ca/blog/2011/10/13/unwanted-guest-account-in-os-x-10-7-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unwanted-guest-account-in-os-x-10-7-2</link>
		<comments>http://linsec.ca/blog/2011/10/13/unwanted-guest-account-in-os-x-10-7-2/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 17:41:44 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=1015</guid>
		<description><![CDATA[So I was thoroughly annoyed to find a guest account with a sandboxed Safari after I had setup iCloud on OS X 10.7.2. Turns out, this only appears when you have &#8220;Find My Mac&#8221; enabled, and it does make sense (how can your mac be found if no one is using it?). If you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>So I was thoroughly annoyed to find a guest account with a sandboxed Safari after I had setup iCloud on OS X 10.7.2.  Turns out, this only appears when you have &#8220;Find My Mac&#8221; enabled, and it does make sense (how can your mac be found if no one is using it?).  If you don&#8217;t like the idea of a guest account on your mac (even if you&#8217;ve disabled the guest account in System Preferences) make sure that Find My Mac is turned off.</p>
<p>Strangely enough, if you have FileVault enabled for full-disk encryption, the guest account login still shows up when the system starts.  This leads me to believe that some of the system preferences and a copy of Safari are stored in the Lion recovery partition.  Annoyingly enough, this includes keys for wireless access points.  I don&#8217;t know if there is a way to get that information (I suspect not, but you never know), but this means that some things are being stored outside of the FileVault, which concerns me somewhat.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/10/13/unwanted-guest-account-in-os-x-10-7-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kerberos on OS X 10.7 (Lion)</title>
		<link>http://linsec.ca/blog/2011/07/26/kerberos-on-os-x-10-7-lion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kerberos-on-os-x-10-7-lion</link>
		<comments>http://linsec.ca/blog/2011/07/26/kerberos-on-os-x-10-7-lion/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 19:15:56 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[10.7]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[lion]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=1010</guid>
		<description><![CDATA[So I had upgraded my wife&#8217;s MacBook to Lion and discovered that, once again, Apple screwed around with Kerberos. This seems to be a recurring theme (and not a good one). After quite a bit of fighting and figuring, a few things have been sorted out. Once I&#8217;ve got it completely figured out, I&#8217;ll document [...]]]></description>
			<content:encoded><![CDATA[<p>So I had upgraded my wife&#8217;s MacBook to Lion and discovered that, once again, Apple screwed around with Kerberos.  This seems to be a recurring theme (and not a good one).  After quite a bit of fighting and figuring, a few things have been sorted out.  Once I&#8217;ve got it completely figured out, I&#8217;ll document it on my wiki but in the meantime (since there is a severe shortage of good info about Kerberos in Lion), here&#8217;s the skinny:</p>
<ul>
<li> MIT Kerberos has been replaced with Heimdal
<li> Heimdal seems to prefer UDP over TCP; so if your KDC has a firewall in place to block UDP ports 88 and 749, you probably want to change your firewall rules to allow access to UDP (or you get strange errors: kinit says it can&#8217;t reach any defined KDC, Ticket Viewer says you provided the wrong password)
<li> /Library/Preferences/edu.mit.Kerberos is still a valid configuration file, however you need to remove the quotes (e.g if you have <code>default_realm = "FOO.CA"</code> you need to change that to <code>default_realm = FOO.CA</code>).
<li> Subversion (either Lion-supplied or via Fink) does not seem to do GSSAPI negotiation anymore
<li> Google Chrome on Lion does not seem to do GSSAPI negotiation anymore
<li> Safari on Lion <i>does</i> work with Kerberized (mod_auth_kerb) websites
<li> Supposedly you do not need to change /etc/authorization anymore; Lion is using a PAM stack that should give you a ticket upon login (provided your kerberos password and login password are the same (or presumably it is store in your Keychain) &#8212; I&#8217;ve not tested this yet
<li> Someone indicated that you can prefix the KDC hostname in /Library/Preferences/edu.mit.Kerberos with &#8220;tcp/host&#8221; to make Heimdal talk over TCP (preventing the need to open UDP ports), but there is also another indication that this doesn&#8217;t work &#8212; I&#8217;ve not tested this yet either
</ul>
<p>Anyways, the point is it&#8217;s messy.  There is an ongoing discussion on the Apple support forums here: <a href="https://discussions.apple.com/thread/3189202">https://discussions.apple.com/thread/3189202</a> so if you&#8217;re experiencing some oddness (or getting things to work!) please either note in the comments here or on that discussion thread.  I would <i>really</i> like to get subversion and Chrome working with kerberos auth again &#8212; those are the only two things preventing me from going forward with Lion on other systems.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/07/26/kerberos-on-os-x-10-7-lion/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Work some project management magic with Merlin</title>
		<link>http://linsec.ca/blog/2011/05/17/work-some-project-management-magic-with-merlin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=work-some-project-management-magic-with-merlin</link>
		<comments>http://linsec.ca/blog/2011/05/17/work-some-project-management-magic-with-merlin/#comments</comments>
		<pubDate>Tue, 17 May 2011 22:42:14 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[merlin]]></category>
		<category><![CDATA[project management]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=991</guid>
		<description><![CDATA[Last week&#8217;s mac techmail was Work some project management magic with Merlin where we look at using ProjectWizards&#8217; Merlin project management software. If you need project management on steroids, Merlin is a good bet. Even more importantly, if you need an easy way to share project management files within a group or with co-workers, Merlin [...]]]></description>
			<content:encoded><![CDATA[<p>Last week&#8217;s mac techmail was <a href="http://www.techrepublic.com/blog/mac/work-some-project-management-magic-with-merlin/1152">Work some project management magic with Merlin</a> where we look at using ProjectWizards&#8217; Merlin project management software.  If you need project management on steroids, Merlin is a good bet.  Even more importantly, if you need an easy way to share project management files within a group or with co-workers, Merlin is probably the only real contender on the mac right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/05/17/work-some-project-management-magic-with-merlin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding uses for the iPad 2: A skeptic gives it another shot</title>
		<link>http://linsec.ca/blog/2011/04/28/finding-uses-for-the-ipad-2-a-skeptic-gives-it-another-shot/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=finding-uses-for-the-ipad-2-a-skeptic-gives-it-another-shot</link>
		<comments>http://linsec.ca/blog/2011/04/28/finding-uses-for-the-ipad-2-a-skeptic-gives-it-another-shot/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 20:10:02 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=986</guid>
		<description><![CDATA[This week&#8217;s mac techmail is Finding uses for the iPad 2: A skeptic gives it another shot in which I write about my experience with the iPad2. Short version: I like it. It&#8217;s no replacement for any existing device I have, but it&#8217;s definitely useful. Read the tip for why I like it and what [...]]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s mac techmail is <a href="http://www.techrepublic.com/blog/mac/finding-uses-for-the-ipad-2-a-skeptic-gives-it-another-shot/1112">Finding uses for the iPad 2: A skeptic gives it another shot</a> in which I write about my experience with the iPad2.  Short version: I like it.  It&#8217;s no replacement for any existing device I have, but it&#8217;s definitely useful.  Read the tip for why I like it and what I use it for.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/04/28/finding-uses-for-the-ipad-2-a-skeptic-gives-it-another-shot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enhance security on your Mac with Hands Off!</title>
		<link>http://linsec.ca/blog/2011/04/23/enhance-security-on-your-mac-with-hands-off/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=enhance-security-on-your-mac-with-hands-off</link>
		<comments>http://linsec.ca/blog/2011/04/23/enhance-security-on-your-mac-with-hands-off/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 04:46:48 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=982</guid>
		<description><![CDATA[This week&#8217;s mac techmail was Enhance security on your Mac with Hands Off! which is a neat security tool for OS X. I&#8217;ve been using Little Snitch for years, and Hands Off! is quite similar except that it provides more features and functionality, including the ability to protect files and directories on the hard drive [...]]]></description>
			<content:encoded><![CDATA[<p>This week&#8217;s mac techmail was <a href="http://www.techrepublic.com/blog/mac/enhance-security-on-your-mac-with-hands-off/1102">Enhance security on your Mac with Hands Off!</a> which is a neat security tool for OS X.  I&#8217;ve been using Little Snitch for years, and Hands Off! is quite similar except that it provides more features and functionality, including the ability to protect files and directories on the hard drive with applicable policies to programs.  Want to default deny access to files, and allow only trusted applications to access them?  No problem.  Hands Off! lets you grant access to specific files, or specific directories so that, for instance, a hack in Safari can&#8217;t automatically send (or write) files outside of what Safari should have access to: cookies, local storage, cache, etc.  Hands Off! is pretty slick and worth looking at; the tip discusses it in further details.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/04/23/enhance-security-on-your-mac-with-hands-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Fake to automate web testing on the Mac</title>
		<link>http://linsec.ca/blog/2011/04/23/use-fake-to-automate-web-testing-on-the-mac/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-fake-to-automate-web-testing-on-the-mac</link>
		<comments>http://linsec.ca/blog/2011/04/23/use-fake-to-automate-web-testing-on-the-mac/#comments</comments>
		<pubDate>Sun, 24 Apr 2011 02:53:55 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[fake]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=977</guid>
		<description><![CDATA[Last week&#8217;s Mac techmail was Use Fake to automate web testing on the Mac which takes a look at a neat app for the Mac called Fake. This app is similar to Automator, except instead of automating desktop-related tasks, it automates web-related tasks. With it you can automate web submissions, use it to do regression [...]]]></description>
			<content:encoded><![CDATA[<p>Last week&#8217;s Mac techmail was <a href="http://www.techrepublic.com/blog/mac/use-fake-to-automate-web-testing-on-the-mac/1090">Use Fake to automate web testing on the Mac</a> which takes a look at a neat app for the Mac called Fake.  This app is similar to Automator, except instead of automating desktop-related tasks, it automates web-related tasks.  With it you can automate web submissions, use it to do regression testing on a web application, and so on.  Fake is really useful for anyone that does web development and can assist in writing a test suite to make sure new development doesn&#8217;t cause regressions.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/04/23/use-fake-to-automate-web-testing-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing the right Git GUI client for Mac OS X</title>
		<link>http://linsec.ca/blog/2011/04/12/choosing-the-right-git-gui-client-for-mac-os-x/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=choosing-the-right-git-gui-client-for-mac-os-x</link>
		<comments>http://linsec.ca/blog/2011/04/12/choosing-the-right-git-gui-client-for-mac-os-x/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 04:52:21 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=970</guid>
		<description><![CDATA[Last week&#8217;s mac techmail was Choosing the right Git GUI client for Mac OS X in which I looked at the Tower application, a Git GUI client for OS X. I&#8217;ve looked at a few Git clients for OS X and Tower was my application of choice amongst the contenders; the tip explains why. Tower [...]]]></description>
			<content:encoded><![CDATA[<p>Last week&#8217;s mac techmail was <a href="http://www.techrepublic.com/blog/mac/choosing-the-right-git-gui-client-for-mac-os-x/1080">Choosing the right Git GUI client for Mac OS X</a> in which I looked at the Tower application, a Git GUI client for OS X.  I&#8217;ve looked at a few Git clients for OS X and Tower was my application of choice amongst the contenders; the tip explains why.  Tower isn&#8217;t as feature-complete as I would like it to be (most notably it&#8217;s missing git-svn support), but this is coming, as per the developers, and it&#8217;s a pretty slick program despite this (to me) glaring feature omission.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/04/12/choosing-the-right-git-gui-client-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two tips: OS X ACLs and hidden Option key commands</title>
		<link>http://linsec.ca/blog/2011/04/03/two-tips-os-x-acls-and-hidden-option-key-commands/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=two-tips-os-x-acls-and-hidden-option-key-commands</link>
		<comments>http://linsec.ca/blog/2011/04/03/two-tips-os-x-acls-and-hidden-option-key-commands/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 14:40:41 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[acl]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=966</guid>
		<description><![CDATA[I’m a little behind on putting up my recent Mac articles for TechRepublic here, so I’m going to put them all in one post. The first is Introduction to OS X Access Control Lists (ACLs) which introduces you to OS X&#8217;s implementation of filesystem access control lists. OS X, like Linux, has ACLs that can [...]]]></description>
			<content:encoded><![CDATA[<p>I’m a little behind on putting up my recent Mac articles for TechRepublic here, so I’m going to put them all in one post.</p>
<p>The first is <a href="http://www.techrepublic.com/blog/mac/introduction-to-os-x-access-control-lists-acls/1048">Introduction to OS X Access Control Lists (ACLs)</a> which introduces you to OS X&#8217;s implementation of filesystem access control lists.  OS X, like Linux, has ACLs that can be used to secure files beyond standard owner/group/world permissions.  While the Finder lets you manipulate ACLs a little bit, the CLI tools are much more extensive.</p>
<p>The second is <a href="http://www.techrepublic.com/blog/mac/finding-hidden-commands-with-the-option-key/1069">Finding hidden commands with the Option key</a> which looks at some tricks hidden in OS X that are available just by holding down the Option key.  There are some neat little nuggets you can expose when holding down that Option key and clicking on things, and this tip illustrates a few.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/04/03/two-tips-os-x-acls-and-hidden-option-key-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use CrashPlan for online backups</title>
		<link>http://linsec.ca/blog/2011/03/14/how-to-use-crashplan-for-online-backups/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-use-crashplan-for-online-backups</link>
		<comments>http://linsec.ca/blog/2011/03/14/how-to-use-crashplan-for-online-backups/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 06:06:16 +0000</pubDate>
		<dc:creator>vdanen</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[crashplan]]></category>
		<category><![CDATA[techmail]]></category>

		<guid isPermaLink="false">http://linsec.ca/blog/?p=957</guid>
		<description><![CDATA[The mac techmail from a few weeks ago was How to use CrashPlan for online backups, which looks at getting the CrashPlan client setup on OS X. CrashPlan is pretty neat: you can pay to store your backups on CrashPlan&#8217;s servers in the cloud, or you can use the client for free to backup to [...]]]></description>
			<content:encoded><![CDATA[<p>The mac techmail from a few weeks ago was <a href="http://www.techrepublic.com/blog/mac/how-to-use-crashplan-for-online-backups/1025">How to use CrashPlan for online backups</a>, which looks at getting the CrashPlan client setup on OS X.  CrashPlan is pretty neat: you can pay to store your backups on CrashPlan&#8217;s servers in the cloud, or you can use the client for free to backup to other computers that you own or belong to friends.  I&#8217;ve got a few computers here, and my mom has one with more space than she knows what to do with, so setting up CrashPlan on three computers here and one remotely, I can use CrashPlan for free, which is great.  Another bonus is CrashPlan is cross-platform, so I can run it on the two macs here, the mac at my mom&#8217;s, and the Fedora 14 workstation I&#8217;m running here as well.  Works amazingly well, even considering that the mac in the kitchen and the one at my mom&#8217;s place aren&#8217;t constantly running like the other two are.  If you&#8217;re looking for an easy way to do off-site backups, CrashPlan can do the job without costing you a cent.</p>
]]></content:encoded>
			<wfw:commentRss>http://linsec.ca/blog/2011/03/14/how-to-use-crashplan-for-online-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

