<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.10" -->
<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/"
	>

<channel>
	<title>DuaneFields.com</title>
	<link>http://www.duanefields.com</link>
	<description>DuaneFields.com</description>
	<pubDate>Mon, 27 Jul 2009 18:07:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.10</generator>
	<language>en</language>
			<item>
		<title>How to make the Flip Mino HD import into iMovie 09</title>
		<link>http://www.duanefields.com/2009/03/01/how-to-make-the-flip-mino-hd-import-into-imovie-09/</link>
		<comments>http://www.duanefields.com/2009/03/01/how-to-make-the-flip-mino-hd-import-into-imovie-09/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 15:13:27 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2009/03/01/how-to-make-the-flip-mino-hd-import-into-imovie-09/</guid>
		<description><![CDATA[	I just picked up a new Flip Mino HD and it&#8217;s pretty nice, but I was having problems getting it to import properly into iMovie 09. Likewise iMovie 09 was failing to import a number of other video files for no apparently good reason. Others have reported that import &#8220;just works&#8221;, but not for me.

	I [...]]]></description>
			<content:encoded><![CDATA[	<p>I just picked up a new <a href="http://www.amazon.com/gp/product/B001HSOFI2?ie=UTF8&#038;tag=bbqreport-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B001HSOFI2">Flip Mino HD</a> and it&#8217;s pretty nice, but I was having problems getting it to import properly into iMovie 09. Likewise iMovie 09 was failing to import a number of other video files for no apparently good reason. Others have reported that import &#8220;just works&#8221;, but not for me.</p>

	<p>I finally narrowed it down to bad QuickTime plugins. I had probably two dozen QuickTime plugins in /Library/QuickTime that I had accumulated over the years. Many of them I probably don&#8217;t need any longer thanks to <a href="http://www.perian.org/">Perian</a>. I compared these to a stock Leopard install and removed everything else.</p>

	<p>Once I removed these from the folder, everything worked fine. I can even import through the &#8220;import from camera&#8221; interface and not just via file import, as some have reported. The following files are in my /Library/QuickTime folder now, which include the stock Leopard plugins, as well as Flip4Mac and Perian:</p>

<ul>
<li>AC3MovieImport.component</li>
<li>AppleIntermediateCodec.component</li>
<li>AppleMPEG2Code.component</li>
<li>Flip4Mac <span class="caps">WMV</span> Advanced.component</li>
<li>Flip4Mac <span class="caps">WMV</span> Export.component</li>
<li>Flip4Mac <span class="caps">WMV</span> Import.component</li>
<li>Perian.component</li>
</ul>

	<p>I kept all of the other ones around, in case it turns out that I need them, but so far so good.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2009/03/01/how-to-make-the-flip-mino-hd-import-into-imovie-09/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to patch Xcode to work with Subversion 1.5</title>
		<link>http://www.duanefields.com/2009/02/11/how-to-patch-xcode-to-work-with-subversion-15/</link>
		<comments>http://www.duanefields.com/2009/02/11/how-to-patch-xcode-to-work-with-subversion-15/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 20:10:54 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2009/02/11/how-to-patch-xcode-to-work-with-subversion-15/</guid>
		<description><![CDATA[	The latest version (3.1.2 as of this writing) of Xcode is linked to Subversion 1.4. Unfortunately, I tend to use the SVN integration as well as the command line, and would like to use subversion 1.5 &#8211; but the working directory formats are not compatible. After looking for solutions everywhere, I found a couple of [...]]]></description>
			<content:encoded><![CDATA[	<p>The latest version (3.1.2 as of this writing) of Xcode is linked to Subversion 1.4. Unfortunately, I tend to use the <span class="caps">SVN</span> integration as well as the command line, and would like to use subversion 1.5 &#8211; but the working directory formats are not compatible. After looking for solutions everywhere, I found a couple of possibilities, some that didn&#8217;t work, and some that almost worked.</p>

	<p>One popular solution is to just copy offending shared libraries from svn 1.5 over those in /usr/lib. There are two problems with this. The first is that doing so you are messing with the default libraries and something may not be happy. In fact, apache isn&#8217;t happy. This solution appeared to work fine until I restarted apache and it complained about missing libraries. A better solution is as follows.</p>

	<p>I originally found the basis of this solution on this <a href="http://www.cocoabuilder.com/archive/message/xcode/2008/9/25/24866">thread</a>, thanks to a follow up by Jean-Daniel Dupas and subsequent changes by Philippe Casgrain. The idea is to install svn 1.5 into /opt/local, leaving the stock svn and libraries untouched, and then patch the Xcode subversion plugin to use these new dynamic libraries. This is nice and clean, and leaves everything else in its original condition. It didn&#8217;t work entirely for me on the latest Xcode, so I updated the script accordingly. Here are the steps I followed:</p>

<h3>Step 1: Install Subversion 1.5 binaries</h3>

	<p>Download <a href="http://www.open.collab.net/downloads/apple/download.html">subversion binaries</a> and install them into /opt/local. Modify your search path to run subversion from this directory, or create appropriate aliases. This won&#8217;t effect Xcode directly yet, but gives you both subversion 1.4 and subversion 1.5 installed.</p>

<h3> Step 2: Run the patch script</h3>

	<p>Quit Xcode. Download this <a href="http://www.duanefields.com/wp-content/uploads/2009/02/svnxcodepatch.zip"><span class="caps">SVN</span> Xcode Patch</a> o your computer, chmod 755 to make it executable, and run as super user. The first argument is the full path to the Xcode subversion plugin and the second is the root directory where svn libraries are installed. For example:</p>

	<p><code>
sudo UpdateXCodePluginToSVN1-5.sh /Developer/Library/Xcode/Plug-ins/XcodeSubversionPlugin.xcplugin/Contents/MacOS/XcodeSubversionPlugin /opt/local/
</code></p>

	<p>The script makes a backup of the plugin first, feel free to make your own if you don&#8217;t trust it. It then uses install_name_tool to patch the executable to change its dynamic library paths from /usr/lib to /opt/lib. You&#8217;re done! </p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2009/02/11/how-to-patch-xcode-to-work-with-subversion-15/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iTunes 8 on Windows XP x64</title>
		<link>http://www.duanefields.com/2008/09/16/itunes-8-on-windows-xp-x64-pctechinvisibillnet/</link>
		<comments>http://www.duanefields.com/2008/09/16/itunes-8-on-windows-xp-x64-pctechinvisibillnet/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:26:30 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2008/09/16/itunes-8-on-windows-xp-x64-pctechinvisibillnet/</guid>
		<description><![CDATA[	Finally found someone describing a way to install iTunes on XP64

	&#8220;I went back to the iTunes download page in IE x64 (spoofing Vista’s UA) and started monitoring with Wireshark. I started the download, and Wireshark was able to see the URL that was being requested. I finally had the direct URL!

	http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes8/061-5526.20080911.gtre4/iTunes864Setup.exe

	Once the file was downloaded, [...]]]></description>
			<content:encoded><![CDATA[	<p>Finally found someone describing a way to install iTunes on XP64</p>

	<p><blockquote>&#8220;I went back to the iTunes download page in IE x64 (spoofing Vista’s UA) and started monitoring with Wireshark. I started the download, and Wireshark was able to see the <span class="caps">URL</span> that was being requested. I finally had the direct URL!</p>

	<p>http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes8/061-5526.20080911.gtre4/iTunes864Setup.exe</p>

	<p>Once the file was downloaded, I was able to proceed with the iTunes 7.6 guide. I extracted the <span class="caps">MSI</span> files out of iTunes864Setup.exe using 7-Zip. I installed the AppleMobileDeviceSupport64.msi file. I already had the QuickTime files from QT Lite. I opened up iTunes64.msi in Orca and changed the version from 600 to 501, then installed it. I installed the <span class="caps">GEAR</span> burning drivers. I skipped the last part about manually choosing the iPhone drivers, as I don’t have an iPhone and just want iTunes 8 for the HD features.</p>

	<p>After rebooting to complete the <span class="caps">GEAR</span> driver installation and copying GEARAspiWDM.sys as the guide suggests, I no longer get the warning about CD burning upon starting iTunes. I was able to open up iTunes and watch the free HD episodes they’re currently offering.&#8221;<br />
</blockquote></p>

	<p>Via <a href="http://pctech.invisibill.net/?page_id=36">iTunes 8 on Windows XP x64 | PCTech.invisibill.net</a>:</p>

]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2008/09/16/itunes-8-on-windows-xp-x64-pctechinvisibillnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Objective-C static libraries and categories</title>
		<link>http://www.duanefields.com/2008/08/25/objective-c-static-libraries-and-categories/</link>
		<comments>http://www.duanefields.com/2008/08/25/objective-c-static-libraries-and-categories/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 17:56:41 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<category>Software Development</category>

		<guid isPermaLink="false">http://www.duanefields.com/2008/08/25/objective-c-static-libraries-and-categories/</guid>
		<description><![CDATA[	If you are building iPhone or other Mac apps with the iPhone using static libraries, reading
Technical Q&#38;A QA1490 will help you. I was getting a problem running with FMDB because it uses categories to extend the functionality of one of its classes and failing at runtime with a selector problem.


To resolve this issue, the static [...]]]></description>
			<content:encoded><![CDATA[	<p>If you are building iPhone or other Mac apps with the iPhone using static libraries, reading<br />
<a href="http://developer.apple.com/qa/qa2006/qa1490.html">Technical Q&amp;A QA1490</a> will help you. I was getting a problem running with <span class="caps">FMDB</span> because it uses categories to extend the functionality of one of its classes and failing at runtime with a selector problem.</p>

<blockquote>
To resolve this issue, the static library should pass the -ObjC option to the linker. This flag causes the linker to load every object file in the library that defines an Objective-C class or category. While this option will typically result in a larger executable (due to additional object code loaded into the application), it will allow the successful creation of effective Objective-C static libraries that contain categories on existing classes.
</blockquote>

	<p>In my case I had to put these flags on the primary application target (the one using the library) rather than the library itself, which strikes me as odd.</p>

	<p>Update: You also have to add -all_load in some cases</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2008/08/25/objective-c-static-libraries-and-categories/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Access your Mac drive under virtual Windows</title>
		<link>http://www.duanefields.com/2006/05/24/access-your-mac-drive-under-virtual-windows/</link>
		<comments>http://www.duanefields.com/2006/05/24/access-your-mac-drive-under-virtual-windows/#comments</comments>
		<pubDate>Thu, 25 May 2006 04:17:11 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/05/24/access-your-mac-drive-under-virtual-windows/</guid>
		<description><![CDATA[	If you have been using the Parallels Desktop virtualization software to run Windows XP on your Intel Mac you may have noticed that their hacky &#8220;PSF Network&#8221; solution to accessing your Mac drive under Windows blows. Don&#8217;t get me wrong &#8211; I&#8217;m very impresses with the rest of the package, and you can&#8217;t beat the [...]]]></description>
			<content:encoded><![CDATA[	<p>If you have been using the <a href="http://www.parallels.com/en/products/desktop/">Parallels Desktop</a> virtualization software to run Windows XP on your Intel Mac you may have noticed that their hacky &#8220;<span class="caps">PSF</span> Network&#8221; solution to accessing your Mac drive under Windows blows. Don&#8217;t get me wrong &#8211; I&#8217;m very impresses with the rest of the package, and you can&#8217;t beat the price. But it just flat at doesn&#8217;t work.</p>

	<p>Turns out that&#8217;s ok, cause there is an easy work around. Just use the Mac&#8217;s built in support for Windows file sharing (via samba) to access your drive. Under Mac <span class="caps">OSX</span> just enable &#8220;Windows File Sharing&#8221; from your Sharing preferences pane. Then, under Windows I mount my home directory by accessing &#92;iMac\duane, enable reconnect at login, and ta-dah.</p>

	<p>Yes it seems a little odd to share files between two operating systems running simultaneously on the same computer, but hey &#8211; it works great.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/05/24/access-your-mac-drive-under-virtual-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Selecting an Apple Boot Camp disk format</title>
		<link>http://www.duanefields.com/2006/05/15/selecting-an-apple-boot-camp-disk-format/</link>
		<comments>http://www.duanefields.com/2006/05/15/selecting-an-apple-boot-camp-disk-format/#comments</comments>
		<pubDate>Mon, 15 May 2006 22:45:50 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/05/15/selecting-an-apple-boot-camp-disk-format/</guid>
		<description><![CDATA[	I recently installed Boot Camp on my new Intel iMac, and it works fabulously. The big dilemma that I (and others it seem) have is how to best allocate the drive space between the Mac and Windows partitions. So many variables to deal with. I want to have enough disk space in Windows to get [...]]]></description>
			<content:encoded><![CDATA[	<p>I recently installed Boot Camp on my new Intel iMac, and it works fabulously. The big dilemma that I (and others it seem) have is how to best allocate the drive space between the Mac and Windows partitions. So many variables to deal with. I want to have enough disk space in Windows to get my work done, but I&#8217;m also stingy and don&#8217;t want to give away too much of my Mac drive&#8217;s space since it is my primary operating system. In this post I&#8217;ll try to explain what I learned and what I came up with.</p>

	<p><a id="more-105"></a></p>

<h2>How much drive space does Boot Camp need?</h2>

	<p>A basic installation of Windows XP Pro takes about 5 gigs, so that&#8217;s my baseline. Add in Visual Studio, Office, Firefox, and so on gets it up around 10-15 gigs. For my needs, this is fine but I still want some slack space available for smaller apps, documents, and media files. Ripping DVDs or any other disk intensive activity means you might need substantially more. Then, there&#8217;s the filesystem type issue, <span class="caps">NTFS</span> or FAT32?</p>

<h2>Should I use <span class="caps">NFS</span> or FAT32?</h2>

	<p>Windows has two different filesystem choices. FAT32 (the &#8220;old way&#8221;) and <span class="caps">NTFS</span> (the &#8220;new way&#8221;). In case you aren&#8217;t aware of the tradeoffs from choosing one or the other, here they are briefly:</p>

	<p><ul><br />
<li><strong><span class="caps">NTFS</span> supports larger partition sizes</strong>. Windows XP provides native support for <span class="caps">NTFS</span> volumes of pretty much any size, while a FAT32 volume is supported only for sizes up to 32 GB.</li></p>

	<p><li><strong><span class="caps">NTFS</span> supports larger file sizes</strong>. Under Windows XP <span class="caps">NTFS</span> supports a maximum file size of up to the disk size, while FAT32 supports a maximum file size of only 4 GB.</li></p>

	<p><li><strong><span class="caps">NTFS</span> is faster and safer.</strong>. New file system features, journaling, boot time improvements, and other performance improvements in Windows XP have been implemented only for <span class="caps">NTFS</span>.</li></p>

	<p><li><strong>Some features require NTFS</strong>. Some features like Active Directory, symbolic links, and NT Domain membership require <span class="caps">NTFS</span>.</li></p>

	<p><li><strong>MacOS can not write to <span class="caps">NFS</span> volumes</strong>. It can however, read them just fine. FAT32 volumes however have read/write access.</li><br />
</ul></p>

	<p><h2>Converting from FAT32 to NTFS</h2><br />
One bit of good news is that if you initially configured a drive as FAT32, and then decide that you want or need to convert the drive to <span class="caps">NTFS</span> you can easily do so without losing your data. Their is a built in conversion function in Windows that will do this for you. From your command prompt, issue this command:</p>

	<p><code>
convert C: /fs:ntfs 
</code></p>

	<p>More details are available <a href="http://www.microsoft.com/technet/prodtechnol/winxppro/maintain/convertfat.mspx">from Microsoft</a>. Note, there is no easy going back from this step! (See below)</p>

<h2>Converting from <span class="caps">NTFS</span> to FAT32</h2>

	<p>What if you want to go the other way, converting your nice fast, modern <span class="caps">NTFS</span> filesystem to FAT32? A little harder, but still possible (as long as your partition is smaller than 32 GB). The strategy here is to create a backup image of the FAT32 filesystem from the Mac side, then recreate the partition as <span class="caps">NTFS</span> and restore the image to it. </p>

	<p>Use Disk Utility to make an image (dmg) of the Windows drive from MacOS X and safe it on your Mac drive. Then, boot from the Windows XP install disk and reinstall/reformat, selecting FAT32 this time. After the format is complete and it starts to install Windows turn the computer off to abort the process. Now boot back into Mac OS X. What you have done is create a basically blank FAT32 disk. Now you can use Disk Utility to restore the <span class="caps">NTFS</span> image you created earlier, restoring the files to the now FAT32 filesystem.</p>

	<p>Hey, I didn&#8217;t say it would be fun, just possible.</p>

<h2>Accessing your Mac drive from within Windows</h2>

	<p>By default your Mac drive is invisible to Windows. Which is too bad when all your documents and music are on your Mac drive. Plus, in my case it is highly desirable to allow both operating systems to share all of my slack space for music, video, and so forth.</p>

	<p>Luckily, all you need is the reasonably priced <a href="http://www.amazon.com/exec/obidos/redirect?tag=deepmagic%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00061M0QK%2526tag=deepmagic%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00061M0QK%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">MacDrive 6 for Windows</a>. This software package provides transparent, integrated support for Mac drives (HFS/HFS+).</p>

	<p>You can download a <a href="http://www.mediafour.com/products/macdrive6/freetrial.asp">free trial edition</a> from their website. It lasts a measly 5 days, but I guess it doesn&#8217;t take long to prove it works. After installing and rebooting your Mac partition appears as a new drive with full read/write access. You don&#8217;t use special tools, just the Windows explorer &#8211; beauty!</p>

<h2>What I ended up with</h2>

	<p>Being that much of the <span class="caps">ASP</span>.<span class="caps">NET</span> code I&#8217;m working on relies on <span class="caps">NTFS</span>, I decided to stick with that. In the modern hardware era, FAT32 just isn&#8217;t done and there&#8217;s no telling what might explode on me. I create an image size of 30 GB, which means I could use the painful <span class="caps">NTFS</span> to FAT32 conversion steps above if I change my mind. This is probably more space than I need, but I can always image and restore later if I have to.</p>

	<p>I&#8217;m also installing a copy of MacDrive. That will not only let me access my Mac files, but will let me easily communicate between the two worlds. For example, I can rip a <span class="caps">DVD</span> under Windows and burn it on the Mac if I need. This turns out to work pretty well.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/05/15/selecting-an-apple-boot-camp-disk-format/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sharing a Printer between Mac and Windows with Bonjour</title>
		<link>http://www.duanefields.com/2006/05/15/sharing-a-printer-between-mac-and-windows-with-bonjour/</link>
		<comments>http://www.duanefields.com/2006/05/15/sharing-a-printer-between-mac-and-windows-with-bonjour/#comments</comments>
		<pubDate>Mon, 15 May 2006 17:33:17 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/05/15/sharing-a-printer-between-mac-and-windows-with-bonjour/</guid>
		<description><![CDATA[	While in theory, if I have enabled printer sharing on my Mac, the printer should be available to Windows machines on my local network. In practice however, I&#8217;ve never been able to get this to work. I can get Windows to think its submitting jobs, but they never make it into the queue. I&#8217;m not [...]]]></description>
			<content:encoded><![CDATA[	<p>While in theory, if I have enabled printer sharing on my Mac, the printer should be available to Windows machines on my local network. In practice however, I&#8217;ve never been able to get this to work. I can get Windows to think its submitting jobs, but they never make it into the queue. I&#8217;m not sure if the problem is on the Mac side or the Windows side, but I&#8217;m putting my money on Windows being at the heart of the problem.</p>

	<p>In any case, I finally found an ideal solution with Apple&#8217;s <a href="http://www.apple.com/macosx/features/bonjour/">Bonjour</a> technology (formerly Rendevous). Bonjour lets you create an instant network of computers and devices just by getting them connected to each other. The computers and devices take over from there, automatically broadcasting and discovering what services each is offering for the use of others. This is the same magic that makes iTunes auto-discover other iTunes clients on the network. With Bonjour services installed on your Windows machine, you can magically discover your shared Apple printers on the network. It&#8217;s a brain dead setup/install process:</p>

<ol>
<li>From your Mac&#8217;s Sharing preferences pane, make sure that Printer Sharing is enabled.</li>
<li>On your Windows machine, download and install <a href="http://a1408.g.akamai.net/7/1408/9955/20060417/akamai.info.apple.com/Bonjour/061-2389.20060417.bnjr3w/BonjourSetup.exe">Bonjour for Windows</a></li>
<li>After installing, click on the &#8220;Printer Setup Wizard&#8221; shortcut installed by Bonjour on the Windows desktop</li>
<li>Select your printer from the list of network devices found by Bonjour</li>
<li>Select &#8220;Generic PostScript Printer&#8221; (the default) as the printer type</li>
</ol>

	<p>I&#8217;m not too clear on why you need to use generic postscript driver rather than the native driver, but you do. I tried using the native driver for my Canon i960 but it failed to print. I&#8217;ve seen several other folks reporting this as well. It&#8217;s even selected by the Wizard by default. In any case, it works well with full color support and so forth.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/05/15/sharing-a-printer-between-mac-and-windows-with-bonjour/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MacOS X Sleep Problems with USB Hubs</title>
		<link>http://www.duanefields.com/2006/05/11/macos-x-sleep-problems-with-usb-hubs/</link>
		<comments>http://www.duanefields.com/2006/05/11/macos-x-sleep-problems-with-usb-hubs/#comments</comments>
		<pubDate>Thu, 11 May 2006 22:53:37 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/05/11/macos-x-sleep-problems-with-usb-hubs/</guid>
		<description><![CDATA[	Why can&#8217;t I find a USB hub that will let my computer sleep properly? I recently bought a USB 2.0 hub when I upgraded to the Intel iMac. The hub works great, but it keeps the computer from sleeping while idle. I had the same problem on my G4. It took me about a half [...]]]></description>
			<content:encoded><![CDATA[	<p>Why can&#8217;t I find a <span class="caps">USB</span> hub that will let my computer sleep properly? I recently bought a <span class="caps">USB</span> 2.0 hub when I upgraded to the Intel iMac. The hub works great, but it keeps the computer from sleeping while idle. I had the same problem on my G4. It took me about a half dozen hubs (<span class="caps">USB</span> 1.1) to find one that worked properly.</p>

	<p>That old hub works fine on the iMac,but it is of course <span class="caps">USB</span> 1.1. That&#8217;d be fine except I have an external drive connected which is pretty much worthless at <span class="caps">USB</span> 1.1 speeds. Swapping in the new hub is the problem. D-Link <i>claims</i> that it fully supports the Mac, but I guess their flexible on this point. To me, its a show stopper.</p>

	<p>I do <span class="caps">NOTWANT</span> to leave my Mac on all the time. I <span class="caps">WANT</span> it to behave! Anyone have any brand/model of <span class="caps">USB</span> hub that they have had success with? The <span class="caps">D-LINK</span> DUB-H7 hub I&#8217;m using is powered, and seems to be pretty high quality. It&#8217;s got 6 of the 7 ports used (scanner, printer, <span class="caps">UPS</span>, keyboard/mouse, card reader, drive), but nothing else magical.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/05/11/macos-x-sleep-problems-with-usb-hubs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using ACLs to Share iPhoto and iTunes Libraries</title>
		<link>http://www.duanefields.com/2006/05/03/using-acls-to-share-iphoto-and-itunes-libraries/</link>
		<comments>http://www.duanefields.com/2006/05/03/using-acls-to-share-iphoto-and-itunes-libraries/#comments</comments>
		<pubDate>Thu, 04 May 2006 03:36:25 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/05/03/using-acls-to-share-iphoto-and-itunes-libraries/</guid>
		<description><![CDATA[	In this article over at Trent Davie&#8217;s ad Hominem blog he discusses an elegant solution to the whole notion of sharing an iPhoto library amongst several users on the same Mac.

	My wife and I have this problem. We certainly don&#8217;t have our own sets of photos, but we do manage our own accounts. The old [...]]]></description>
			<content:encoded><![CDATA[	<p>In <a href="http://ad.hominem.org/log/2005/07/acl.php">this article</a> over at Trent Davie&#8217;s ad Hominem blog he discusses an elegant solution to the whole notion of sharing an iPhoto library amongst several users on the same Mac.</p>

	<p>My wife and I have this problem. We certainly don&#8217;t have our own sets of photos, but we do manage our own accounts. The old way was to wrap iPhoto in a bourne shell script that set the umask before each execution, maintaining group permissions. This works fine, but has the significant downside of having to be rebuilt every time a new iPhoto update comes down.</p>

	<p>I&#8217;ll be trying out this solution to see if it works better for us. It also mentions in the comment trail that a similar approach could solve the problem for iTunes. What I really want though is for each account to share the same music library (the songs themselves), but maintain different ratings and playlists for each account. I&#8217;ve seen nothing that will do that for me yet however.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/05/03/using-acls-to-share-iphoto-and-itunes-libraries/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Target Mode: Turn your Mac into a FireWire Drive</title>
		<link>http://www.duanefields.com/2006/04/26/target-mode-turn-your-mac-into-a-firewire-drive/</link>
		<comments>http://www.duanefields.com/2006/04/26/target-mode-turn-your-mac-into-a-firewire-drive/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 04:13:59 +0000</pubDate>
		<dc:creator>Duane Fields</dc:creator>
		
		<category>Mac</category>

		<guid isPermaLink="false">http://www.duanefields.com/2006/04/26/target-mode-turn-your-mac-into-a-firewire-drive/</guid>
		<description><![CDATA[	This is one of those cool Mac tricks that you tend to not hear about until you actually need it, and then its a lifesaver. I learned about &#8220;target mode&#8221;, a feature of all but the oldest Macs that turns your computer into the world&#8217;s most expensive external FireWire drive.

	I needed this the other day [...]]]></description>
			<content:encoded><![CDATA[	<p>This is one of those cool Mac tricks that you tend to not hear about until you actually need it, and then its a lifesaver. I learned about &#8220;target mode&#8221;, a feature of all but the oldest Macs that turns your computer into the world&#8217;s most expensive external FireWire drive.</p>

	<p>I needed this the other day when moving files between my old PowerMac and new Intel iMac. FireWire is 4X faster than ethernet, but you lose a bit if you have to copy from computer A to an external drive, then connect the drive to computer B and copy it back. Enter &#8220;target mode&#8221;. How to use target mode:<br />
<ol><br />
<li>Shutdown the computer that you want to copy to (the target)</li><br />
<li>Connect the source computer to the target computer via FireWire cable</li><br />
<li>While holding down &#8220;t&#8221; on the keyboard (t for target of course) power on the target computer</li><br />
</ol></p>

	<p>After a few moments, the FireWire logo will dance around the screen and you should see the target computer appear on the source computer&#8217;s desktop. It will look like any other external FireWire drive. Drag and drop! When you are done, &#8220;eject&#8221; the target computer, then power it down.</p>

	<p>Elegant, simple, but amazingly useful. How very Apple.</p>]]></content:encoded>
			<wfw:commentRss>http://www.duanefields.com/2006/04/26/target-mode-turn-your-mac-into-a-firewire-drive/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
