<?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>epicblog &#187; OS X</title> <atom:link href="http://www.rickwargo.com/category/os-x/feed/" rel="self" type="application/rss+xml" /><link>http://www.rickwargo.com</link> <description>Acquiring information, one day at a time.</description> <lastBuildDate>Fri, 14 Oct 2011 01:23:12 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Parallels 6 Prompts To Be Activated With Every Start</title><link>http://www.rickwargo.com/2010/12/26/parallels-6-prompts-to-be-activated-with-every-start/</link> <comments>http://www.rickwargo.com/2010/12/26/parallels-6-prompts-to-be-activated-with-every-start/#comments</comments> <pubDate>Mon, 27 Dec 2010 01:20:26 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=510</guid> <description><![CDATA[UPDATE: It appears Parallels changes the group to accessibility and this procedure does NOT work. Parallels 6 had been running great for quite a while but at some point, restarting Parallels would prompt me to re-enter the activation key; the key in the dialog was from the previous version. For whatever reason, it would not [...]]]></description> <content:encoded><![CDATA[<p>UPDATE: It appears Parallels changes the group to accessibility and this procedure does NOT work.</p><p>Parallels 6 had been running great for quite a while but at some point, restarting Parallels would prompt me to re-enter the activation key; the key in the dialog was from the previous version. For whatever reason, it would not stick.</p><p>I realized today that the group permissions on the preferences files for Parallels was different than the others; the files had a group of &#8220;accessibility.&#8221; <span
style="text-decoration: line-through;">To fix it, I changed the group back to what was on most of the other files</span>; your group name most likely will be different.</p><p><code>$ cd /Users/rick/Library/Preferences<br
/> $ ls -l com.parallels.*<br
/> -rw-------  1 rick  accessibility  21059 Dec 26 19:59 com.parallels.Parallels Desktop Statistics.plist<br
/> -rw-------  1 rick  accessibility  23972 Dec 26 19:59 com.parallels.Parallels Desktop.plist<br
/> -rw-------  1 rick  accessibility   5430 Dec 26 19:59 com.parallels.Parallels.plist<br
/> -rw-------  1 rick  accessibility   1642 Dec  7 16:36 com.parallels.desktop.console.plist<br
/> -rw-------  1 rick  rick             905 Feb 11  2009 com.parallels.desktop.plist<br
/> -rw-------  1 rick  rick             505 Feb 11  2009 com.parallels.imagetool.plist<br
/> $ chgrp rick com.parallels.*</code></p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/12/26/parallels-6-prompts-to-be-activated-with-every-start/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Installing MySQL 5.5 on OS X 10.6 (Snow Leopard) and Rails 3</title><link>http://www.rickwargo.com/2010/12/16/installing-mysql-5-5-on-os-x-10-6-snow-leopard-and-rails-3/</link> <comments>http://www.rickwargo.com/2010/12/16/installing-mysql-5-5-on-os-x-10-6-snow-leopard-and-rails-3/#comments</comments> <pubDate>Thu, 16 Dec 2010 21:47:05 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=503</guid> <description><![CDATA[I was successfully able to install MySQL 5.5 on OS X 10.6 according to the following steps. Download MySQL Community Server 5.5.8 for Mac OS X. I chose to download Mac OS X ver. 10.6 (x86, 64-bit), DMG Archive. The DMG archive is nice as it has a startup package that installs a MySQL control [...]]]></description> <content:encoded><![CDATA[<p>I was successfully able to install MySQL 5.5 on OS X 10.6 according to the following steps.</p><p><a
href="http://dev.mysql.com/downloads/mysql/#downloads" target="_blank">Download MySQL Community Server 5.5.8</a> for Mac OS X. I chose to download <a
href="http://dev.mysql.com/downloads/mirror.php?id=399420" target="_blank">Mac OS X ver. 10.6 (x86, 64-bit), DMG Archive</a>. The DMG archive is nice as it has a startup package that installs a MySQL control panel (although it dosn&#8217;t work from the start without tweaking).</p><p>Open the DMG archive and execute the mysql-5.5.8-osx10.6-x86_64.pkg. I had no issues with installation although the ReadMe.txt file suggests that problems may occur.</p><p>After successful installation, execute the MySQLStartupItem.pkg. This will install the MySQL Startup startup items. This should complete successfully.</p><p>Next, install the MySQL preferences pane by double-clicking the MySQL.prefPane item in the mounted drive. This will install the MySQL preferences item, although MySQL cannot yet be started through it. First, the mysql.server file must be edited by hand to specify the location of the base directory.</p><p>At a terminal, cd to <strong>/usr/local/mysql/support-files</strong> and edit <strong>mysql.server</strong> (with root privileges, using sudo). Around line 46 locate the lines that read:</p><p><code>basedir=<br
/> datadir=</code></p><p>and change them to read</p><p><code>basedir=/usr/local/mysql<br
/> datadir=/usr/local/mysql/data</code></p><p>Save the file. MySQL can now be started from the preferences pane. Without it, you will see a message in the Console that reads:</p><p><code>mysql.server: line 256: my_print_defaults: command not found</code></p><p>To enable rails 3 to use mysql, install the <strong>mysql2</strong> gem. Next, you&#8217;ll need to set the <strong>DYLD_LIBRARY_PATH</strong> to include the MySQL library directory. To do this, edit your ~/.bash_profile and include the following:</p><p><code>export DYLD_LIBRARY_PATH=/usr/local/mysql/lib:$DYLD_LIBRARY_PATH</code></p><p>The rails server will now successfully start. Without the inclusion of the directory in the DYLD_LIBRARY_PATH, a message about not finding the library would appear and the server would abort.</p><p>The error message, from the mysql2 gem, states (in part):</p><p><code>Library not loaded: libmysqlclient.16.dylib (LoadError)</code></p><p>Upon reboot, MySQL will fail to start with a dialog stating:</p><p><code>Insecure Startup Item disabled.<br
/> “/Library/StartupItems/MySQLCOM” has not been started because it does not have the proper security settings.</code></p><p>The group permissions need to be changed to wheel on the MySQL directory by executing the following command in the terminal:</p><p><code>sudo chown -R root:wheel /Library/StartupItems/MySQLCOM</code></p><p>This will prevents the startup error dialog. Finally, ensure the <em>Automatically Start MySQL Server on Startup</em> is checked in the MySQL preferences window.</p><p>Good luck!</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/12/16/installing-mysql-5-5-on-os-x-10-6-snow-leopard-and-rails-3/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>This copy of iTunes has expired.</title><link>http://www.rickwargo.com/2010/07/08/this-copy-of-itunes-has-expired/</link> <comments>http://www.rickwargo.com/2010/07/08/this-copy-of-itunes-has-expired/#comments</comments> <pubDate>Thu, 08 Jul 2010 11:21:07 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=393</guid> <description><![CDATA[Without prior indication, when starting iTunes on OSX 10.6 .4 I suddenly received the error dialog stating &#8220;This copy of iTunes has expired.&#8221; And Software Update states that all of the software is up to date. The simple resolution is that a beta version of iTunes 9.2 that I installed did expire (so much for [...]]]></description> <content:encoded><![CDATA[<p>Without prior indication, when starting iTunes on OSX 10.6 .4 I suddenly received the error dialog stating &#8220;This copy of iTunes has expired.&#8221; And Software Update states that all of the software is up to date.</p><p>The simple resolution is that a beta version of iTunes 9.2 that I installed did expire (so much for reading the fine print) and a re-installation of iTunes is required. iTunes can be <a
title="iTunes download" href="http://www.apple.com/itunes/download/" target="_blank">downloaded on the apple site</a> as a dmg file. When opened and the volume is mounted, run the iTunes.mpkg installer to restore the computer to a happy equilibrium. Fortunately, the beta version of iTunes does not need to be removed prior to installation.</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/07/08/this-copy-of-itunes-has-expired/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Adobe Photoshop CS2 Issues After Full Restore to New Disk</title><link>http://www.rickwargo.com/2010/04/19/adobe-photoshop-cs2-issues-after-full-restore-to-new-disk/</link> <comments>http://www.rickwargo.com/2010/04/19/adobe-photoshop-cs2-issues-after-full-restore-to-new-disk/#comments</comments> <pubDate>Tue, 20 Apr 2010 01:30:21 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=316</guid> <description><![CDATA[The disk on my MacBook Pro was going bad &#8211; S.M.A.R.T. reported imminent failure. I had Apple swap it out for a new one and I restored the new disk with my backup from Time Machine. Unfortunately, with the archaic way Adobe licenses its products, it was the only software I had purchased that did [...]]]></description> <content:encoded><![CDATA[<p>The disk on my MacBook Pro was going bad &#8211; S.M.A.R.T. reported imminent failure. I had Apple swap it out for a new one and I restored the new disk with my backup from Time Machine. Unfortunately, with the archaic way Adobe licenses its products, it was the only software I had purchased that did not work after the restore. After two hours online with Adobe support, I was not able to get much further.</p><p>After much trial and error, I determined the only way to get the software activated was to fully remove Photoshop CS2 and reinstall. I followed <a
href="http://kb2.adobe.com/cps/331/331404.html" target="_blank">this technote from Adobe</a> to manually uninstall Photoshop CS2, but it was incomplete. I had to remove a license file and only then could it activate successfully. In addition to the files Adobe asks you to remove, the real magic file that needs removal is /Library/Preferences/Adobe Systems/Product licenses_120/B2B86000.dat. After removing that, along with all the others, I was able to get CS2 installed on my machine and successfully activated.</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/04/19/adobe-photoshop-cs2-issues-after-full-restore-to-new-disk/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>No Sound when Using Remote Desktop Connection on the Mac and Connected to a Windows 7 or Server 2008 R2 Machine</title><link>http://www.rickwargo.com/2010/04/09/no-sound-when-using-remote-desktop-connection-on-the-mac-and-connected-to-a-windows-7-or-server-2008-r2-machine/</link> <comments>http://www.rickwargo.com/2010/04/09/no-sound-when-using-remote-desktop-connection-on-the-mac-and-connected-to-a-windows-7-or-server-2008-r2-machine/#comments</comments> <pubDate>Fri, 09 Apr 2010 15:00:16 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=226</guid> <description><![CDATA[It appears as though the sound is configured correctly on the host machines, but no sound comes from the client when a sound is made. This works when using a Windows Remote Desktop Client but not on the Mac.  It turns out that the audio redirection feature of RDC does not work; you will need [...]]]></description> <content:encoded><![CDATA[<p>It appears as though the sound is configured correctly on the host machines, but no sound comes from the client when a sound is made. This works when using a Windows Remote Desktop Client but not on the Mac.  It turns out that the audio redirection feature of RDC does not work; you will need a hotfix to resolve the issue. After installing the hotfix and rebooting the server computer, sound now plays on the client!</p><p>To obtain the hotfix, navigate to <a
href="http://support.microsoft.com/kb/973062" target="_blank">http://support.microsoft.com/kb/973062</a> and click on <a
id="kb_hotfix_link" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=973062&amp;kbln=en-us" target="_blank">View  and request hotfix downloads.</a> Click through the license agreement and select the hotfix that corresponds to your operating system. Fill out your email address and submit. Soon you will receive a zipped install executable that will install the fix for this issue. Upon rebooting and reconnecting to the host machine, you will hear sound!<a
id="kb_hotfix_link" href="http://support.microsoft.com/hotfix/KBHotfix.aspx?kbnum=973062&amp;kbln=en-us"><br
/> </a></p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/04/09/no-sound-when-using-remote-desktop-connection-on-the-mac-and-connected-to-a-windows-7-or-server-2008-r2-machine/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Problems Due to a new MacBook Pro Logic Board</title><link>http://www.rickwargo.com/2010/03/31/problems-due-to-a-new-macbook-pro-logicboard/</link> <comments>http://www.rickwargo.com/2010/03/31/problems-due-to-a-new-macbook-pro-logicboard/#comments</comments> <pubDate>Wed, 31 Mar 2010 14:12:20 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[iPhone]]></category> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=219</guid> <description><![CDATA[My computer was failing frequently so I had it serviced through AppleCare (actually the &#8220;Depot&#8221; for much less than Apple) and they replaced the logic board. Turns out that iTunes authorizations are tied to the logic board. Without the old motherboard, it is impossible to de-authorize the account for the computer and thus an additional [...]]]></description> <content:encoded><![CDATA[<p>My computer was failing frequently so I had it serviced through AppleCare (actually the &#8220;Depot&#8221; for much less than Apple) and they replaced the logic board. Turns out that iTunes authorizations are tied to the logic board. Without the old motherboard, it is impossible to de-authorize the account for the computer and thus an additional device (the computer with the new logic board) must be authorized (of the five allowed). Of course, I already had five devices authorized so I had to de-authorize all and re-authorize my active devices.</p><p>Moral of the story is if you send your mac in for a logic board replacement, make sure to de-authorize the computer prior to service; this will allow you to authorize the computer upon receipt and not consume one of the five authorizations for the phantom computer.</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/03/31/problems-due-to-a-new-macbook-pro-logicboard/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Compiling Aperture 3 Plug-Ins</title><link>http://www.rickwargo.com/2010/03/12/compiling-aperture-3-plug-ins/</link> <comments>http://www.rickwargo.com/2010/03/12/compiling-aperture-3-plug-ins/#comments</comments> <pubDate>Fri, 12 Mar 2010 17:35:44 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/?p=215</guid> <description><![CDATA[After installing Xcode 3.2.1 and the Aperture 2.1 SDK on Snow Leopard, I was unable to compile a simple (empty) Aperture plug-in due to a missing file, PROAPIAccessing.h. I was finally able to get it to compile by downloading and installing the FxPlug SDK Version 1.2.5 &#8211; this includes PROAPIAccessing.h.]]></description> <content:encoded><![CDATA[<p>After installing Xcode 3.2.1 and the Aperture 2.1 SDK on Snow Leopard, I was unable to compile a simple (empty) Aperture plug-in due to a missing file, PROAPIAccessing.h. I was finally able to get it to compile by downloading and installing the FxPlug  SDK Version 1.2.5 &#8211; this includes PROAPIAccessing.h.</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2010/03/12/compiling-aperture-3-plug-ins/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Parallels on my MacBook Pro, External Monitors, Coherence and Windows BSOD</title><link>http://www.rickwargo.com/2006/12/27/parallels-macbook-external-monitors-coherence-bsod/</link> <comments>http://www.rickwargo.com/2006/12/27/parallels-macbook-external-monitors-coherence-bsod/#comments</comments> <pubDate>Wed, 27 Dec 2006 15:21:50 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/2006/12/27/parallels-on-my-macbook-pro-external-monitors-coherence-and-windows-bsod/</guid> <description><![CDATA[I love Parallels on my MacBook Pro and Coherence is very cool, albeit a bit quirky. Last night after Windows Update ran I was unable to successfully boot my WinXP image. Turns out a lot of others have had similar problems and an excellent solution can be found on the Parallels Forums. The problem entails [...]]]></description> <content:encoded><![CDATA[<p> I love <a
href="http://www.parallels.com/en/products/desktop/" target="_blank" title="Parallels Desktop for Mac">Parallels</a> on my MacBook Pro and Coherence is very cool, albeit a bit quirky. Last night after Windows Update ran I was unable to successfully boot my WinXP image. Turns out a lot of others have had similar problems and an excellent solution can be found on the <a
href="http://forums.parallels.com/thread6270.html" target="_blank" title="Build 3036 - BSOD">Parallels Forums</a>. The problem entails from rebooting Parallels Desktop (<a
href="http://download.parallels.com/beta/Parallels%20Desktop%203036%20Mac%20en.dmg" title="Parallels Desktop for Mac Beta Build 3036">build 3036 Beta</a>) while in coherence mode with an external monitor connected. Upon reboot, I received the dreaded BSOD (Blue Screen Of Death) <br
/>with the error: PAGE_FAULT_IN_NONPAGED_AREA. The solution is to set the screen resolution to what it was prior to the reboot. I was able to do this by:</p><ol><li>Boot in safe mode</li><li>Uninstall Parallel Tools</li><li>Reboot</li><li>Change to the correct resolution (for me this was 1920&#215;1200)</li><li>Re-install Parallel Tools</li></ol><p>Another solution is to change the resolution after booting in VGA mode, although I did not test this; see the <a
href="http://forums.parallels.com/thread6270.html#post33355" target="_blank">Parallels Forum thread</a> for details.</p><p>If there is a problem uninstalling Parallel Tools, remove the registry key<br
/> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce\ParallelTools (or something similar to ParallelTools) and try again. You can also boot in Last Known Good Configration and uninstall.</p><p>Thanks to Mike Mulligan for his solution.</p><p>UPDATE: New <a
title="Parallels Desktop for Mac Update Beta2 (Build 3094)" target="_blank" href="http://www.parallels.com/products/desktop/beta_testing/">Beta 3094</a> now available!</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2006/12/27/parallels-macbook-external-monitors-coherence-bsod/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>AFP Connection Status and various OS X applications locking up</title><link>http://www.rickwargo.com/2006/12/08/afp-connection-status-and-various-os-x-applications-locking-up/</link> <comments>http://www.rickwargo.com/2006/12/08/afp-connection-status-and-various-os-x-applications-locking-up/#comments</comments> <pubDate>Sat, 09 Dec 2006 02:17:49 +0000</pubDate> <dc:creator>Rick Wargo</dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[WILT]]></category> <guid
isPermaLink="false">http://www.rickwargo.com/2006/12/08/afp-connection-status-and-various-os-x-applications-locking-up/</guid> <description><![CDATA[I love my new MacBook Pro, but when I have it detached from my home network I often get application lock ups or long pauses while using it offline. I found a repeatable pattern: when selecting File&#8211;>Open from many (most) applications, often for the first time, the MBP would pause and then display a dialog [...]]]></description> <content:encoded><![CDATA[<p>I love my new MacBook Pro, but when I have it detached from my home network I often get application lock ups or long pauses while using it offline. I found a repeatable pattern: when selecting File&#8211;>Open from many (most) applications, often for the first time, the MBP would pause and then display a dialog stating AFP Connection Status &#8230; Looking up &#8220;&lt;hostname&gt;.&#8221; Clicking on the solo &#8220;Cancel&#8221; button tends to solve the problem, but the delay is hugely annoying.</p><p>It turns out the problem is due to an alias from my offline MBP to a folder on one of my networked Macs; specifically, the Pictures folder is aliased to one computer on my network that holds my pictures so I can access them from all machines. As soon as I remove or rename the alias (to something like Pictures2) I no longer receive the AFP Connection Status window. As soon as I rename it back to Pictures, the AFP Connection Status dialog appears.</p> ]]></content:encoded> <wfw:commentRss>http://www.rickwargo.com/2006/12/08/afp-connection-status-and-various-os-x-applications-locking-up/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
