<?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>Geek Projects - Linux, Apache, MySQL, PHP &#187; Mac OS X</title>
	<atom:link href="http://www.geekprojects.org/category/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geekprojects.org</link>
	<description>A Linux Sysadmin</description>
	<lastBuildDate>Sat, 10 Apr 2010 01:42:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>sha1sum in Mac OS X</title>
		<link>http://www.geekprojects.org/2008/07/sha1sum-in-mac-os-x/</link>
		<comments>http://www.geekprojects.org/2008/07/sha1sum-in-mac-os-x/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 22:44:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/07/09/sha1sum-in-mac-os-x/</guid>
		<description><![CDATA[Mac OS X doesn&#8217;t come with a sha1sum utility. Neither does fink. So what&#8217;s the quickest way to check a sha1sum on a Mac? Use openssl: openssl sha1 filename If you&#8217;d like to roll this sha1sum check into a simple bash script, create the following sha1sum script: #!/bin/bash /usr/bin/openssl sha1 $1 Then make the sha1sum [...]]]></description>
			<content:encoded><![CDATA[<p>Mac OS X doesn&#8217;t come with a <a href="http://en.wikipedia.org/wiki/Sha1sum">sha1sum</a> utility. Neither does <a href="http://www.finkproject.org/">fink</a>. So what&#8217;s the quickest way to check a sha1sum on a Mac? Use <strong>openssl</strong>:</p>
<p><code>openssl sha1 filename</code></p>
<p>If you&#8217;d like to roll this sha1sum check into a simple bash script, create the following <strong>sha1sum</strong> script:</p>
<p><code>#!/bin/bash<br />
/usr/bin/openssl sha1 $1</code></p>
<p>Then make the <strong>sha1sum</strong> script executable, and run it:</p>
<p><code>chmod 755 sha1sum<br />
./sha1sum filename</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/07/sha1sum-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using dd to write disk images to CompactFlash disks and floppies under Mac OS X</title>
		<link>http://www.geekprojects.org/2008/02/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/</link>
		<comments>http://www.geekprojects.org/2008/02/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 15:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/02/23/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/</guid>
		<description><![CDATA[Here&#8217;s how to use the dd utility to write a disk image to media under Mac OS X. I tested this with 10.5.2 with both a USB to CompactFlash adaptor, and a USB Imation USB SuperDisk. Plug the media into your Mac. If you get a message saying that the media cannot be read, click [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to use the <span class="Apple-style-span" style="font-weight: bold">dd</span> utility to write a disk image to media under Mac OS X. I tested this with 10.5.2 with both a USB to CompactFlash adaptor, and a USB Imation USB SuperDisk.</p>
<ol>
<li>Plug the media into your Mac.</li>
<li>If you get a message saying that the media cannot be read, click <span class="Apple-style-span" style="font-weight: bold">Ignore</span>.</li>
<li>Open <span class="Apple-style-span" style="font-weight: bold">Disk Utility</span> (<span class="Apple-style-span" style="font-weight: bold">Applications</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Utilities</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Disk Utility</span>).</li>
<li>On the left-hand column, find that disk that you plan to write to. Select any partitions on that disk that are mounted, and click the <span class="Apple-style-span" style="font-weight: bold">Unmount</span> button (not the <span class="Apple-style-span" style="font-weight: bold">Eject</span> button). Once unmounted, the partitions should grey out.</li>
<li>On the left-hand column, find that disk that you plan to write to, click it, then click on the <span class="Apple-style-span" style="font-weight: bold">Info</span> button.</li>
<li>In the window that pops up, note the <span class="Apple-style-span" style="font-weight: bold">Disk Identifier</span>. It should be something like <span class="Apple-style-span" style="font-weight: bold">disk2</span> or <span class="Apple-style-span" style="font-weight: bold">disk3</span>.</li>
<li>Open up Terminal (<span class="Apple-style-span" style="font-weight: bold">Applications</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Utilities</span> -&gt; <span class="Apple-style-span" style="font-weight: bold">Terminal</span>).</li>
<li>Type in the following command, replacing <span class="Apple-style-span" style="font-weight: bold">diskx</span> with the <span class="Apple-style-span" style="font-weight: bold">Disk Identifier</span> found earlier, and <span class="Apple-style-span" style="font-weight: bold">image.img</span> with the name of the image file that you wish to read from.</li>
</ol>
<p><span class="Apple-style-span" style="font-weight: bold"><span class="Apple-tab-span" style="white-space: pre">		</span>sudo dd if=image.img of=/dev/diskx</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/02/using-dd-to-write-disk-images-to-compactflash-and-floppy-superdisk-under-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VNC in Mac OS X 10.3.9</title>
		<link>http://www.geekprojects.org/2008/01/vnc-in-mac-os-x-1039/</link>
		<comments>http://www.geekprojects.org/2008/01/vnc-in-mac-os-x-1039/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 03:07:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/11/vnc-in-mac-os-x-1039/</guid>
		<description><![CDATA[The latest version of Vine Server (3.0) only officially works with Mac OS X 10.4 or later, but there&#8217;s a way to make it work with Mac OS X 10.3 (Panther). After installing Vine normally, just delete the following directory. It contains the offending OS X 10.5 (Leopard) specific files: /Applications/Vine Server.app/Content/Resources/TigerBundle.bundle That&#8217;s it! You [...]]]></description>
			<content:encoded><![CDATA[<p>The latest version of <a href="http://www.redstonesoftware.com/products/vine/server/vineosx/index.html">Vine Server</a> (3.0) only officially works with Mac OS X 10.4 or later, but there&#8217;s a way to make it work with Mac OS X 10.3 (Panther). After installing <a href="http://www.redstonesoftware.com/downloads/index.html">Vine</a> normally, just delete the following directory. It contains the offending OS X 10.5 (Leopard) specific files:</p>
<p>/Applications/Vine Server.app/Content/Resources/TigerBundle.bundle</p>
<p>That&#8217;s it! You should now be able to launch Vine&#8217;s VNC Server from the Applications Folder, configure it, and remotely control to your Mac OS X 10.3 system over the network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/vnc-in-mac-os-x-1039/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kismac r62 download for Mac OS X 10.3 (Panther)</title>
		<link>http://www.geekprojects.org/2008/01/kismac-r62-download-for-mac-os-x-103/</link>
		<comments>http://www.geekprojects.org/2008/01/kismac-r62-download-for-mac-os-x-103/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 04:58:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/10/kismac-r62-download-for-mac-os-x-103/</guid>
		<description><![CDATA[I was able to download a copy of the elusive Kismac r62 &#8211; the last version of Kismac to run on Mac OS X 10.3 (Panther). Kismac r62 is now running happily on my G4 iBook with OS X 10.3.9. I&#8217;ve mirrored Kismac r62 here in case anyone wants to download it: KisMACR62.zip]]></description>
			<content:encoded><![CDATA[<p>I was able to download a copy of the elusive Kismac r62 &#8211; the last version of Kismac to run on Mac OS X 10.3 (Panther). Kismac r62 is now running happily on my G4 iBook with OS X 10.3.9. I&#8217;ve mirrored Kismac r62 here in case anyone wants to download it:</p>
<ul>
<li><a href="/downloads/KisMACR62.zip">KisMACR62.zip</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/kismac-r62-download-for-mac-os-x-103/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevening an iBook G4 from going to sleep when closed</title>
		<link>http://www.geekprojects.org/2008/01/prevening-an-ibook-g4-from-going-to-sleep-when-closed/</link>
		<comments>http://www.geekprojects.org/2008/01/prevening-an-ibook-g4-from-going-to-sleep-when-closed/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 22:34:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.geekprojects.org/2008/01/10/prevening-an-ibook-g4-from-going-to-sleep-when-closed/</guid>
		<description><![CDATA[Here&#8217;s how I prevented my iBook G4 notebook from going to sleep when the lid is closed. This worked with Mac OS X 10.3.9 (Panther). YMMV. If you&#8217;re running a OS X 10.4 (Tiger) or newer, you might want to check out InsomniaX instead. InsomniaX should work with Mac OS X 10.4 and later. Download [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how I prevented my iBook G4 notebook from going to sleep when the lid is closed. This worked with Mac OS X 10.3.9 (Panther). YMMV. If you&#8217;re running a OS X 10.4 (Tiger) or newer, you might want to check out <a href="http://www.semaja2.net/insomniaxinfo/">InsomniaX</a> instead. <a href="http://www.semaja2.net/insomniaxinfo/">InsomniaX</a> should work with Mac OS X 10.4 and later.</p>
<ol>
<li>Download and decompress <a href="/downloads/Insomnia.kext.tbz">Insomnia.kext.tbz</a>. I wasn&#8217;t able to retrieve a copy of from the <a href="http://binaervarianz.de/projekte/programmieren/meltmac/">Insomnia project&#8217;s home page</a>, but I did grab a <a href="/downloads/Insomnia.kext.tbz">working copy off of the Internet Archive, which I mirrored here</a>. I also <a href="/downloads/Insomnia.src.tbz">mirrored a copy of the source code in the Insomnia.src.tbz file</a>.</li>
<li>Open a command prompt, switch to the directory that you decompressed <a href="/downloads/Insomnia.kext.tbz">Insomnia.kext.tbz</a> to,  and execute the following commands:
<ol>
<li><strong>sudo chown root:wheel Insomnia.kext # set the module to be owned by root</strong></li>
<li><strong>mv Insomnia.kext /System/Library/Extensions # move the module to the kernel extensions directory</strong></li>
<li><strong>cd /System/Library/Extensions # change to the kernel extensions directory</strong></li>
<li><strong>sudo kextload Insomnia.kext # load the module</strong></li>
</ol>
</li>
<li>Test the module by closing your notebook&#8217;s lid. If your Mac doesn&#8217;t go to sleep, you&#8217;re in business.</li>
</ol>
<p>You can unload the Insomnia.kext module at any time by executing the following commands:</p>
<ol>
<li><strong>cd /System/Library/Extensions # change to the kernel extensions directory</strong></li>
<li><strong>sudo kextunload Insomnia.kext # unload the module</strong></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.geekprojects.org/2008/01/prevening-an-ibook-g4-from-going-to-sleep-when-closed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
