<?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>Tech Thought &#187; mac osx</title>
	<atom:link href="http://blog.evandavey.com/category/mac-osx/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.evandavey.com</link>
	<description>Tech tips, hints, and general musings. PHP, Perl, Mysql, Javascript, AJAX, JSON, Linux, Mac OSX</description>
	<lastBuildDate>Wed, 27 Apr 2011 03:56:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>How-To: Force VMWare Restart/Shutdown (Mac)</title>
		<link>http://blog.evandavey.com/2010/02/how-to-force-vmware-restartshutdown-mac.html</link>
		<comments>http://blog.evandavey.com/2010/02/how-to-force-vmware-restartshutdown-mac.html#comments</comments>
		<pubDate>Thu, 11 Feb 2010 22:06:02 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=597</guid>
		<description><![CDATA[I love using VMWare Fusion on Mac, it&#8217;s perfect as I can run everything I need on one machine, and minimise my exposure to windows.  However, sometimes things go astray &#8211; windows &#8220;goes to sleep&#8221; and won&#8217;t come back to allow me to restart or shutdown the virtual machine.  How do you fix this? Hold [...]]]></description>
			<content:encoded><![CDATA[<p>I love using VMWare Fusion on Mac, it&#8217;s perfect as I can run everything I need on one machine, and minimise my exposure to windows.  However, sometimes things go astray &#8211; windows &#8220;goes to sleep&#8221; and won&#8217;t come back to allow me to restart or shutdown the virtual machine.  How do you fix this?</p>
<p><img class="alignnone size-full wp-image-598" title="Screen shot  2010-02-12 at 9.04.33 AM" src="http://blog.evandavey.com/wp-content/uploads/2010/02/Screen-shot-2010-02-12-at-9.04.33-AM.png" alt="Screen shot 2010-02-12 at 9.04.33 AM" width="272" height="124" /></p>
<p>Hold down the &#8220;option&#8221; key and then go to the &#8220;Virtual Machine&#8221; menu option. You&#8217;ll notice that the options switch from &#8220;Shutdown&#8221; to &#8220;Force Shutdown&#8221; when you hold down the &#8220;option&#8221; key.  Simply choose your required &#8220;Force&#8221; option and you should be back in business!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2010/02/how-to-force-vmware-restartshutdown-mac.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective-C: Calculating Days, Minutes, Hours from seconds</title>
		<link>http://blog.evandavey.com/2009/01/objective-c-calculating-days-minutes-hours-from-seconds.html</link>
		<comments>http://blog.evandavey.com/2009/01/objective-c-calculating-days-minutes-hours-from-seconds.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 04:42:22 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[maths]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=350</guid>
		<description><![CDATA[If you need to convert a total number of seconds into specific components (days, hours, minutes and seconds) in Objective-C, you can use this code snippet.  You can probably do this a million other ways, but this works beautifully for me:     NSNumber *valueForDisplay = [NSNumber numberWithDouble: [self valueForDisplay:clockName]];     NSNumber *totalDays = [NSNumber numberWithDouble: [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to convert a total number of seconds into specific components (days, hours, minutes and seconds) in Objective-C, you can use this code snippet.  You can probably do this a million other ways, but this works beautifully for me:</p>
<pre>    NSNumber *valueForDisplay = [NSNumber numberWithDouble:
              [self valueForDisplay:clockName]];

    NSNumber *totalDays = [NSNumber numberWithDouble:
             ([valueForDisplay doubleValue] / 86400)];
    NSNumber *totalHours = [NSNumber numberWithDouble:
             (([valueForDisplay doubleValue] / 3600) -
              ([totalDays intValue] * 24))];
    NSNumber *totalMinutes = [NSNumber numberWithDouble:
             (([valueForDisplay doubleValue] / 60) -
             ([totalDays intValue] * 24 * 60) -
             ([totalHours intValue] * 60))];
    NSNumber *totalSeconds = [NSNumber numberWithInt:
             ([valueForDisplay intValue] % 60)];</pre>
<p>The above assumes that <strong>valueForDisplay</strong> contains the total value in seconds.  Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2009/01/objective-c-calculating-days-minutes-hours-from-seconds.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How-To: Automatically sync your iTunes library with all your computers</title>
		<link>http://blog.evandavey.com/2008/08/how-to-automatically-sync-your-itunes-library-with-all-your-computers.html</link>
		<comments>http://blog.evandavey.com/2008/08/how-to-automatically-sync-your-itunes-library-with-all-your-computers.html#comments</comments>
		<pubDate>Sat, 23 Aug 2008 04:29:50 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[mac mini]]></category>
		<category><![CDATA[mac os x]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=234</guid>
		<description><![CDATA[I&#8217;ve come across a problem &#8211; my main computer (a MacBook Pro) has all my music on it, and is hooked up to my iPhone. But I&#8217;ve just got a nice big flat screen TV and its connected to my stereo. So I want to be able to play music/movies I buy on iTunes through [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve come across a problem &#8211; my main computer (a <a href="http://en.wikipedia.org/wiki/Macbook_pro">MacBook Pro</a>) has all my music on it, and is hooked up to my iPhone.  But I&#8217;ve just got a nice big flat screen TV and its connected to my stereo.  So I want to be able to play music/movies I buy on iTunes through my stereo and on my shiny new TV.</p>
<p>Unfortunately my laptop is used for work and isn&#8217;t always at home, so I can&#8217;t just share my library and play music etc over the air (this doesn&#8217;t work for movies anyway).  So I&#8217;ve come up with a solution that works really well, and is completely automated.</p>
<h2><span id="more-234"></span>Step 1: Buy a Mac Mini</h2>
<p>Yes, I could have bought a nice <a href="http://en.wikipedia.org/wiki/Apple_tv">Apple TV</a> &#8211; but why buy a cut down <a href="http://en.wikipedia.org/wiki/Mac_mini">Mac Mini</a> when you can have the real thing for only a couple of hundred more $$?  I bought the bottom of the line Mac Mini with a Bluetooth and Wireless Mouse from <a href="http://www.jbhifi.com.au">JB Hi-Fi</a> (local retailer here in Melbourne, Australia) and now I have a fully functioning internet enabled PC in my living room.</p>
<p style="text-align: center;"><img class="size-medium wp-image-238 aligncenter" title="Mac Mini" src="http://blog.evandavey.com/wp-content/uploads/2008/08/macmini.jpg" alt="" width="130" height="94" /></p>
<h2>Step 2: Synchronise the Mac Mini with my iTunes Library</h2>
<p>Now that I have my Mac Mini setup and hooked up to my stereo and TV, I need my master iTunes library (on my laptop) on my Mac Mini. </p>
<p>To do this you need to perform a few steps:</p>
<h3>Enable File Sharing on your source</h3>
<p>Firstly, you need to enable file sharing on your computer with the master iTunes library.  You should be careful when you do this not to share anything you don&#8217;t want to.  I only allow sharing for people who know my username and password (me).  To enable file sharing:</p>
<ol>
<li>Click the Apple Logo in the top left-hand corner of the screen</li>
<li>Choose <strong>System Preferences</strong></li>
<li>Select <strong>Sharing</strong></li>
<li>Check the box next to <strong>File Sharing</strong></li>
<li>Now set your file sharing preferences.  I only share for myself and turn off all other access (so you need my username and password to access my music)</li>
</ol>
<p style="text-align: center;"><a href="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-11.png"><img class="size-medium wp-image-247   alignnone" title="File Sharing Preferences" src="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-11-300x245.png" alt="" width="300" height="245" /></a></p>
<p>File sharing is now enabled on your master (for me this is my Macbook Pro)</p>
<h3><strong>Mount your source from the Mac Mini</strong></h3>
<p>Now that file sharing is enabled on your master you need to connect your destination Mac (Mac Mini for me) to your master.  To do this, open up Finder.  Your master should now appear on the left hand side below the heading <strong>Shared</strong>.  Select the master, and then click the <strong>Connect As</strong> option in the top right-hand corner of the finder window.  Enter the username and password for the master.</p>
<p style="text-align: center;"><a href="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-21.png"><img class="size-medium wp-image-250 aligncenter" title="Accessing a shared Mac" src="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-21-300x174.png" alt="" width="300" height="174" /></a></p>
<p>You should now be able to browse to your master iTunes library (usually in /Users/accountname/Music/iTunes).  You have now mounted your source library from the Mac Mini!  Now to get the music across&#8230;</p>
<h3>Sync your music!</h3>
<p><span style="line-height: 19px; white-space: normal; font-family: 'Lucida Grande';">O</span>kay, so you&#8217;ve bought a shiny new Mac Mini, enabled file sharing on your iTunes master, and connected the Mac Mini up to your master.  Now for the fun part &#8211; synchronising your music between the master and the mini.  To do this, you need to issue a command in the terminal application.  To open the terminal, do the following:</p>
<ol>
<li> Open Finder</li>
<li> Click Applications</li>
<li> Choose Utilities</li>
<li>Select Terminal</li>
</ol>
<div style="text-align: center;"><a href="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-3.png"><img class="alignnone size-medium wp-image-253" title="Terminal" src="http://blog.evandavey.com/wp-content/uploads/2008/08/picture-3-300x184.png" alt="" width="300" height="184" /></a></div>
<p>A window will appear with a command prompt.  If you have never access the command line before, don&#8217;t freak out!  It&#8217;s not scary, just very powerful.  We need to find out what the path is for your master (which you&#8217;ve just connected to).  Type the following:</p>
<pre>cd /Volumes
ls</pre>
<p>This will list all the connected volumes on your Mac Mini.  One of them should be something like &#8220;firstlastname&#8221; &#8211; whatever your username is on your master PC.  Type:</p>
<pre>cd accountname/Music/iTunes
ls</pre>
<p>(Replace accountname with your username) &#8211; you should see folders like Album Artwork and iTunes Music.  If you do, great!  You&#8217;ve just found the path to your master iTunes library. Now follow these steps to open up your Mac Mini&#8217;s iTunes directory (this is where we are going to copy all the music into):</p>
<pre>cd ~/Music/iTunes</pre>
<p>Then type the following command (this will take a while) to start copying all your music across to your Mac Mini:</p>
<pre>rsync -a -v --progress --block-size=12800
    /Volumes/accountname/Music/iTunes .</pre>
<p>This will take a while (two hours for me) while the Mac Mini copies all the music across from your master computer.  Remember to replace &#8216;accountname&#8217; with your path on your master.  Once complete, all your music is now on your Mac Mini!</p>
<p>Now anytime you want to resynchronise, simply run the command above and only the new music/videos will be copied.</p>
<h2>Step 3: Sign into the iTunes Store</h2>
<p>Now that you have all your music on the Mac Mini, you need to sign into the iTunes store with your details from the master.  This will authorise your Mac Mini to play any music and videos you have purchased from the iTunes store.</p>
<h2>Step 4: Press the Menu button on your remote!</h2>
<p>Now that you&#8217;ve signed into the iTunes store, its time to press the Menu button on your Mac Mini&#8217;s remote &#8211; because you can now use Front Row to listen and watch all the music from your master!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/08/how-to-automatically-sync-your-itunes-library-with-all-your-computers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: Mail Tip &#8211; Speedy filing of emails from your inbox</title>
		<link>http://blog.evandavey.com/2008/08/os-x-mail-tip-speedy-filing-of-emails-from-your-inbox.html</link>
		<comments>http://blog.evandavey.com/2008/08/os-x-mail-tip-speedy-filing-of-emails-from-your-inbox.html#comments</comments>
		<pubDate>Fri, 08 Aug 2008 03:57:44 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=210</guid>
		<description><![CDATA[In Mac Mail, I like to file all emails out of inbox when processed. But I have a huge folder tree to traverse to find where to move a messg to. I liked the right-click Move To menu, but its not fast enough. My newly discovered solution: 1. Select message(s) to move 2. Click on [...]]]></description>
			<content:encoded><![CDATA[<p>In Mac Mail, I like to file all emails out of inbox when processed. But I have a huge folder tree to traverse to find where to move a messg to. I liked the right-click Move To menu, but its not fast enough.</p>
<p>My newly discovered solution:</p>
<p>1. Select message(s) to move<br />
2. Click on the Help menu in menubar<br />
3. In Search (which is selected already) just type some letters of the folder I want to move it to<br />
4. Because of super-cool menu-search built into help, it it finds my folders matching, and down-arrow+enter does the move</p>
<p>Its fast. And faster if you use Help&#8217;s shortcut key (shift+command+?).</p>
<p>(Thanks to John C for this tip!)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/08/os-x-mail-tip-speedy-filing-of-emails-from-your-inbox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-to Fix: An invalid public movie atom was found in the movie.</title>
		<link>http://blog.evandavey.com/2008/06/how-to-fix-an-invalid-public-movie-atom-was-found-in-the-movie.html</link>
		<comments>http://blog.evandavey.com/2008/06/how-to-fix-an-invalid-public-movie-atom-was-found-in-the-movie.html#comments</comments>
		<pubDate>Thu, 05 Jun 2008 07:14:55 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[quicktime]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=148</guid>
		<description><![CDATA[Recently I&#8217;ve had a problem with Quicktime throwing up the following error when trying to play a video: &#8220;An invalid public movie atom was found in the movie.&#8221; I&#8217;ve searched everywhere for a solution, and couldn&#8217;t find one in forums or tech hint sites.  However I think i&#8217;ve just solved it &#8211; for me atleast.  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.evandavey.com/wp-content/uploads/2008/04/quicktimelogo.jpg"><img class="alignnone size-medium wp-image-108 alignright" style="float: right;" title="Quicktime Logo" src="http://blog.evandavey.com/wp-content/uploads/2008/04/quicktimelogo.jpg" alt="" width="134" height="134" /></a>Recently I&#8217;ve had a problem with Quicktime throwing up the following error when trying to play a video:</p>
<p><strong>&#8220;An invalid public movie atom was found in the movie.&#8221;</strong></p>
<p>I&#8217;ve searched everywhere for a solution, and couldn&#8217;t find one in forums or tech hint sites.  However I think i&#8217;ve just solved it &#8211; for me atleast.  I just installed <a href="http://www.videolan.org/vlc/" target="_blank">VLC Media Player</a> for Mac OS X.  Upon installation, my movies work!  I couldn&#8217;t be happier &#8211; I think VLC is a little more forgiving if your media format is malformed.</p>
<p>Either way, I can now watch my videos &#8211; so I&#8217;m a happy camper.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/06/how-to-fix-an-invalid-public-movie-atom-was-found-in-the-movie.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Removing ._ files on Linux</title>
		<link>http://blog.evandavey.com/2008/05/removing-mac-_-files-on-linux.html</link>
		<comments>http://blog.evandavey.com/2008/05/removing-mac-_-files-on-linux.html#comments</comments>
		<pubDate>Wed, 14 May 2008 01:33:49 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mac osx]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=132</guid>
		<description><![CDATA[If you have zipped up a directory from a Mac OSX machine and unzipped it on a linux box, chances are you have heaps of hidden files that look like ._myfile and ._mydirectory &#8211; these are files that OSX uses to keep track of additional information about your files. To remove these, do the following [...]]]></description>
			<content:encoded><![CDATA[<p>If you have zipped up a directory from a Mac OSX machine and unzipped it on a linux box, chances are you have heaps of hidden files that look like ._myfile and ._mydirectory &#8211; these are files that OSX uses to keep track of additional information about your files.</p>
<p>To remove these, do the following at the command line:</p>
<pre>find . -name "._*" -print0 | xargs -0 rm -rf</pre>
<p>That will remove all the files and you will have a clean linux hierarchy!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/05/removing-mac-_-files-on-linux.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Best Open Source Mac Applications</title>
		<link>http://blog.evandavey.com/2008/04/the-best-open-source-mac-applications.html</link>
		<comments>http://blog.evandavey.com/2008/04/the-best-open-source-mac-applications.html#comments</comments>
		<pubDate>Wed, 23 Apr 2008 23:06:11 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[mac osx]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=110</guid>
		<description><![CDATA[I&#8217;m always on the lookout for great open source mac applications, and now there is a site that summarises the best open source applications available for Mac OSX: www.opensourcemac.org It&#8217;s a simple and easy to view list of all the best open source (free) applications for Mac OSX. I found a few new ones I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always on the lookout for great open source mac applications, and now there is a site that summarises the best open source applications available for Mac OSX:</p>
<p><a href="http://www.opensourcemac.org/">www.opensourcemac.org</a></p>
<p>It&#8217;s a simple and easy to view list of all the best open source (free) applications for Mac OSX.  I found a few new ones I hadn&#8217;t even heard of here, so have a look!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/04/the-best-open-source-mac-applications.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Access Windows from OS X (Remote Desktop for Mac)</title>
		<link>http://blog.evandavey.com/2008/04/how-to-access-windows-from-os-x-remote-desktop-for-mac.html</link>
		<comments>http://blog.evandavey.com/2008/04/how-to-access-windows-from-os-x-remote-desktop-for-mac.html#comments</comments>
		<pubDate>Tue, 01 Apr 2008 10:07:47 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[mac osx]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/?p=79</guid>
		<description><![CDATA[Accessing Windows machines from your Mac can be really important.  It provides you the ability to quickly access Microsoft products and functions without the need for virtualisation. Microsoft Confusion Microsoft provides a tool called Remote Desktop Client for Mac which provides this functionality.  Unfortunately, this is still in beta and the current version has expired [...]]]></description>
			<content:encoded><![CDATA[<p>Accessing Windows machines from your Mac can be really important.  It provides you the ability to quickly access Microsoft products and functions without the need for virtualisation.</p>
<p><strong>Microsoft Confusion</strong><br />
Microsoft provides a tool called <a href="http://www.microsoft.com/mac/downloads.mspx" target="_blank">Remote Desktop Client</a> for Mac which provides this functionality.  Unfortunately, this is still in beta and the current version has expired &#8211; with Microsoft promising a new version in May. This delay has caused much <a href="http://www.officeformac.com/blog/RDC-Beta-Users--Beta2-is-Expiring--But-DonAt-Panic" target="_blank">confusion</a> in the Mac community, and personally I&#8217;ve found the tool to be quite buggy (yes I know its in beta).</p>
<p><strong>CoRD to the Rescue</strong><br />
Thankfully, the open source project <a href="http://cord.sourceforge.net/" target="_blank">CoRD</a> provides much the same functionality, including <em>file and printer sharing</em> between computers, and personally I think it has a far better user interface.  The bookmark bar on the side is much more like other Mac Applications I use (<a href="http://cyberduck.ch" target="_blank">CyberDuck</a> for instance), and in general is much more Mac like:</p>
<p style="text-align: center;"><a href="http://blog.evandavey.com/wp-content/uploads/2008/04/smallserver2003screencapture.png"><img class="alignnone size-full wp-image-80" title="CoRD Screenshot" src="http://blog.evandavey.com/wp-content/uploads/2008/04/smallserver2003screencapture.png" alt="" width="475" height="315" /></a></p>
<p>Personally, I&#8217;d forget the Microsoft Beta for now and <a href="http://prdownloads.sourceforge.net/cord/CoRD_0.4.3.dmg?download" target="_blank">download CoRD</a> today!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/04/how-to-access-windows-from-os-x-remote-desktop-for-mac.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Apple Releases Mac OS X 10.5.3 Update to Beta-Testers</title>
		<link>http://blog.evandavey.com/2008/03/apple-releases-mac-os-x-1053-update-to-beta-testers.html</link>
		<comments>http://blog.evandavey.com/2008/03/apple-releases-mac-os-x-1053-update-to-beta-testers.html#comments</comments>
		<pubDate>Sat, 29 Mar 2008 12:05:41 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[mac osx]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/2008/03/apple-releases-mac-os-x-1053-update-to-beta-testers.html</guid>
		<description><![CDATA[AppleInsider has reported that Apple has released Mac OS X 10.5.3 to Beta-Testers.  This update will be the third for the Leopard operating system since its release, and includes a number of fixes around 75 bugs and a variety of security fixes as well.  More information is at the AppleInsider site.]]></description>
			<content:encoded><![CDATA[<p>AppleInsider has <a href="http://www.appleinsider.com/articles/08/03/28/apple_begins_widespread_testing_of_mac_os_x_10_5_3_update.html" target="_blank">reported </a>that Apple has released Mac OS X 10.5.3 to Beta-Testers.  This update will be the third for the Leopard operating system since its release, and includes a number of fixes around 75 bugs and a variety of security fixes as well.  More information is at the <a href="http://www.appleinsider.com/articles/08/03/28/apple_begins_widespread_testing_of_mac_os_x_10_5_3_update.html" target="_blank">AppleInsider</a> site.<a href="http://www.appleinsider.com/articles/08/03/28/apple_begins_widespread_testing_of_mac_os_x_10_5_3_update.html"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/03/apple-releases-mac-os-x-1053-update-to-beta-testers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot Camp Driver Installation: Blue Screen of Death (MacBook Pro)</title>
		<link>http://blog.evandavey.com/2008/03/boot-camp-driver-installation-blue-screen-of-death-macbook-pro.html</link>
		<comments>http://blog.evandavey.com/2008/03/boot-camp-driver-installation-blue-screen-of-death-macbook-pro.html#comments</comments>
		<pubDate>Sat, 29 Mar 2008 11:50:20 +0000</pubDate>
		<dc:creator>Ev</dc:creator>
				<category><![CDATA[mac osx]]></category>
		<category><![CDATA[boot camp]]></category>

		<guid isPermaLink="false">http://blog.evandavey.com/2008/03/boot-camp-driver-installation-blue-screen-of-death-macbook-pro.html</guid>
		<description><![CDATA[I have been lucky enough to get a hold of one of the new MacBook Pro&#8217;s that have just been released by Apple (Feb 2008).  I&#8217;ve only just installed Boot Camp/Windows XP on it as I&#8217;ve been busy using VMWare Fusion &#8211; however now it&#8217;s time to play some games, and VMWare is no good [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.evandavey.com/wp-content/uploads/2008/03/bootcamp_assistant20071016.gif" alt="Bootcamp" align="right" />I have been lucky enough to get a hold of one of the new MacBook Pro&#8217;s that have just been released by Apple (Feb 2008).  I&#8217;ve only just installed <a href="http://www.apple.com/macosx/features/bootcamp.html" target="_blank">Boot Camp</a>/Windows XP on it as I&#8217;ve been busy using <a href="http://www.vmware.com/products/fusion/" target="_blank">VMWare Fusion</a> &#8211; however now it&#8217;s time to play some games, and VMWare is no good for this.</p>
<p>Everything went fine with the Boot Camp installation &#8211; until I started installing the Apple drivers (after Windows XP had completed installation).  After successful installation of the Bluetooth and Ethernet drivers, the Wireless Drivers started installation -  and suddenly I recieved a Blue Screen of Death.</p>
<p>I attempted to install the drivers multiple times, however the Blue Screen of Death appeared each time at the same point in the Apple Driver installation process.</p>
<p>After much Googling I discovered <a href="http://discussions.apple.com/thread.jspa?messageID=6786729" target="_blank">others</a> who were having the same problem and realised I was using my <em>Mac Mini Leopard CD</em> instead of my new <em>MacBook Pro CD</em>.  It turns out that the new MacBook Pro&#8217;s have different driver versions for windows, and attempting to install the old drivers causes a Blue Screen of Death in Windows XP!</p>
<p><strong>Solution</strong>: Use the <em>correct </em>MacBook Pro CD for installation of the Windows Drivers! Idiot!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.evandavey.com/2008/03/boot-camp-driver-installation-blue-screen-of-death-macbook-pro.html/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>

