<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Chris Murphy: My findings in tech</title>
	<atom:link href="http://chrisjmurphy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisjmurphy.wordpress.com</link>
	<description>Come read about the fun things I do with PHP, MySQL, and many other technologies.</description>
	<lastBuildDate>Tue, 18 Jan 2011 02:07:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='chrisjmurphy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Chris Murphy: My findings in tech</title>
		<link>http://chrisjmurphy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chrisjmurphy.wordpress.com/osd.xml" title="Chris Murphy: My findings in tech" />
	<atom:link rel='hub' href='http://chrisjmurphy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Hostname in Mac terminal tabs</title>
		<link>http://chrisjmurphy.wordpress.com/2009/06/24/hostname-in-mac-terminal-tabs/</link>
		<comments>http://chrisjmurphy.wordpress.com/2009/06/24/hostname-in-mac-terminal-tabs/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 03:08:22 +0000</pubDate>
		<dc:creator>chrisjmurphy</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://chrisjmurphy.wordpress.com/?p=87</guid>
		<description><![CDATA[One thing that has always annoyed me about Mac&#8217;s Terminal program is the lack of the ability to set the hostname in a tab title when I ssh to a box. There isn&#8217;t a whole lot to find on Google about how to do this but there is one diamond in the rough: Amy Linari&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=87&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One thing that has always annoyed me about Mac&#8217;s Terminal program is the lack of the ability to set the hostname in a tab title when I ssh to a box. There isn&#8217;t a whole lot to find on Google about how to do this but there is one diamond in the rough: <a href="http://purpleamy.com/magicwrap/">Amy Linari&#8217;s MagicWrap program</a>. In short this Perl program wraps the ssh binary and uses xterm escape codes to set the tab name before calling the ssh binary. Just what I was looking for!</p>
<p>Install is straight-forward with a dmg file and then easy editing of a configuration file:<br />
<code style="font-size:12px!important;padding:4px!important;">vi /usr/local/magicwrap/etc/magicwrap.conf</code><br />
Just edit that file and remove the comment hashes in front of the ssh section. Mine looks like this:</p>
<pre><code style="font-size:12px!important;padding:4px!important;"># This is a hash of wrappers. The format is as follows:
#
#       '' =&gt; [
#               'title' =&gt; '', # Use \1... to put args in title
#               'command' =&gt; '', # Command to wrap
#               'style' =&gt; '', # Style to switch to (optional)
#               'clear' =&gt; 1, # Clear screen before command (optional)
#
%wrappers = (
        'ssh' =&gt; {
                'title' =&gt; '\1',
                'command' =&gt; '/usr/bin/ssh',
                'style' =&gt; 'Pro',
                'clear' =&gt; 1,
        },
#       'ftp' =&gt; {
#               'title' =&gt; 'ftp \1',
#               'command' =&gt; '/usr/bin/ftp',
#       },
);

# Leave this alone.
1;
</code></pre>
<p>Then run this command to create the symlinks:<br />
<code style="font-size:12px!important;padding:4px!important;">/usr/local/magicwrap/bin/magicwrap</code><br />
Then make sure the MagicWrap wrapper is in your PATH before the actual ssh binary. I did this by adding it to my .profile file.<br />
<code style="font-size:12px!important;padding:4px!important;">export PATH=/usr/local/magicwrap/bin:$PATH</code><br />
After that just restart terminal and ssh as you normally do, once you connect the tab name should be changed to the name of the box you are connecting to.</p>
<p>Note: The most recent time I did this I ran in to a new error:<br />
<code style="font-size:12px!important;padding:4px!important;">Unable to create link /usr/local/magicwrap/bin/../tmp/</code><br />
I wish I could say I knew why this happened but I was able to fix it by changing some directory permissions:<br />
<code style="font-size:12px!important;padding:4px!important;">sudo chmod 777 /usr/local/magicwrap/tmp</code><br />
If anyone knows a better way to fix this please let me know&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisjmurphy.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisjmurphy.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisjmurphy.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=87&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisjmurphy.wordpress.com/2009/06/24/hostname-in-mac-terminal-tabs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3434b20ff7301624e67b61b5565f10a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chrisjmurphy</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding time zones to MySQL on Mac</title>
		<link>http://chrisjmurphy.wordpress.com/2009/06/22/adding-time-zones-to-mysql-on-mac/</link>
		<comments>http://chrisjmurphy.wordpress.com/2009/06/22/adding-time-zones-to-mysql-on-mac/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 22:44:11 +0000</pubDate>
		<dc:creator>chrisjmurphy</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[zend server]]></category>

		<guid isPermaLink="false">http://chrisjmurphy.wordpress.com/?p=79</guid>
		<description><![CDATA[Today I was trying to run someone else&#8217;s script to setup some default mysql databases. In one of the scripts there was a command as follows: SET time_zone = 'GMT'; This was causing an sql error &#8216;SQLSTATE[HY000]: General error: 1298 Unknown or incorrect time zone: &#8216;GMT&#8221;&#8217;; The reason for this error is because the time_zone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=79&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I was trying to run someone else&#8217;s script to setup some default mysql databases. In one of the scripts there was a command as follows:<br />
<code style="font-size:12px!important;padding:5px!important;">SET time_zone = 'GMT';</code><br />
This was causing an sql error &#8216;SQLSTATE[HY000]: General error: 1298 Unknown or incorrect time zone: &#8216;GMT&#8221;&#8217;; The reason for this error is because the time_zone tables in the mysql database were empty, so all I needed to do was find out how to populate them&#8230;</p>
<p>Easy fix was to import the time zones from my local machine with this easy command from the command line:<br />
<code style="font-size:12px!important;padding:5px!important;">mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql</code></p>
<p>After that my mysql.time_zone* tables were populated and running the set time_zone command worked fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisjmurphy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisjmurphy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisjmurphy.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=79&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisjmurphy.wordpress.com/2009/06/22/adding-time-zones-to-mysql-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3434b20ff7301624e67b61b5565f10a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chrisjmurphy</media:title>
		</media:content>
	</item>
		<item>
		<title>Netbeans stuck on creating project?</title>
		<link>http://chrisjmurphy.wordpress.com/2009/06/22/netbeans-stuck-on-creating-project/</link>
		<comments>http://chrisjmurphy.wordpress.com/2009/06/22/netbeans-stuck-on-creating-project/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 18:08:54 +0000</pubDate>
		<dc:creator>chrisjmurphy</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://chrisjmurphy.wordpress.com/?p=73</guid>
		<description><![CDATA[Today I ran in to an issue after installing Netbeans 6.7 (This problem existed with 6.5 as well). Whenever I tried to create a new project or add files to a package the application would just hang at 25%. I found the solution on the netbeans forums and decided to post it here for future [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=73&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I ran in to an issue after installing Netbeans 6.7 (This problem existed with 6.5 as well). Whenever I tried to create a new project or add files to a package the application would just hang at 25%. I found the solution on the netbeans forums and decided to post it here for future reference&#8230; hopefully this will save someone some time and frustration in the future:</p>
<p>All I did was edit my netbeans.conf file located here:<br />
<code style="font-size:12px!important;padding:5px!important;">vi /Applications/NetBeans/NetBeans\ 6.7\ RC3.app/Contents/Resources/NetBeans/etc/netbeans.conf</code></p>
<p>I added a line under the commented out #netbeans_jdkhome line like this:<br />
<code style="font-size:12px!important;padding:5px!important;"># Default location of JDK, can be overridden by using --jdkhome :<br />
#netbeans_jdkhome="/path/to/jdk"<br />
netbeans_jdkhome=/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home</code></p>
<p>After that I restarted Netbeans and everything worked fine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisjmurphy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisjmurphy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisjmurphy.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=73&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisjmurphy.wordpress.com/2009/06/22/netbeans-stuck-on-creating-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3434b20ff7301624e67b61b5565f10a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chrisjmurphy</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrading subversion on a Mac</title>
		<link>http://chrisjmurphy.wordpress.com/2009/06/22/upgrading-subversion-on-a-mac/</link>
		<comments>http://chrisjmurphy.wordpress.com/2009/06/22/upgrading-subversion-on-a-mac/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 14:50:17 +0000</pubDate>
		<dc:creator>chrisjmurphy</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://chrisjmurphy.wordpress.com/?p=58</guid>
		<description><![CDATA[OSX comes installed with Subversion which is really nice. But it comes installed with version 1.4.4 which is pretty old compared to the most recent version at the time of this writing which is 1.6.2. I didn&#8217;t find this out until I attempted to use the &#8211;depth option (which allows you to only check out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=58&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>OSX comes installed with Subversion which is really nice. But it comes installed with version 1.4.4 which is pretty old compared to the most recent version at the time of this writing which is 1.6.2. I didn&#8217;t find this out until I attempted to use the &#8211;depth option (which allows you to only check out so far in to a repository) during a checkout and was informed that it was an invalid option.<br />
<code style="font-size:12px!important;padding:5px!important;">cj-mac:Adknowledge cjmurphy$ svn co --depth immediates svn+ssh://...<br />
svn: invalid option: --depth<br />
cj-mac:Adknowledge cjmurphy$ svn --version<br />
svn, version 1.4.4 (r25188)<br />
</code><br />
The install process for the newest version was pretty simple. I used the CollabNet binary, the newest version can be found at <a href="http://www.open.collab.net/downloads/community/">CollabNet</a>. Just download the dmg, mount it and run through the install steps.<br />
Since the installation by default puts the svn binaries in a different location than the default mac install we have to tell bash to use the new binary. I chose to do this by adding a line to my ~/.profile file:<br />
<code style="font-size:12px;padding:5px;">vi ~/.profile</code><br />
Added these lines to the bottom:<br />
<code style="font-size:12px!important;padding:5px!important;"># Adding Subversion to PATH<br />
export PATH=/opt/subversion/bin:$PATH<br />
</code><br />
Then loaded the new .profile file in to my current terminal session:<br />
<code style="font-size:12px!important;padding:3px!important;">. ~/.profile</code><br />
That should be all we need to do, lets check the version:<br />
<code style="font-size:12px!important;padding:5px!important;">cj-mac:Adknowledge cjmurphy$ svn --version<br />
svn, version 1.6.2 (r37639)<br />
</code><br />
That&#8217;s it. Pretty simple and I can now use the &#8211;depth option as well as many other <a href="http://subversion.tigris.org/svn_1.5_releasenotes.html">new</a> and <a href="http://subversion.tigris.org/svn_1.6_releasenotes.html">useful</a> features that have been added since 1.4.4.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisjmurphy.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisjmurphy.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisjmurphy.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=58&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisjmurphy.wordpress.com/2009/06/22/upgrading-subversion-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3434b20ff7301624e67b61b5565f10a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chrisjmurphy</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing a SSD in a MacBook Pro</title>
		<link>http://chrisjmurphy.wordpress.com/2009/06/19/installing-an-ssd-in-a-macbook-pro/</link>
		<comments>http://chrisjmurphy.wordpress.com/2009/06/19/installing-an-ssd-in-a-macbook-pro/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 08:55:32 +0000</pubDate>
		<dc:creator>chrisjmurphy</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[ssd]]></category>

		<guid isPermaLink="false">http://chrisjmurphy.wordpress.com/?p=3</guid>
		<description><![CDATA[I recently purchased a new unibody 17&#8243; MacBook Pro that came with a 5200RPM 500GB hard drive. I&#8217;ve been pretty curious about the benefits and performance of SSD as a hard drive so decided to take the plunge and replace the stock hard drive with a new OCZ Vertex 120GB SSD. I took pictures of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=3&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a new unibody 17&#8243; MacBook Pro that came with a 5200RPM 500GB hard drive. I&#8217;ve been pretty curious about the benefits and performance of SSD as a hard drive so decided to take the plunge and replace the stock hard drive with a new OCZ Vertex 120GB SSD. I took pictures of each step along the way since I couldn&#8217;t find a central location for a full walkthrough of the process. This guide will be tailored to an OCZ Vertex SSD but the general steps should work fine for any other brand. Any additions, corrections, suggestions, comments are appreciated. Enjoy.</p>
<p><span style="text-decoration:underline;">Step 0: Backup Current Settings</span><br />
My first step was to use Time Machine to backup my current profile. I used an external Western Digital hard drive. This was my first experience with Time Machine and it was a simple and successful process!</p>
<p><span style="text-decoration:underline;">Step 1: Get the latest Firmware and Boot Disk</span><br />
Before attaching the new OCZ SSD you&#8217;ll want to upgrade the firmware on it. My Vertex came with firmware version 1.1 and at the time of this writing the most current firmware was version 1.3. In order to flash the SSD with the the firmware a boot disk and the actual firmware utility will have to acquired. Lucky for us, a user on the OCZ forum has created an ISO with FreeDOS and the newest version of the firmware for each size of SSD. More information and download links can be found in <a href="http://www.ocztechnologyforum.com/forum/showthread.php?t=57549">this thread at the OCZ forums</a>.</p>
<p>Since I had never burned an ISO image on a Mac before I had to do a little research as it wasn&#8217;t immediately obvious. Here is how I ended up doing it: Open up &#8216;Disk Utility&#8217; and drop down the &#8216;File&#8217; menu and click &#8216;Open Disk Image&#8217;. Navigate to the disk image you downloaded and click &#8216;Open&#8217;. This will mount the ISO and you will then be able to click the &#8216;Burn&#8217; button on the top of the utility. It&#8217;s that easy and now you have a boot disk containing FreeDOS and the firmware for your SSD.</p>
<div id="attachment_4" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-4" title="Disk Utility Open ISO" src="http://chrisjmurphy.files.wordpress.com/2009/06/diskutility.png?w=300&#038;h=259" alt="Selecting the ISO in the Disk Utility" width="300" height="259" /><p class="wp-caption-text">Selecting the ISO in the Disk Utility</p></div>
<p><span style="text-decoration:underline;">Step 2: Removing the current hard drive and replacing with the SSD<br />
</span>Now that we have a boot CD we are ready to switch out the hardware; First step is to shut down your laptop (Do not merely put it sleep, do a complete shut down). Now you&#8217;re going to need a couple of tools to open the case and move the hard drive &#8216;spacers/pegs&#8217;. The first screwdriver is a Phillips #00 screwdriver and the second is a Torx T6 screwdriver; Both were purchased at Westlake Hardware:</p>
<div id="attachment_6" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-6" title="Screwdrivers for install and removal" src="http://chrisjmurphy.files.wordpress.com/2009/06/img_0016.jpg?w=300&#038;h=225" alt="Phillips #00 Screwdriver, T6 Torx Screwdriver" width="300" height="225" /><p class="wp-caption-text">Phillips #00 Screwdriver, T6 Torx Screwdriver</p></div>
<p>Got the tools? Great! We&#8217;ll begin by turning the laptop over so the bottom is facing upwards. Remove all of the screws on the outside of the casing and be sure to remember where they go. Some of the screws are longer than others so you must put them back in the same hole they were originally in. I did this by just placing them beside me in the same positions they were on the case:</p>
<div id="attachment_12" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-12" title="macbook bottom facing up" src="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_bottom.jpg?w=300&#038;h=225" alt="Screws have been removed from bottom of case" width="300" height="225" /><p class="wp-caption-text">Screws have been removed from bottom of case</p></div>
<div id="attachment_13" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-13" title="Screw placement lay-out" src="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_screw_placement.jpg?w=300&#038;h=225" alt="Screws laid out in their placement for the case" width="300" height="225" /><p class="wp-caption-text">Screws laid out in their placement for the case</p></div>
<div id="attachment_15" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-15" title="Bottom cover off" src="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_unconvered.jpg?w=300&#038;h=225" alt="MacBook will bottom cover off" width="300" height="225" /><p class="wp-caption-text">MacBook with bottom cover off</p></div>
<p>Since it is hard to tell, I will say that the longer screws were the last three on the top but I believe one of them was a even a different length. I think all the small screws were the same but be safe and make sure you know exactly where to put each screw when we put the bottom back on. Once the cover is removed touch a metal part inside to make sure you are grounded. A good spot is the casing that holds the optical drive in. Now that you are grounded locate the hard drive which is in the very bottom right have corner. First you will need to remove the bracket that is holding the hard drive pegs in place. The bracket is located above the drive and has 2 screws.</p>
<div id="attachment_17" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-17" title="Hard drive placement" src="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive1.jpg?w=300&#038;h=225" alt="Hard drive still hooked up" width="300" height="225" /><p class="wp-caption-text">Hard drive still hooked up</p></div>
<div id="attachment_18" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-18" title="Bracket removed" src="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_bracket.jpg?w=300&#038;h=117" alt="The hdd bracket removed" width="300" height="117" /><p class="wp-caption-text">The hdd bracket removed</p></div>
<p>Now that the bracket has been removed we can take the hard drive out and disconnect it from the motherboard. There should be a small clear tab attached to the drive; Just pull this tab up and carefully slide the hard drive up. Remember it is still connected so don&#8217;t pull it out too far. Detach the cable that connects the drive and the motherboard by gently pulling at the end of the cable near the connection and then entirely disconnecting the cable.</p>
<div id="attachment_21" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-21" title="Cord still connected" src="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_cord_connected.jpg?w=300&#038;h=225" alt="Hard drive removed with cord still connected" width="300" height="225" /><p class="wp-caption-text">Hard drive removed with cord still connected</p></div>
<div id="attachment_23" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-23" title="Cord is now disconnected" src="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_disconnected1.jpg?w=300&#038;h=225" alt="Hard drive with cord disconnected" width="300" height="225" /><p class="wp-caption-text">Hard drive with cord disconnected</p></div>
<p>Now that we have the old hard drive disconnected we need to remove the 4 pegs/spacers that are used to keep the hard drive stabilized while in the case. This is where we need to use the Torx screwdriver. Remove all four of the pegs and place your hard drive in a safe space and also take the tab off so we can use it on the new drive. We can now prep the SSD to be installed in to its new home. First take the pegs and screw them in to the ssd the same way they were in the hdd and then add the tab to the drive so we can easily remove it in the future.</p>
<div id="attachment_30" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-30" title="1 of the 4 hard drive pegs to remove" src="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_peg22.jpg?w=300&#038;h=225" alt="1 of the 4 hard drive pegs to remove" width="300" height="225" /><p class="wp-caption-text">1 of the 4 hard drive pegs to remove</p></div>
<div id="attachment_31" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-31" title="OCZ Vertex SSD disconnected" src="http://chrisjmurphy.files.wordpress.com/2009/06/ocz_vertex_ssd_disconnected1.jpg?w=300&#038;h=225" alt="OCZ Vertex SSD disconnected" width="300" height="225" /><p class="wp-caption-text">OCZ Vertex SSD disconnected facing down</p></div>
<div id="attachment_32" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-32" title="SSD tab placement" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_tab_placement1.jpg?w=300&#038;h=225" alt="SSD tab placement" width="300" height="225" /><p class="wp-caption-text">SSD facing up with tab placed</p></div>
<p>Next step will be to connect the SSD to the cord from the motherboard. Line up the connectors correctly and gently push in the black connector until the ends are flush with the drive. We are now ready to slide the drive in its spot. Place the drive into the spot where you removed the old hdd and gently push the pegs in to the designated spaces. Then replace the hard drive bracket above the SSD and make sure the drive is secure and will not be able to move.</p>
<div id="attachment_33" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-33" title="OCZ Vertex SSD connected" src="http://chrisjmurphy.files.wordpress.com/2009/06/ocz_vertex_ssd_connected.jpg?w=300&#038;h=225" alt="OCZ Vertex SSD connected" width="300" height="225" /><p class="wp-caption-text">OCZ Vertex SSD connected</p></div>
<div id="attachment_34" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-34" title="SSD in its new home" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_placement1.jpg?w=300&#038;h=225" alt="SSD in its new home" width="300" height="225" /><p class="wp-caption-text">SSD in its new home</p></div>
<div id="attachment_35" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-35" title="SSD bracket close-up" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_bracket_replaced.jpg?w=300&#038;h=225" alt="SSD bracket close-up" width="300" height="225" /><p class="wp-caption-text">SSD bracket close-up</p></div>
<p>That is about it for the hardware installation. Just replace the back casing and put the screws back in their correct places. In the next step we will upgrade the firmware and prepare the drive for OS installation.</p>
<p><span style="text-decoration:underline;">Step 3: Upgrade the firmware<br />
</span>Now that we have the hardware installed we need to make sure the firmware is the latest and greatest. Insert the CD we burned in step 1 in to your MacBook if it not already. Then hold the &#8216;C&#8217; button down on the keyboard and push the power button to boot up for Mac. Holding the &#8216;c&#8217; button down will tell the Mac you want to boot from the CD. If everything went correctly you should now be at a command prompt. Type the command &#8216;fwupdate&#8217; and press enter.</p>
<div id="attachment_39" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-39" title="fwupdate command at prompt" src="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate1.jpg?w=300&#038;h=93" alt="fwupdate command at prompt" width="300" height="93" /><p class="wp-caption-text">fwupdate command at prompt</p></div>
<p>The next screen will ask you if you want to search for any SSDs to upgrade. Press the &#8216;y&#8217; button on your keyboard and be patient. There will be no visual indicator that you pressed the &#8216;y&#8217; button and it may take a few minutes for it to find your drive.</p>
<div id="attachment_41" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-41" title="Firmware update step 2" src="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate2.jpg?w=300&#038;h=124" alt="Firmware update step 2" width="300" height="124" /><p class="wp-caption-text">Firmware update step 2</p></div>
<p>When your SSD is found you will be prompted to enter in the number indicating which drive you want to update. If you only have one drive just press &#8217;1&#8242; and hit enter. The firmware update will finish in seconds and you will hopefully be notified that you now have the newest firmware on your SSD.</p>
<div id="attachment_42" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-42" title="firmware update step 3" src="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate4.jpg?w=300&#038;h=214" alt="firmware update step 3" width="300" height="214" /><p class="wp-caption-text">firmware update step 3</p></div>
<p>Last thing we need to do in this step is restart the computer; This time hold down the click button while the computer starts to force the cd-rom to eject then put in your OSX installation disk.</p>
<p><span style="text-decoration:underline;">Step 4: Identify the hard drive and install your operating system</span><br />
When you first boot up in to OSX installation and make your way to the &#8216;Choose your installation destination&#8217; screen you will notice there are no options available. Don&#8217;t panic! The SSD has no partitions so the installation doesn&#8217;t consider it as a place to put the operating system. Drop the &#8216;Utilities&#8217; menu down and click &#8216;Disk Utility&#8217;. This will bring up the familiar disk utility but this time we will use it to create a partition on your new drive.</p>
<div id="attachment_43" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-43" title="Oh no! Where is my ssd?" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_recognize.jpg?w=300&#038;h=238" alt="Oh no! Where is my ssd?" width="300" height="238" /><p class="wp-caption-text">Oh no! Where is my ssd?</p></div>
<div id="attachment_44" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-44" title="Don't worry. Open up Disk Utility." src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_recognize2.jpg?w=300&#038;h=250" alt="Don't worry. Open up Disk Utility." width="300" height="250" /><p class="wp-caption-text">Don&#39;t worry. Open up Disk Utility.</p></div>
<p>With Disk Utility open select your SSD on the left and then in the box on the right click the &#8216;Partition&#8217; tab. Change the &#8216;Volume Scheme&#8217; to &#8217;1 Partition&#8217;, name the drive whatever you like and make sure &#8216;Mac OS Extended (Journaled)&#8217; is selected as the partition format. Then click &#8216;Options&#8217; button and make sure the &#8216;GUID Partition Table&#8217; option is selected. Once that is confirmed apply your settings and wait while your drive is partitioned.</p>
<div id="attachment_45" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-45" title="Select the drive and 1 Partition" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition.jpg?w=300&#038;h=249" alt="Select the drive and 1 Partition" width="300" height="249" /><p class="wp-caption-text">Select the drive and 1 Partition</p></div>
<div id="attachment_46" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-46" title="Worst iPhone picture I took all night..." src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_format.jpg?w=300&#038;h=186" alt="Worst iPhone picture I took all night..." width="300" height="186" /><p class="wp-caption-text">Worst iPhone picture I took all night...</p></div>
<div id="attachment_47" class="wp-caption alignnone" style="width: 295px"><img class="size-medium wp-image-47" title="Choose GUID option" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_type.jpg?w=285&#038;h=300" alt="Choose GUID option" width="285" height="300" /><p class="wp-caption-text">Choose GUID option</p></div>
<p>Once the partitioning is done you can right click the SSD in the left column and click &#8216;Get Info&#8217;. I&#8217;ve provided the results of mine and hopefully you have something similar:</p>
<div id="attachment_50" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-50" title="Hopefully you have something like this" src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_info2.jpg?w=300&#038;h=213" alt="Hopefully you have something like this" width="300" height="213" /><p class="wp-caption-text">Hopefully you have something like this</p></div>
<p>We&#8217;re almost done. Exit Disk Utility and you should now see your SSD as an option for installation destination.</p>
<div id="attachment_52" class="wp-caption alignnone" style="width: 280px"><img class="size-medium wp-image-52" title="That's it. You're good to go." src="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_select1.jpg?w=270&#038;h=300" alt="That's it. You're good to go." width="270" height="300" /><p class="wp-caption-text">That&#39;s it. You&#39;re good to go.</p></div>
<p>You&#8217;re on your own from here on out since it&#8217;s just the regular install process. If you used Time Machine to back up your old settings just choose that option when it asks you if you want to import old settings. Please comment and let me know if this tutorial helped you or if you have suggestions or corrections. Hopefully I made this process a little bit easier for some people. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll post in a few days and give an update on the performance differences as I plan to do some comparisons on speed vs some of my co-workers&#8217; Macs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisjmurphy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisjmurphy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisjmurphy.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisjmurphy.wordpress.com&amp;blog=8239819&amp;post=3&amp;subd=chrisjmurphy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisjmurphy.wordpress.com/2009/06/19/installing-an-ssd-in-a-macbook-pro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3434b20ff7301624e67b61b5565f10a5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chrisjmurphy</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/diskutility.png?w=300" medium="image">
			<media:title type="html">Disk Utility Open ISO</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/img_0016.jpg?w=300" medium="image">
			<media:title type="html">Screwdrivers for install and removal</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_bottom.jpg?w=300" medium="image">
			<media:title type="html">macbook bottom facing up</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_screw_placement.jpg?w=300" medium="image">
			<media:title type="html">Screw placement lay-out</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/macbook_unconvered.jpg?w=300" medium="image">
			<media:title type="html">Bottom cover off</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive1.jpg?w=300" medium="image">
			<media:title type="html">Hard drive placement</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_bracket.jpg?w=300" medium="image">
			<media:title type="html">Bracket removed</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_cord_connected.jpg?w=300" medium="image">
			<media:title type="html">Cord still connected</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_disconnected1.jpg?w=300" medium="image">
			<media:title type="html">Cord is now disconnected</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/hard_drive_peg22.jpg?w=300" medium="image">
			<media:title type="html">1 of the 4 hard drive pegs to remove</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ocz_vertex_ssd_disconnected1.jpg?w=300" medium="image">
			<media:title type="html">OCZ Vertex SSD disconnected</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_tab_placement1.jpg?w=300" medium="image">
			<media:title type="html">SSD tab placement</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ocz_vertex_ssd_connected.jpg?w=300" medium="image">
			<media:title type="html">OCZ Vertex SSD connected</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_placement1.jpg?w=300" medium="image">
			<media:title type="html">SSD in its new home</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_bracket_replaced.jpg?w=300" medium="image">
			<media:title type="html">SSD bracket close-up</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate1.jpg?w=300" medium="image">
			<media:title type="html">fwupdate command at prompt</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate2.jpg?w=300" medium="image">
			<media:title type="html">Firmware update step 2</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/freedos_ocz_fwupdate4.jpg?w=300" medium="image">
			<media:title type="html">firmware update step 3</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_recognize.jpg?w=300" medium="image">
			<media:title type="html">Oh no! Where is my ssd?</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_recognize2.jpg?w=300" medium="image">
			<media:title type="html">Don&#039;t worry. Open up Disk Utility.</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition.jpg?w=300" medium="image">
			<media:title type="html">Select the drive and 1 Partition</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_format.jpg?w=300" medium="image">
			<media:title type="html">Worst iPhone picture I took all night...</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_type.jpg?w=285" medium="image">
			<media:title type="html">Choose GUID option</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_partition_info2.jpg?w=300" medium="image">
			<media:title type="html">Hopefully you have something like this</media:title>
		</media:content>

		<media:content url="http://chrisjmurphy.files.wordpress.com/2009/06/ssd_select1.jpg?w=270" medium="image">
			<media:title type="html">That&#039;s it. You&#039;re good to go.</media:title>
		</media:content>
	</item>
	</channel>
</rss>
