<?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>Michael Grace &#187; Mac OS</title>
	<atom:link href="http://geek.michaelgrace.org/category/mac-os/feed/" rel="self" type="application/rss+xml" />
	<link>http://geek.michaelgrace.org</link>
	<description>All my geek in one place</description>
	<lastBuildDate>Wed, 21 Jul 2010 14:11:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>TextMate Bundle For Committing KRL</title>
		<link>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/</link>
		<comments>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 07:14:52 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1417</guid>
		<description><![CDATA[I created a simple TextMate bundle that maps cmd + k to saving the app code and then committing the app to the Kynetx servers.
You can view and download the bundle on my github at http://gist.github.com/437379
]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 333px"><a href="http://gist.github.com/437379"><img title="TextMate KRL Commit Bundle" src="https://mikegrace.s3.amazonaws.com/geek-blog/textmate-krl-commit-bundle.jpg" alt="TextMate KRL Commit Bundle" width="323" height="150" /></a><p class="wp-caption-text">TextMate KRL Commit Bundle</p></div>
<p>I created a simple TextMate bundle that maps cmd + k to saving the app code and then committing the app to the Kynetx servers.</p>
<p>You can view and download the bundle on my github at <a href="http://gist.github.com/437379">http://gist.github.com/437379</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/06/textmate-bundle-for-committing-krl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Growl Notifications for Kynetx KRL Command Line Tool</title>
		<link>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/</link>
		<comments>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 06:42:04 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Kynetx]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1409</guid>
		<description><![CDATA[I have been using the Kynetx KRL command line tool for several weeks now and it has made my development of Kynetx apps much easier. The only problem that I have had as I have been using the command line tool is that once I commit my app I have to wait a few seconds [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 406px"><a href="http://gist.github.com/437309"><img title="KRL Commit Growl Notification" src="https://mikegrace.s3.amazonaws.com/geek-blog/krl-commit-growl-notification.jpg" alt="KRL Commit Growl Notification" width="396" height="90" /></a><p class="wp-caption-text">KRL Commit Growl Notification</p></div>
<p>I have been using the <a href="http://github.com/kynetx/krl">Kynetx KRL command line tool</a> for several weeks now and it has made my development of Kynetx apps much easier. The only problem that I have had as I have been using the command line tool is that once I commit my app I have to wait a few seconds before being able to run the new version in my browser. Until now I have been doing a lot of command + tab switching between windows to check to see if it has finished saving.</p>
<p>I have now created a clean solution that allows me to know when the version has finished being committed to the Kynetx servers and had one unexpected benefit.</p>
<p>I started out by creating a simple bash alias that would pipe the output from the &#8216;krl commit&#8217; command to a growl notification</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Growl notify after krl commit is done</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">krlc</span>=<span style="color: #ff0000;">&quot;krl commit | growlnotify -t &quot;</span>KRL<span style="color: #ff0000;">&quot; --image /Users/mikegrace/src/kynetx-x.png;&quot;</span></pre></div></div>

<p>I quickly realized that this wouldn&#8217;t work for me because piping the console to the growl notification means that the commit output wouldn&#8217;t be visible on the console.  I need to be able to see on the console what the output was in case there were errors or the latest saved version so I started looking for a better solution and came up with <a href="http://gist.github.com/437309">this</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Use growlnotify to alert user of commit status</span>
krl<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> $<span style="color: #000000; font-weight: bold;">@</span> == <span style="color: #ff0000;">&quot;commit&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
  <span style="color: #7a0874; font-weight: bold;">command</span> krl commit <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> status.txt <span style="color: #000000; font-weight: bold;">|</span> growlnotify <span style="color: #660033;">-t</span> <span style="color: #ff0000;">&quot;KRL&quot;</span> <span style="color: #660033;">--image</span> <span style="color: #000000; font-weight: bold;">/</span>kynetx-x.png;
  <span style="color: #c20cb9; font-weight: bold;">cat</span> status.txt;
 <span style="color: #000000; font-weight: bold;">else</span>
  <span style="color: #7a0874; font-weight: bold;">command</span> krl $<span style="color: #000000; font-weight: bold;">@</span>
 <span style="color: #000000; font-weight: bold;">fi</span>;
<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>I created a function in my bash profile that runs when I run the krl command. When it sees me using the commit parameter it will do a krl commit and then tee that output to a status.txt file and pipe it to the growl notification. To have the output also show up on the console I cat the status.txt file back to the console. The unforeseen benefit here is that it is now really easy to share error output with others because it can be found in the status.txt file in the app folder.</p>
<p>I also created a bash script, <a href="http://gist.github.com/437280">available on my github</a>, that takes care of the installation for you. I created this script purely for fun and I had a blast doing it!</p>
<p>I had a really great time doing all of this and learned a lot. There is a lot of power in being able to manipulate command line tools to make tasks easier.</p>
<p>As Bigweld would say, &#8220;See a need, fill a need&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/06/growl-notifications-for-kynetx-krl-command-line-tool/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://geek.michaelgrace.org/2010/05/1400/</link>
		<comments>http://geek.michaelgrace.org/2010/05/1400/#comments</comments>
		<pubDate>Sun, 16 May 2010 00:55:17 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1400</guid>
		<description><![CDATA[
When I recently did a fresh install of OS X I used this tutorial on how to move my Mac&#8217;s Mail.app to a new computer and it worked without a hitch. Nice! : )
]]></description>
			<content:encoded><![CDATA[<p><img src="https://mikegrace.s3.amazonaws.com/geek-blog/mac-mail.png" alt="mac mail app" /><br />
When I recently did a fresh install of OS X I used <a href="http://www.ehow.com/how_2269704_apple-mail-settings-email-mac.html">this tutorial</a> on how to move my Mac&#8217;s Mail.app to a new computer and it worked without a hitch. Nice! : )</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/05/1400/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Access Local Mac Dev Environment from VM</title>
		<link>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/</link>
		<comments>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:20:04 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Virtual-Machine]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1268</guid>
		<description><![CDATA[Testing my web development in IE is the bane of my existence. Since I run Apache and MYSQL on my local host on my Mac it was always a trick to view my work though my Windows VM until my friend Mike Farmer showed me an easy way to access my development environment on my Mac from my virtual machine.
Steps:

Get [...]]]></description>
			<content:encoded><![CDATA[<p>Testing my web development in IE is the bane of my existence. Since I run Apache and MYSQL on my local host on my Mac it was always a trick to view my work though my Windows VM until my friend <a href="http://twitter.com/mikefarmer">Mike Farmer</a> showed me an easy way to access my development environment on my Mac from my virtual machine.</p>
<p>Steps:</p>
<ol>
<li>Get default gateway of VM machine</li>
<li>Use that address the same way you would &#8220;localhost&#8221; on your Mac</li>
</ol>
<p>Example:</p>
<div class="wp-caption alignnone" style="width: 548px"><img title="Get IP address of VM" src="https://geek-blog.s3.amazonaws.com/2010/xp-cmd-ipaddress.jpg" alt="Get IP address of VM" width="538" height="351" /><p class="wp-caption-text">Get IP address of VM</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img class=" " title="Local Mac development environment" src="https://geek-blog.s3.amazonaws.com/2010/mac-local-couchdb-environment.jpg" alt="Local Mac development environment" width="600" height="441" /><p class="wp-caption-text">Local Mac development environment</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img class=" " title="Dev environment from VM" src="https://mikegrace.s3.amazonaws.com/geek-blog/xp-access-mac-dev-environment.jpg" alt="Dev environment from VM" width="600" height="441" /><p class="wp-caption-text">Dev environment from VM</p></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/access-local-mac-dev-environment-from-vm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tail Multiple Files</title>
		<link>http://geek.michaelgrace.org/2010/02/tail-multiple-files/</link>
		<comments>http://geek.michaelgrace.org/2010/02/tail-multiple-files/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 20:14:52 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1263</guid>
		<description><![CDATA[How to tail multiple files
Terminal command: tail -f &#60;file.name&#62; &#60;file.name&#62;
Tailing multiple files in one terminal window is a life saver when you are pressed for space on your screen.
With tail you can tail just about as many files as you want. I doubt it would be very useful to have more than a few tailed [...]]]></description>
			<content:encoded><![CDATA[<h1>How to tail multiple files</h1>
<p>Terminal command: tail -f &lt;file.name&gt; &lt;file.name&gt;</p>
<div class="wp-caption alignnone" style="width: 610px"><img title="Tail Three Files" src="https://geek-blog.s3.amazonaws.com/2010/tail-three-files.png" alt="Tail Three Files" width="600" height="322" /><p class="wp-caption-text">Tail Three Files</p></div>
<div class="wp-caption alignnone" style="width: 610px"><img title="Tail Two Files" src="https://geek-blog.s3.amazonaws.com/2010/tail-two-files.png" alt="Tail Two Files" width="600" height="313" /><p class="wp-caption-text">Tail Two Files</p></div>
<p>Tailing multiple files in one terminal window is a life saver when you are pressed for space on your screen.<br />
With tail you can tail just about as many files as you want. I doubt it would be very useful to have more than a few tailed at the same time.</p>
<h3><strong><a href="http://geek.michaelgrace.org/2010/02/tail-multiple-files/">Leave a quick comment if you found this helpful or have other helpful suggestions like this one.</a></strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2010/02/tail-multiple-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install 64 bit Ruby On Rails and MySQL on OS X</title>
		<link>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/</link>
		<comments>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 11:54:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[ROR]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1197</guid>
		<description><![CDATA[
For a project that I am starting I wanted to use Rails and MySQL so I decided to install for source that I compile myself for both. It was amazingly easy and satisfying to have both compiled and installed on my machine for development. Hivelogic has some really simple easy to follow blog posts on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/piston9/309393133/"><img class="aligncenter size-full wp-image-1198" title="Because it's fast!!" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/fast_bike.jpg" alt="because it's fast!" width="650" height="172" /></a></p>
<p>For a project that I am starting I wanted to use Rails and MySQL so I decided to install for source that I compile myself for both. It was amazingly easy and satisfying to have both compiled and installed on my machine for development. Hivelogic has some really simple easy to follow blog posts on how to do both. If you are wanting to compile and install either Rails or MySQL on your Mac from source code then I recommend you check them out.</p>
<h2><a href="http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/">Installing MySQL on Snow Leopard</a></h2>
<h2><a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/">Installing Ruby, RubyGems, and Rails on Snow Leopard</a></h2>
<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/12/ruby_on_rails.jpg"><img class="aligncenter size-full wp-image-1205" title="Ruby On Rails" src="http://geek.michaelgrace.org/wp-content/uploads/2009/12/ruby_on_rails.jpg" alt="Ruby On Rails" width="327" height="86" /></a></p>
<p><a rel="cc:attributionURL" href="http://www.flickr.com/photos/piston9/">Bike photo by piston9</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/12/install-64-bit-ruby-on-rails-and-mysql-on-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Key Based Authentication for SSH</title>
		<link>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/</link>
		<comments>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 01:45:02 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=1040</guid>
		<description><![CDATA[What is key based authentication for ssh?
Key based authentication for SSH is a way to connect remotely to another computer/server using an encrypted file you HAVE and an optional password you KNOW to unlock the file. Key based authentication has the advantage of being more secure and/or more convenient.
Why?
Password based authentication:
Logging in via password over [...]]]></description>
			<content:encoded><![CDATA[<h2>What is key based authentication for ssh?</h2>
<p><img class="size-full wp-image-1075 alignleft" title="key" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3509344402_1d0bd80ec9_t.jpg" alt="key" width="100" height="100" />Key based authentication for SSH is a way to connect remotely to another computer/server using an encrypted file you HAVE and an optional password you KNOW to unlock the file. Key based authentication has the advantage of being more secure and/or more convenient.</p>
<h3>Why?</h3>
<p>Password based authentication:<br />
Logging in via password over SSH encrypts your password so it ends up looking like this:<br />
<code>..t-:p.%.E.{..E..X7.@.@.~....s..............NXP...{W..!8..;.eh9..N......#....q..1f...:...D9R0 zy</code><br />
Because the password is encrypted, it won&#8217;t be seen in plain text over the wire which is good. If the password is short or simple enough, a hacker will be able to crack your password. Assuming the password is good enough, password based authentication&#8217;s strength comes from keeping that knowledge from others.</p>
<p>Key based authentication allows you to connect remotely using an encrypted file as a key instead of a password. Key based authentication gives you the option to <span id="more-1040"></span>lock the key with a password or not. Many choose not to lock the key with a password for convenience but, if the key ever gets stolen, the captor will be able to use the key without putting in a password to unlock it.</p>
<p><em>Key based authentication is a very attractive remote authentication solution because it employs two factors of authentication: something you have and something you know. Getting someone&#8217;s password is fairly easy given enough time but getting a file from their computer and their password is much more difficult.</em></p>
<h2>HOW TO</h2>
<h3>How to set up key based authentication on a linux server</h3>
<h4>Setting up key based ssh authentication consists of 4 steps.</h4>
<p>1. Create public &amp; private keys on your machine<br />
2. Copy public key to server<br />
3. Add public key on server to server&#8217;s authorized key list<br />
4. Enjoy while protecting password &amp; private key</p>
<h5>1. Create public &amp; private keys on your machine</h5>
<ul>
<li> On your local machine, issue the following command into the terminal to create the directory to hold your public and private keys. If it tells you that the directory already exists that is just fine.</li>
</ul>
<p><code>mkdir ~./.ssh</code></p>
<ul>
<li> Navigate to recently created directory.</li>
</ul>
<p><code>cd ~/.ssh</code></p>
<ul>
<li> Start application that will help you generate keys.</li>
</ul>
<p><code>ssh-keygen</code></p>
<ul>
<li> Follow and answer prompts to create keys. Pressing enter will accept defaults for prompts and is fine for all prompts except for the prompt asking for a passphrase. Enter a password to lock the key from unauthorized use or leave blank to have no passphrase. Running through the program looks like this:</li>
</ul>
<p><code>mike:.ssh mike$ ssh-keygen<br />
Generating public/private rsa key pair.<br />
Enter file in which to save the key (/Users/mike/.ssh/id_rsa):<br />
Enter passphrase (empty for no passphrase):<br />
Enter same passphrase again:<br />
Your identification has been saved in /Users/mike/.ssh/id_rsa.<br />
Your public key has been saved in /Users/mike/.ssh/id_rsa.pub.<br />
The key fingerprint is:<br />
4a:3b:67:e0:82:b7:46:51:0b:b3:41:28:d4:9a:5d:f6 mike@mike<br />
The key's randomart image is:<br />
+--[ RSA 2048]----+<br />
|...o.            |<br />
|. ..+o.          |<br />
| .+ o*..         |<br />
| o .o .E         |<br />
|     .o S        |<br />
|   ..o +         |<br />
|  ..o = o        |<br />
|   ..o +         |<br />
|   ..            |<br />
+-----------------+</code></p>
<h5>2. Copy public key to server</h5>
<ul>
<li> Connect to server via ssh (or other means)</li>
</ul>
<p><code>ssh user@host</code></p>
<ul>
<li> Make folder to hold public key</li>
</ul>
<p><code>mkdir ~/.ssh</code></p>
<ul>
<li> Open new terminal window to copy public key to server via scp</li>
</ul>
<p><code>scp ~/.ssh/id_rsa.pub user@host:~/.ssh/</code></p>
<ul>
<li> Close terminal window used to copy public key over</li>
</ul>
<h5>3. Add public key on server to server&#8217;s authorized key list</h5>
<p><code> cat ~/.ssh/id_rsa.pub &gt;&gt; ~/.ssh/authorized_keys</code></p>
<h5>4. Enjoy while protecting password &amp; private key</h5>
<ul>
<li> You are now all set up and can connect to the server using you newly created keys. Just ssh into the server as usual and the server will take care of the key authentication behind the scenes. If you are using a password to lock your key, you will see a window similar to this the first time you use the key until your mac keychain locks again. If you are not using a password to lock the key then you will never be prompted for a password again to ssh into your server from your computer.</li>
</ul>
<p><img class="alignnone size-full wp-image-1074" title="keys" src="http://geek.michaelgrace.org/wp-content/uploads/2009/11/3466560105_0b6f694d4a_m.jpg" alt="keys" width="240" height="161" /></p>
<p>Note:<br />
You can easily rename the keys so you can have multiple keys on a computer and server. Just make sure to append each key to the server&#8217;s authorized_keys file using<br />
<code> cat ~/.ssh/id_rsa.pub &gt;&gt; ~/.ssh/authorized_keys</code></p>
<p>I originally learned how to set up key based authentication on a linux server from my friend Jesse on his blog <a href="http://www.jessecole.org/">http://www.jessecole.org/</a></p>
<p>Images:</p>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/brenda-starr/">Keys </a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
<div><a rel="cc:attributionURL" href="http://www.flickr.com/photos/brenda-starr/">Key </a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/11/key-based-authentication-for-ssh/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Level Out Podcast Volume Tool</title>
		<link>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/</link>
		<comments>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 03:34:53 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Podcast]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=974</guid>
		<description><![CDATA[
Ever wonder how to level sound volume on a recording or podcast? The Levelator is a super simple application for Mac or Windows to level out sound volumes on a podcast recording. Mike Farmer and I use it for our podcast over at http://technologyforlearning.info and it works wonders for the times when we accidentally move [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.conversationsnetwork.org/levelator"><img class="aligncenter size-full wp-image-975" title="Levelator" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/Levelator-1.2.1-screen.png" alt="Levelator" width="431" height="246" /></a></p>
<p>Ever wonder how to level sound volume on a recording or podcast? The Levelator is a super simple application for Mac or Windows to level out sound volumes on a podcast recording. <a href="http://michaelfarmer.info/blog/">Mike Farmer</a> and I use it for our podcast over at <a href="http://technologyforlearning.info">http://technologyforlearning.info</a> and it works wonders for the times when we accidentally move away from the microphone. It&#8217;s free and it works great so what are you waiting for? Go download it from their site at <a href="http://www.conversationsnetwork.org/levelator">http://www.conversationsnetwork.org/levelator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/level-out-podcast-volume-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Are the Default Mac OS X Icons</title>
		<link>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/</link>
		<comments>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 03:28:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=957</guid>
		<description><![CDATA[
Question:
Where are the default Mac OS X Icons in .icns format?
Answer:

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources


How to get there:
you can get there several different ways.
1) Paste into Terminal

cd /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources; open .

2) Open Finder -&#62; Select &#8220;Go&#8221; menu item -&#62; Select &#8220;Go to Folder&#8221; -&#62; Paste

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources

3) Open Finder -&#62; (Keyboard Shortcut) Shift + Command + G -&#62; Paste

/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources

]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-965 alignleft" title="FinderIcon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/FinderIcon.png" alt="FinderIcon" width="128" height="128" /><br />
<strong>Question:</strong><br />
Where are the default Mac OS X Icons in .icns format?</p>
<p><strong>Answer:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

<p><img class="alignleft size-full wp-image-972" title="ErasingIcon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/10/ErasingIcon.png" alt="ErasingIcon" width="128" height="128" /></p>
<p><strong>How to get there:</strong></p>
<p>you can get there several different ways.<br />
<strong>1)</strong> Paste into Terminal</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources; open .</pre></div></div>

<p><strong>2) </strong>Open Finder -&gt; Select &#8220;Go&#8221; menu item -&gt; Select &#8220;Go to Folder&#8221; -&gt; Paste</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

<p><strong>3) </strong>Open Finder -&gt; (Keyboard Shortcut) Shift + Command + G -&gt; Paste</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/10/where-are-the-default-mac-os-x-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Compatible 64 bit Growl (beta)</title>
		<link>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/</link>
		<comments>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 21:00:51 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=942</guid>
		<description><![CDATA[
A Snow Leopard compatible beta can be found at
http://growl.info/beta.html
]]></description>
			<content:encoded><![CDATA[<p><a href="http://growl.info/beta.htm"><img class="aligncenter size-full wp-image-943" title="growl" src="http://geek.michaelgrace.org/wp-content/uploads/2009/09/growl.png" alt="growl" width="128" height="128" /></a></p>
<p>A Snow Leopard compatible beta can be found at</p>
<p><a href="http://growl.info/beta.html">http://growl.info/beta.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/09/snow-leopard-compatible-64-bit-growl-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OS X Auto complete / Suggest</title>
		<link>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/</link>
		<comments>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 23:04:47 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Keyboard]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=738</guid>
		<description><![CDATA[Did you know that some OS X applications use the escape key to auto complete what you have typed? Much like the tab completion feature found in most linux command line shells, this can be a nice tool to use when you aren&#8217;t sure of the spelling of a word. Here are just a few [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/jantik/188946444/"><img class="alignleft size-full wp-image-749" title="auto_complete" src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/auto_complete.jpg" alt="auto_complete" width="250" height="146" /></a>Did you know that some OS X applications use the escape key to auto complete what you have typed? Much like the tab completion feature found in most linux command line shells<span id="more-738"></span>, this can be a nice tool to use when you aren&#8217;t sure of the spelling of a word. Here are just a few apps that I found that use the escape key to auto complete.</p>
<div id="attachment_751" class="wp-caption aligncenter" style="width: 210px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/stickies_auto_complete.jpg" alt="Stickies" title="Stickies" width="200" height="291" class="size-full wp-image-751" /><p class="wp-caption-text">Stickies</p></div>
<div id="attachment_752" class="wp-caption aligncenter" style="width: 310px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/mail_auto_complete.jpg" alt="Mail" title="Mail" width="300" height="233" class="size-full wp-image-752" /><p class="wp-caption-text">Mail</p></div>
<div id="attachment_753" class="wp-caption aligncenter" style="width: 410px"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/terminal_auto_complete.jpg" alt="Terminal" title="Terminal" width="400" height="146" class="size-full wp-image-753" /><p class="wp-caption-text">Terminal</p></div>
<p>A big thanks to my friend <a href="http://michaelfarmer.info/blog/">Mike Farmer</a> for pointing this out to me. ; )</p>
<p>Car Photo: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/jantik/">http://www.flickr.com/photos/jantik/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/mac-os-x-auto-complete-suggest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Search Keyboard Shortcut</title>
		<link>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/</link>
		<comments>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:01:56 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=666</guid>
		<description><![CDATA[
Set cursor focus in Firefox to search box  ->  cmd + K
Set cursor focus in most Mac OS X browsers  ->  cmd + L
Two of my most used and most useful keyboard shortcuts while browsing the web using Firefox on Mac OS X
My good friend Mike showed me the keyboard shortcut [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/08/firefox_search_shortcut.jpg" alt="firefox_search_shortcut" title="firefox_search_shortcut" width="309" height="84" class="aligncenter size-full wp-image-669" /></p>
<p><strong>Set cursor focus in Firefox to search box  ->  cmd + K<br />
Set cursor focus in most Mac OS X browsers  ->  cmd + L</strong></p>
<p>Two of my most used and most useful keyboard shortcuts while browsing the web using Firefox on Mac OS X</p>
<p>My good friend <a href="http://michaelfarmer.info/blog/">Mike</a> showed me the keyboard shortcut to jump to the Firefox search box after he accidentally stumbled upon it. Thanks Mike!</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/08/firefox-search-keyboard-shortcut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotlight Missing Files</title>
		<link>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/</link>
		<comments>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 07:53:44 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=527</guid>
		<description><![CDATA[
How to fix your spotlight woes.
I use spotlight all the time to launch applications and open files. I recently ran into some trouble with files and applications disappearing from the spotlight index. I was able to fix the problem by deleting my spotlight index and rebuilding it. 
First you should just make sure your spotlight [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">
<div id="attachment_543" class="wp-caption alignright" style="width: 138px"><img class="size-full wp-image-543 " title="spotlight_icon" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_icon.jpg" alt="Spotlight Icon" width="128" height="128" /><p class="wp-caption-text">Spotlight Icon</p></div>
<p>How to fix your spotlight woes.</h3>
<p>I use spotlight all the time to launch applications and open files. I recently ran into some trouble with files and applications disappearing from the spotlight index. I was able to fix the problem by deleting my spotlight index and rebuilding it. <span id="more-527"></span></p>
<div id="attachment_528" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-528" title="preferences_spotlight" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/preferences_spotlight.jpg" alt="System Preferences - Spotlight" width="500" height="116" /><p class="wp-caption-text">System Preferences - Spotlight</p></div>
<p>First you should just make sure your spotlight settings haven&#8217;t caused the problem before you take the time to delete and rebuild your spotlight index. In system preferences go to spotlight. There are two tabs: Search Results and Privacy. Make sure the type of file you are looking for is selected and under privacy make sure the file isn&#8217;t located in any of the locations specified. Any location specified in the privacy tab will not be indexed.</p>
<div id="attachment_530" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-530" title="spotlight_search_results" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_search_results.jpg" alt="Spotlight Search Results Preferences" width="300" height="225" /><p class="wp-caption-text">Spotlight Search Results Preferences</p></div>
<div id="attachment_529" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-529" title="spotlight_privacy" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/spotlight_privacy.jpg" alt="Spotlight Privacy Preferences" width="300" height="227" /><p class="wp-caption-text">Spotlight Privacy Preferences</p></div>
<h3>Delete and Rebuild Spotlight Index</h3>
<p>To delete and rebuild your spotlight index open up your terminal and enter in these commands. (You will need your root password to execute these commands)</p>
<pre><code><span>sudo rm </span><span>-</span><span>r </span><span>/.</span><span>Spotlight</span><span>-</span><span>V</span><span>100</span><span>
sudo launchctl load </span><span>-</span><span>w </span><span>/</span><span>System</span><span>/</span><span>Library</span><span>/</span><span>LaunchDaemons</span><span>/</span><span>com</span><span>.</span><span>apple</span><span>.</span><span>metadata</span><span>.</span><span>mds</span><span>.</span><span>plist
sudo mdutil </span><span>-</span><span>E </span><span>/</span></code></pre>
<p>NOTE: For most, copying and pasting these commands will  work just fine. For some of you it might come back on the first command that the file was not found. If this is the case for you it&#8217;s ok, we just need to find the right file. Paste the first line all the way up to the &#8220;V&#8221; like this:</p>
<pre><code><span>sudo rm </span><span>-</span><span>r </span><span>/.</span><span>Spotlight</span><span>-</span><span>V</span></code></pre>
<p>then just hit the tab key and it should complete the file name. You can now hit enter and paste the rest of the commands with no problem.</p>
<h3>Explained</h3>
<ol>
<li>Deletes the spotlight index file</li>
<li>Sends secret message to the elves in your computer that make things happen</li>
<li>Causes Spotlight to rebuild indexes</li>
</ol>
<p>After you have rebuilt the index, you and spotlight can live happily ever after. :)</p>
<p><img class="aligncenter size-full wp-image-537" title="holding_hands_sunset" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/holding_hands_sunset.jpg" alt="holding_hands_sunset" width="500" height="125" /><br />
Resources:<br />
Sunset Image: <a rel="cc:attributionURL" href="http://www.flickr.com/photos/mikebaird/">http://www.flickr.com/photos/mikebaird/</a> / <a rel="license" href="http://creativecommons.org/licenses/by/2.0/">CC BY 2.0</a><br />
Terminal commands: <a href="http://superuser.com/questions/8414/stuff-dissapearing-from-spotlight-search">Question I asked on superuser.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/spotlight-missing-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Super User Beta Invite</title>
		<link>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/</link>
		<comments>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 18:42:32 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Design -Dev]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=472</guid>
		<description><![CDATA[Some of my friends have shown some interest in joining superuser.com, a sister site to stack overflow. The beta is only semi-private and anyone who really wants to can start contributing to the bank of knowledge being contributed there. If you really want to start that journey, you will have to follow the ewok. (aka [...]]]></description>
			<content:encoded><![CDATA[<p>Some of my friends have shown some interest in joining superuser.com, a sister site to stack overflow. The beta is only semi-private and anyone who really wants to can start contributing to the bank of knowledge being contributed there. If you really want to start that journey, you will have to follow the ewok. (aka click on him ; )</p>
<h3 style="text-align: center;">Enjoy</h3>
<h3 style="text-align: center;"><a href="http://blog.stackoverflow.com/2009/07/super-user-semi-private-beta-begins/"><img class="size-full wp-image-473" title="Super User Invite" src="http://geek.michaelgrace.org/wp-content/uploads/2009/07/ewok-closeup.jpg" alt="ewok-closeup" width="409" height="376" /></a></h3>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/07/super-user-beta-invite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create an empty .dmg image</title>
		<link>http://geek.michaelgrace.org/2009/06/create-an-empty-dmg-image/</link>
		<comments>http://geek.michaelgrace.org/2009/06/create-an-empty-dmg-image/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 08:29:22 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=291</guid>
		<description><![CDATA[1. Open &#8220;Disk Utility&#8221;

Open the Mac OS X utility called “Disk Utility”. It can be found in the “Applications” folder and inside the “Utilities” folder. Or… be cool and use spotlight to open the application.
2. Click &#8220;New Image&#8221;

3. Name .dmg, image, and set options


Size: Size of image
Format: How the image file is constructed (The default [...]]]></description>
			<content:encoded><![CDATA[<h3>1. Open &#8220;Disk Utility&#8221;</h3>
<p><img class="aligncenter size-thumbnail wp-image-277" title="disk_utility" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/disk_utility-150x150.png" alt="disk_utility" width="150" height="150" /></p>
<p>Open the Mac OS X utility called “Disk Utility”. It can be found in the “Applications” folder and inside the “Utilities” folder. Or… be cool and use spotlight to open the application.</p>
<h3>2. Click &#8220;New Image&#8221;</h3>
<p><img class="aligncenter size-full wp-image-292" title="Screenshot on 2009-06-28 at 2.09.52 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-2.09.52-AM.png" alt="Screenshot on 2009-06-28 at 2.09.52 AM" width="545" height="211" /></p>
<h3>3. Name .dmg, image, and set options</h3>
<p><img class="aligncenter size-full wp-image-293" title="Screenshot on 2009-06-28 at 2.11.07 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-2.11.07-AM.png" alt="Screenshot on 2009-06-28 at 2.11.07 AM" width="537" height="464" /></p>
<ul>
<li>Size: Size of image</li>
<li>Format: How the image file is constructed (The default will meet most needs)</li>
<li>Encryption: No need for this if you are creating the image to burn to a disk</li>
<li>Partitions: Ditto</li>
<li>Image Format: read/write disk image will meet most needs</li>
</ul>
<h3>4.  Click create and find your creation</h3>
<h3><img class="aligncenter size-full wp-image-294" title="Screenshot on 2009-06-28 at 2.12.24 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-2.12.24-AM.png" alt="Screenshot on 2009-06-28 at 2.12.24 AM" width="287" height="163" />5. Open image and drag and drop your files into it</h3>
<h3><img class="aligncenter size-full wp-image-295" title="Screenshot on 2009-06-28 at 2.13.14 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-2.13.14-AM.png" alt="Screenshot on 2009-06-28 at 2.13.14 AM" width="506" height="238" />6. Eject image once you are done filling</h3>
<p><img class="aligncenter size-full wp-image-296" title="Screenshot on 2009-06-28 at 2.13.41 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-2.13.41-AM.png" alt="Screenshot on 2009-06-28 at 2.13.41 AM" width="522" height="439" /></p>
<h3>7. Now the .dmg can be <a href="http://geek.michaelgrace.org/2009/06/burn-multi-partition-disk/">burned to a disk</a> or you can just keep it. Double click the .dmg to mount the image.</h3>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/06/create-an-empty-dmg-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create .dmg image from a disk</title>
		<link>http://geek.michaelgrace.org/2009/06/create-dmg-image-from-a-disk/</link>
		<comments>http://geek.michaelgrace.org/2009/06/create-dmg-image-from-a-disk/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 07:58:05 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=283</guid>
		<description><![CDATA[Creating a .dmg image file from a disk is easy and useful if you would like to make copies or backups of a disk in Mac OS X.
1. Insert Disk into drive
2. Open &#8220;Disk Utility&#8221; application

3. Select Disk to image and click &#8220;New Image&#8221;

4. Name file and select location to save

5. All done! Now you [...]]]></description>
			<content:encoded><![CDATA[<p>Creating a .dmg image file from a disk is easy and useful if you would like to make copies or backups of a disk in Mac OS X.</p>
<h2>1. Insert Disk into drive</h2>
<h2>2. Open &#8220;Disk Utility&#8221; application</h2>
<p><img class="aligncenter size-thumbnail wp-image-277" title="disk_utility" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/disk_utility-150x150.png" alt="disk_utility" width="150" height="150" /></p>
<h2>3. Select Disk to image and click &#8220;New Image&#8221;</h2>
<p><img class="aligncenter size-full wp-image-284" title="Screenshot on 2009-06-28 at 1.46.48 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-1.46.48-AM.png" alt="Screenshot on 2009-06-28 at 1.46.48 AM" width="409" height="250" /></p>
<h2>4. Name file and select location to save</h2>
<p><img class="aligncenter size-full wp-image-285" title="Screenshot on 2009-06-28 at 1.53.43 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-1.53.43-AM.png" alt="Screenshot on 2009-06-28 at 1.53.43 AM" width="536" height="374" /></p>
<p>5. All done! Now you can go register for MacWorld Expo or WWDC. ; )</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/06/create-dmg-image-from-a-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Burn a Multi-Partition CD</title>
		<link>http://geek.michaelgrace.org/2009/06/burn-multi-partition-disk/</link>
		<comments>http://geek.michaelgrace.org/2009/06/burn-multi-partition-disk/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 07:38:12 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=269</guid>
		<description><![CDATA[
What?
It may sound crazy but you actually can bun a multi partition CD and it can be useful.
Uses

 Combine several application CDs into one CD.
Backup downloaded applications onto disk without using one disk per application.
Impress your geek friends and woo a girl by showing off your burning expertise. ; )

Gist
Burn a multi-partition CD in OS [...]]]></description>
			<content:encoded><![CDATA[<h2><img class="aligncenter size-full wp-image-272" title="partition_disk_man" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/partition_disk_man.gif" alt="partition_disk_man" width="348" height="271" /></h2>
<h2>What?</h2>
<p>It may sound crazy but you actually can bun a multi partition CD and it can be useful.</p>
<h2>Uses</h2>
<ul>
<li> Combine several application CDs into one CD.</li>
<li>Backup downloaded applications onto disk without using one disk per application.</li>
<li>Impress your geek friends and woo a girl by showing off your burning expertise. ; )</li>
</ul>
<h2>Gist</h2>
<p>Burn a multi-partition CD in OS X using the built in &#8220;Disk Utility&#8221;. Partitions are created by burning to the disk an image or a .dmg file. The trick is that when you burn an image to the disk you check the option to &#8220;Leave disk appendable&#8221;.</p>
<h2><span style="text-decoration: underline;">Do it!</span></h2>
<h3>1. Have or create image files (.dmg)</h3>
<ul>
<li> If you already have the images to burn to the CD you are ready to go to the next step. If you need to create the images no problem, it&#8217;s easy! You can <a href="http://geek.michaelgrace.org/2009/06/create-dmg-image-from-a-disk/">create an image from an existing disk</a> or <a href="http://geek.michaelgrace.org/2009/06/create-an-empty-dmg-image/">create an empty one from scratch</a> and you fill it.</li>
</ul>
<h3>2. Select image file and options</h3>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-277" title="disk_utility" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/disk_utility-300x300.png" alt="disk_utility" width="180" height="180" /></p>
<ul>
<li> Open the Mac OS X utility called &#8220;Disk Utility&#8221;. It can be found in the &#8220;Applications&#8221; folder and inside the &#8220;Utilities&#8221; folder. Or&#8230; be cool and use spotlight to open the application.</li>
</ul>
<p><img class="aligncenter size-full wp-image-273" title="Screenshot on 2009-06-28 at 12.55.10 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-12.55.10-AM.png" alt="Screenshot on 2009-06-28 at 12.55.10 AM" width="238" height="77" /></p>
<ul>
<li> Click the burn icon found in the top left corner of the app.</li>
<li> Select the .dmg image file to burn first.</li>
</ul>
<p><img class="aligncenter size-medium wp-image-274" title="Screenshot on 2009-06-28 at 12.55.52 AM" src="http://geek.michaelgrace.org/wp-content/uploads/2009/06/Screenshot-on-2009-06-28-at-12.55.52-AM-300x207.png" alt="Screenshot on 2009-06-28 at 12.55.52 AM" width="300" height="207" /></p>
<ul>
<li> Select which drive to burn it with if you have more than one.</li>
<li>Select speed to burn at.</li>
<li>CHECK OPTION TO &#8220;Leave disk appendable&#8221;</li>
<li>Click the &#8220;Burn&#8221; button and go have an ice cream float to keep you cool while your disk burns. ; )</li>
</ul>
<h3>3. Do it again</h3>
<ul>
<li> After the disk is done burning it should eject or mount to the desktop depending on what you chose in the options. Because you chose to leave the disk appendable you can now repeat step 2 to append more disk images to the CD. Now when that disk is mounted each image that was burned will appear as its own disk to the system.</li>
</ul>
<h4>Note:</h4>
<p>I have only found this to work with CDs and not DVDs. If you have found a way to make this work with a DVD please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/06/burn-multi-partition-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Become a power &#8220;pinger&#8221; in the Terminal</title>
		<link>http://geek.michaelgrace.org/2009/05/become-a-power-pinger-in-the-terminal/</link>
		<comments>http://geek.michaelgrace.org/2009/05/become-a-power-pinger-in-the-terminal/#comments</comments>
		<pubDate>Wed, 27 May 2009 06:32:06 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Ping]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=220</guid>
		<description><![CDATA[
It is always fun to read the &#8220;man&#8221; pages in terminal and learn more about each command that I already use. I recently read the man page for ping and learned some cool stuff worthy of sharing.
Ping in specific time intervals

To ping at a time interval other than the default 1 second us the option [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-231" title="ping" src="http://geek.michaelgrace.org/wp-content/uploads/2009/05/ping.jpg" alt="ping" width="600" height="445" /></p>
<p>It is always fun to read the &#8220;man&#8221; pages in terminal and learn more about each command that I already use. I recently read the man page for ping and learned some cool stuff worthy of sharing.</p>
<p><strong>Ping in specific time intervals</strong></p>
<ul>
<li>To ping at a time interval other than the default 1 second us the option flag of &#8216;-i [seconds to wait]&#8216;</li>
<li>Example: ping -i5 www.google.com
<ul>
<li>This command will send a ping to google every 5 seconds</li>
<li>Note: It appears that any interval below 1 second requires root privileges</li>
</ul>
</li>
</ul>
<p><strong>Super Ping! aka &#8220;Flood ping&#8221;</strong><br />
Personally, I think super ping sounds way cooler than flood ping but the later provides a better description of what it does.</p>
<ul>
<li>According to the &#8220;man&#8221; pages, a flood will send out pings as fast as they come back or 100 pings/sec. Which ever one is happening faster will be the rule that is followed.</li>
<li>Example: sudo ping -f www.google.com
<ul>
<li>This command will print a period to the console for every packet sent and will delete a period for every packet received. The cumulative effect of this is as more packets are dropped you will see more and more periods accumulate on the screen giving you instant feed back on how fast packets are being dropped.</li>
<li>Note: Use this command very wisely and with caution as it taxes your network.</li>
<li>With my internet connection, pinging google, I was able to send off 6,000 pings in 10 seconds.</li>
</ul>
</li>
</ul>
<p>The terminal is a very powerful tool!</p>
<p><a href="http://www.webcitation.org/archive?url=http%3A//geek.michaelgrace.org/2009/05/become-a-power-pinger-in-the-terminal/&amp;title=Become%20a%20power%20pinger%20in%20the%20Terminal&amp;author=Mike%20Grace&amp;date=2009-05-27&amp;source=http%3A//geek.michaelgrace.org/&amp;subject=terminal%3Bping%3Bunix%3Blinux"><img class="aligncenter size-full wp-image-225" title="archive_and_cite" src="http://geek.michaelgrace.org/wp-content/uploads/2009/05/archive_and_cite.jpg" alt="archive_and_cite" width="300" height="188" /></a></p>
<p>Licensing<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>You may remix, tweak, and build upon this work even for commercial reasons, as long as you credit me and license your new creations under these identical terms. All new works based on this work will carry the same license, so any derivatives will also allow commercial use. To credit this work please use the web citation and archive service found at <a href="http://www.webcitation.org/archive?url=http%3A//geek.michaelgrace.org/2009/05/become-a-power-pinger-in-the-terminal/&amp;title=Become%20a%20power%20pinger%20in%20the%20Terminal&amp;author=Mike%20Grace&amp;date=2009-05-27&amp;source=http%3A//geek.michaelgrace.org/&amp;subject=terminal%3Bping%3Bunix%3Blinux">http://www.webcitation.org/archive</a> or click on the &#8220;Archive &amp; Cite this page!&#8221; image above.<br />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/us/88x31.png" alt="Creative Commons License" /></a><br />
<span>Become a power &#8220;pinger&#8221; in the Terminal</span> by <a rel="cc:attributionURL" href="http://geek.michaelgrace.org/">Mike Grace</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
<p>Sources<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
The &#8220;man&#8221; pages were used for the information found in this post. You can find the ping man page by typing into a unix or linux terminal the command &#8220;man ping&#8221; or a copy of several operating system man pages can be found at <a href="http://manpages.unixforum.co.uk/">http://manpages.unixforum.co.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/05/become-a-power-pinger-in-the-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>open files or directory from OS X terminal</title>
		<link>http://geek.michaelgrace.org/2009/05/open-files-or-directory-from-os-x-terminal/</link>
		<comments>http://geek.michaelgrace.org/2009/05/open-files-or-directory-from-os-x-terminal/#comments</comments>
		<pubDate>Sun, 24 May 2009 21:20:36 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=162</guid>
		<description><![CDATA[In Mac OS X Terminal open the current folder in Finder by using the command &#8216;open .&#8217; You can also open a file with its default application by using &#8216;open fileName.fileExtension&#8217;
Examples:
If the current working directory in terminal is &#8220;/System/Library&#8221; then &#8216;open .&#8217; would open &#8220;/System/Library&#8221; in finder.
&#8216;open test.txt&#8217; would open the text file &#8220;test.txt&#8221; in [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_170" class="wp-caption aligncenter" style="width: 510px"><a href="http://geek.michaelgrace.org/2009/05/open-files-or-directory-from-os-x-terminal/terminal_finder_love/" rel="attachment wp-att-170"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/05/terminal_finder_love.jpg" alt="Terminal loves Finder" title="terminal_finder_love" width="500" height="218" class="size-full wp-image-170" /></a><p class="wp-caption-text">Terminal loves Finder</p></div>
<p>In Mac OS X Terminal open the current folder in Finder by using the command &#8216;open .&#8217; You can also open a file with its default application by using &#8216;open fileName.fileExtension&#8217;</p>
<p>Examples:</p>
<p>If the current working directory in terminal is &#8220;/System/Library&#8221; then &#8216;open .&#8217; would open &#8220;/System/Library&#8221; in finder.</p>
<p>&#8216;open test.txt&#8217; would open the text file &#8220;test.txt&#8221; in TextEdit.</p>
<p>&#8216;open *&#8217; would open all the files in the current directory with their default applications.</p>
<p>&#8216;open *.jpg&#8217; opens all jpg images in folder.</p>
<p>&#8216;open [ABC]*.pdf&#8217; opens all pdfs that start with an uppercase A, B, or C.</p>
<p>The possibilities and the power of the &#8216;open&#8217; command in terminal are astounding. Learn even more about the command by using the command &#8216;man open&#8217; or just &#8216;open&#8217; and the terminal will display more information on that command and how it is used. If you use the &#8216;man open&#8217; command spacebar will show the next page and &#8216;q&#8217; will exit the <strong>man</strong>ual.</p>
<p>Sources<br />
&#8212;&#8212;&#8212;&#8212;-<br />
The heart in the image was acquired from <a href="http://www.eyehook.com/free/love.html">http://www.eyehook.com/free/love.html</a> under the <a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 Generic License</a></p>
<p>URL: <a href="http://www.eyehook.com/free/love.html ">http://www.eyehook.com/free/love.html </a>Accessed: 2009-4-24. (Archived by WebCite&reg; at <a href="http://www.webcitation.org/5h1DQldAm">http://www.webcitation.org/5h1DQldAm</a>)</p>
<p><strong>License</strong><br />
&#8212;&#8212;&#8212;&#8212;-<br />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/us/88x31.png" /></a><br /><span xmlns:dc="http://purl.org/dc/elements/1.1/" property="dc:title">Open files or directory in Finder from OS X Terminal</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://geek.michaelgrace.org/" property="cc:attributionName" rel="cc:attributionURL">Mike Grace</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/us/">Creative Commons Attribution-Share Alike 3.0 United States License</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/05/open-files-or-directory-from-os-x-terminal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Working draft of WebCite Dashboard Widget</title>
		<link>http://geek.michaelgrace.org/2009/04/working-draft-of-webcite-dashboard-widget/</link>
		<comments>http://geek.michaelgrace.org/2009/04/working-draft-of-webcite-dashboard-widget/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 07:49:50 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[WebCite]]></category>
		<category><![CDATA[Widget]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=98</guid>
		<description><![CDATA[I have completed the first draft of the WebCite widget. I would love feedback and suggestions on how to make it better.

Download -&#62;webcitewdgt
Update: Please download the updated version on the Mac Widgets page.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://geek.michaelgrace.org/wp-content/uploads/2009/04/picture-1.jpg"><img class="aligncenter size-full wp-image-51" title="WebCite" src="http://geek.michaelgrace.org/wp-content/uploads/2009/04/picture-1.jpg" alt="WebCite" width="297" height="63" /></a>I have completed the first draft of the WebCite widget. I would love feedback and suggestions on how to make it better.<br />
<del datetime="2009-04-15T22:05:14+00:00"><br />
Download -&gt;<a href="http://geek.michaelgrace.org/wp-content/uploads/2009/04/webcitewdgt.zip">webcitewdgt</a></del></p>
<p>Update: Please download the updated version on the Mac Widgets page.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/04/working-draft-of-webcite-dashboard-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcut to jump focus to address bar in Safari</title>
		<link>http://geek.michaelgrace.org/2009/04/shortcut-to-jump-focus-to-address-bar-in-safari/</link>
		<comments>http://geek.michaelgrace.org/2009/04/shortcut-to-jump-focus-to-address-bar-in-safari/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 02:58:05 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Shortcuts]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=91</guid>
		<description><![CDATA[Ever since I have started hating the mouse and loving the keyboard more I always tab through everything in my browser. One thing that I have found annoying that I have to use the mouse to click back up into the address bar to type in a new address. My fingers finally convinced me to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/04/picture-11.jpg" alt="Safari" title="Safari" width="200" height="218" class="aligncenter size-full wp-image-95" />Ever since I have started hating the mouse and loving the keyboard more I always tab through everything in my browser. One thing that I have found annoying that I have to use the mouse to click back up into the address bar to type in a new address. My fingers finally convinced me to do a google search for a keyboard shortcut to jump to the address bar in Safari. Surprise! There is a shortcut and it is **drumroll** &#8230;&#8230;.. cmd + L</p>
<p>And my fingers and the keyboard lived happily ever after. : )</p>
<p>&#8212;&#8212;&#8212;<br />
Resources</p>
<p>Smith, Dori. Safari Shortcuts. dori.com. URL: <a href="http://www.dori.com/safariShortcuts.html">http://www.dori.com/safariShortcuts.html</a> . Accessed: 2009-3-13. (Archived by WebCite® at <a href="http://www.webcitation.org/5g1DV8KDe">http://www.webcitation.org/5g1DV8KDe</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/04/shortcut-to-jump-focus-to-address-bar-in-safari/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What is the location of the directory of C header files that match your running kernel?</title>
		<link>http://geek.michaelgrace.org/2009/04/what-is-the-location-of-the-directory-of-c-header-files-that-match-your-running-kernel/</link>
		<comments>http://geek.michaelgrace.org/2009/04/what-is-the-location-of-the-directory-of-c-header-files-that-match-your-running-kernel/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 05:24:25 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware Tools]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=73</guid>
		<description><![CDATA[
Installing VMware Tools for Fedora
What Happened?

In VMware Fusion selected &#8220;Virtual Machine&#8221; &#8211;> &#8220;Install VMware Tools&#8221;
In a terminal navigate to folder with install file &#8220;/home/mike/Desktop/vmware-tools-distrib/&#8221;
Ran install with &#8220;./vmware-install.pl&#8221;
Accepted all default answers to prompts

Problem
Was prompted with: 
What is the location of the directory of C header files that match your running
kernel? [/usr/src/linux/include]

The path &#8220;/usr/src/linux/include&#8221; is not an [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/04/f10launch.png" alt="f10launch" title="f10launch" width="600" height="200" class="aligncenter size-full wp-image-76" /><br />
<h1>Installing VMware Tools for Fedora</h1>
<h3>What Happened?</h3>
<ul>
<li>In VMware Fusion selected &#8220;Virtual Machine&#8221; &#8211;> &#8220;Install VMware Tools&#8221;</li>
<li>In a terminal navigate to folder with install file &#8220;/home/mike/Desktop/vmware-tools-distrib/&#8221;</li>
<li>Ran install with &#8220;./vmware-install.pl&#8221;</li>
<li>Accepted all default answers to prompts</li>
</ul>
<h3>Problem</h3>
<p>Was prompted with: </p>
<h4>What is the location of the directory of C header files that match your running<br />
kernel? [/usr/src/linux/include]<br />
</br></br><br />
The path &#8220;/usr/src/linux/include&#8221; is not an existing directory.</h4>
<h3>Fix</h3>
<ul>
<li>Get kernal package name by entering &#8220;uname -r&#8221; into your terminal.</li>
<li>The returned string is what you need to search for in google. Might look like &#8220;2.6.27.21-170.2.56.fc10.i686&#8243;</li>
<li>Download the C header package found in your google search and install. I found mine at &#8220;http://rpmfind.net/linux/rpm2html/search.php?query=kernel-devel&#8221;</li>
<li>Installed C header files ended up in &#8220;/usr/src/kernels/[package name]/include/&#8221; for me. &#8220;[package name]&#8221; is the name of the package you downloaded and installed.</li>
</ul>
<p>Hopefully doing that works for you as well as it did for me. Would love to hear if this helped and let me know if you have any questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/04/what-is-the-location-of-the-directory-of-c-header-files-that-match-your-running-kernel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving QuickConnect from Dashcode to Xcode</title>
		<link>http://geek.michaelgrace.org/2009/04/moving-quickconnect-from-dashcode-to-xcode/</link>
		<comments>http://geek.michaelgrace.org/2009/04/moving-quickconnect-from-dashcode-to-xcode/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 03:09:50 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Dashcode]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[QuickConnect]]></category>
		<category><![CDATA[Screencast]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=17</guid>
		<description><![CDATA[
Working with the QuickConnect framework to create iPhone applications is easy. I have created a screencast on how to move a QuickConnect project from Dashcode to Xcode. Watch it over on YouTube.com at http://www.youtube.com/watch?v=13zx9DrKFyw
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=13zx9DrKFyw"><img src="http://geek.michaelgrace.org/wp-content/uploads/2009/04/picture-2.jpg" alt="picture-2" title="picture-2" width="482" height="352" class="aligncenter size-full wp-image-61" /></a><br />
Working with the QuickConnect framework to create iPhone applications is easy. I have created a screencast on how to move a QuickConnect project from Dashcode to Xcode. Watch it over on YouTube.com at <a href="http://www.youtube.com/watch?v=13zx9DrKFyw">http://www.youtube.com/watch?v=13zx9DrKFyw</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/04/moving-quickconnect-from-dashcode-to-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manually Customize Mac Icons</title>
		<link>http://geek.michaelgrace.org/2009/03/manually-customize-mac-icons/</link>
		<comments>http://geek.michaelgrace.org/2009/03/manually-customize-mac-icons/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 14:43:46 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=24</guid>
		<description><![CDATA[I know that there are free and paid Mac applications that will change system icons but sometimes I am just too cheap to pay for an application that does what I can do in a few seconds or the application doesn&#8217;t do exactly what I want it to. So, in light of all of this [...]]]></description>
			<content:encoded><![CDATA[<p>I know that there are free and paid Mac applications that will change system icons but sometimes I am just too cheap to pay for an application that does what I can do in a few seconds or the application doesn&#8217;t do exactly what I want it to. So, in light of all of this I have created my own how to video and posted it to the web adding to the plethora of icon changing how to videos.</p>
<p><object width="660" height="525"><param name="movie" value="http://www.youtube.com/v/CNFiu_2WZvc&#038;hl=en&#038;fs=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/CNFiu_2WZvc&#038;hl=en&#038;fs=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="525"></embed></object></p>
<p><strong>Resources:</strong></p>
<div id="attachment_25" class="wp-caption aligncenter" style="width: 138px"><a href="http://www.juliensalort.org/Logiciels/index.php?Nom=Icns2Rsrc"><img class="size-full wp-image-25 " title="icns2rsrc" src="http://geek.michaelgrace.org/wp-content/uploads/2009/03/icns2rsrc.png" alt="icns2rsrc" width="128" height="128" /></a><p class="wp-caption-text">icns2rsrc</p></div>
<p style="text-align: center;"><a href="http://www.juliensalort.org/Logiciels/index.php?Nom=Icns2Rsrc">Icns2Rsrc.app</a></p>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 114px"><a href="http://developer.apple.com/technology/Xcode.html"><img class="size-full wp-image-26 " title="xcode_sdk" src="http://geek.michaelgrace.org/wp-content/uploads/2009/03/xcode_sdk.png" alt="Apple Developer Tools" width="104" height="118" /></a><p class="wp-caption-text">Apple Developer Tools</p></div>
<p style="text-align: center;"><a href="http://developer.apple.com/technology/Xcode.html">Apple Developer Tools</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/03/manually-customize-mac-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Security</title>
		<link>http://geek.michaelgrace.org/2009/03/browser-security/</link>
		<comments>http://geek.michaelgrace.org/2009/03/browser-security/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 05:22:57 +0000</pubDate>
		<dc:creator>MikeGrace</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Design -Dev]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://geek.michaelgrace.org/?p=20</guid>
		<description><![CDATA[I have been upset with Google for taking soo long to put out their Apple version of their Chrome browser. After reading an article on ZDNet about the Pawn2Own hacker event maybe I can give Google some slack. :-) I still want my Chrome ASAP if it is as good as the windows version though. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-22" title="pwn2own_browsers" src="http://geek.michaelgrace.org/wp-content/uploads/2009/03/pwn2own_browsers.png" alt="pwn2own_browsers" width="169" height="184" />I have been upset with Google for taking soo long to put out their Apple version of their Chrome browser. After reading an article on ZDNet about the Pawn2Own hacker event maybe I can give Google some slack. :-) I still want my Chrome ASAP if it is as good as the windows version though. Google seems to be heading in the right direction with their sandbox model for their browser. I am sad that Apple has done so little to create road blocks for hackers but I guess that is expected when you have such a low market share. Now go and read the article and make your own decision on what browser you are going to use. <a href="http://blogs.zdnet.com/security/?p=2941">Questions for Pwn2Own hacker Charlie Miller</a></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.michaelgrace.org/2009/03/browser-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
