<?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>Macintosh-Admin</title>
	<atom:link href="http://www.macintosh-admin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.macintosh-admin.com</link>
	<description>The resource for Macintosh administrators...</description>
	<lastBuildDate>Wed, 27 Jan 2010 23:02:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPad App Wish List for a Server Admin</title>
		<link>http://www.macintosh-admin.com/2010/01/27/ipad-app-wish-list-for-a-server-admin/</link>
		<comments>http://www.macintosh-admin.com/2010/01/27/ipad-app-wish-list-for-a-server-admin/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 23:01:37 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=299</guid>
		<description><![CDATA[
If you hadn&#8217;t heard the fervent rumors over the past few weeks about Apple&#8217;s impending tablet computer, you&#8217;ll no doubt hear about the real deal: the iPad. It&#8217;s a mid-size, thin, fast, multi-touch tablet computer running an enhanced version of the iPhone OS and including Bluetooth, WiFi, and optional 3G connectivity. I&#8217;ll leave you to [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-left: 1em; margin-bottom: 0.5em;" title="ipad-158x212" src="http://www.macintosh-admin.com/wp-content/uploads/2010/01/ipad-158x212.png" alt="" width="158" height="212" /><br />
If you hadn&#8217;t heard the fervent rumors over the past few weeks about Apple&#8217;s impending tablet computer, you&#8217;ll no doubt hear about the real deal: the <a href="http://www.apple.com/">iPad</a>. It&#8217;s a mid-size, thin, fast, multi-touch tablet computer running an enhanced version of the iPhone OS and including Bluetooth, WiFi, and optional 3G connectivity. I&#8217;ll leave you to <a href="http://www.apple.com/ipad/#gallery-hero-video">watch the video</a> or drool over the <a href="http://www.apple.com/ipad/specs/">specs</a> &amp; <a href="http://www.apple.com/ipad/pricing/">pricing</a>.</p>
<p>Since I&#8217;m on-call 24/7 and must be ready to respond whether I&#8217;m on the couch or on a long trip, my primary workstation is the thin &amp; light <a href="http://www.apple.com/macbookair/">MacBook Air</a>. I certainly wouldn&#8217;t mind carrying just an iPad with me wherever I went, but there are a few caveats for a server admin like me. While the iPhone OS&#8217;s copy &amp; paste support is stellar and was worth the wait, the lack of multitasking could certainly make life more tedious in some cases or downright impossible in others. The iPad supports current iPhone/iPod touch applications at their existing resolutions (or at 2x size) and I have no doubt that the developers of <a href="http://www.macintosh-admin.com/2009/09/02/ssh-to-your-server-from-your-iphoneipod-touch/">SSH apps</a> and such will update them to support the new resolution &amp; keyboards quite quickly, but there are key apps missing. They&#8217;ve developed excellent new versions of the iWork apps for use on the iPad, but I&#8217;d need them to port Server Admin, Workgroup Manager, and <a href="http://www.apple.com/remotedesktop/">Apple Remote Desktop</a> for me to actually give up my MacBook Air.</p>
<p>It&#8217;s sexy. It has the potential. It certainly has the screen resolution and performance to take on such tasks. I&#8217;ll even guarantee that plenty of third-party tools will be developed for server admins using the iPad, but I hope Apple sees the light and brings over their own admin tools as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2010/01/27/ipad-app-wish-list-for-a-server-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaning Up MySQL Binary Logs</title>
		<link>http://www.macintosh-admin.com/2010/01/18/cleaning-up-mysql-binary-logs/</link>
		<comments>http://www.macintosh-admin.com/2010/01/18/cleaning-up-mysql-binary-logs/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:02:52 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=290</guid>
		<description><![CDATA[While Jimmy has previously covered disabling MySQL&#8217;s binary logging for those who don&#8217;t need it and don&#8217;t want to worry about the unexpected disk space usage, others prefer to merely purge older binary logs to reclaim disk space. MySQL&#8217;s binary logs live in /var/mysql and appear as mysql-bin.000001. Some of my servers merely hosting a [...]]]></description>
			<content:encoded><![CDATA[<p>While Jimmy has previously covered <a href="/2008/11/27/mysql-binary-logging/">disabling MySQL&#8217;s binary logging</a> for those who don&#8217;t need it and don&#8217;t want to worry about the unexpected disk space usage, others prefer to merely purge older binary logs to reclaim disk space. MySQL&#8217;s binary logs live in <code>/var/mysql</code> and appear as <code>mysql-bin.000001</code>. Some of my servers merely hosting a few weblogs have bin logs taking up 4K-1MB, but others hosting large web applications have bin logs in the 1GB range. The last thing you want is for the drive hosting your MySQL databases to fill up unexpectedly.</p>
<p>Here&#8217;s a one-liner for removing all MySQL bin logs older than 30 days:</p>
<p><code>
<pre>sudo find /var/mysql -name "mysql-bin.0*" -mtime +30 -exec rm {} +</pre>
<p></code></p>
<p>Obviously, any command like this that automates deletion of potentially needed data could be disastrous, so make sure you have a good backup of your data before you try it. The benefit of the above command is that you can remove &#8216;<code>-exec rm {} +</code>&#8216; from the end of it to do a dry-run without actually removing any files and it&#8217;ll merely list the file names. Also, if you want preserve all bin logs newer than 60 days, simply change to read &#8216;<code>-mtime +60</code>&#8216;, or whatever best fits your needs.</p>
<p>Depending on your usage &#038; backup setup, you could certainly automate this using <code>cron</code> or launchd.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2010/01/18/cleaning-up-mysql-binary-logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Kill Orphaned launchd Jobs</title>
		<link>http://www.macintosh-admin.com/2009/12/31/how-to-kill-orphaned-launchd-jobs/</link>
		<comments>http://www.macintosh-admin.com/2009/12/31/how-to-kill-orphaned-launchd-jobs/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 13:27:16 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=282</guid>
		<description><![CDATA[Have you ever accidentally edited, moved, or deleted a launchd daemon/agent plist file without stopping the job first and then found you couldn&#8217;t unload it? I&#8217;ve done this on a few occasions and learned the following trick from the launchctl man page, just run `sudo launchctl remove &#60;job_label&#62;`. The &#60;job_label&#62; should be the job&#8217;s &#8216;Label&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever accidentally edited, moved, or deleted a <a href="http://launchd.macosforge.org/">launchd</a> daemon/agent plist file without stopping the job first and then found you couldn&#8217;t unload it? I&#8217;ve done this on a few occasions and learned the following trick from the launchctl man page, just run `<code>sudo launchctl remove &lt;job_label&gt;</code>`. The <code>&lt;job_label&gt;</code> should be the job&#8217;s &#8216;Label&#8217; specified in the plist file (the reverse domain notation used in the plist filename, e.g. &#8216;tld.domain.job&#8217; if the filename is &#8216;tld.domain.job.plist&#8217;) or you can look it up using `<code>sudo launchctl list</code>`.</p>
<p>A little background in case you&#8217;re interested: the &#8216;remove&#8217; subcommand is there to counteract jobs added manually/programmatically using the &#8217;submit&#8217; subcommand, hence it working when the plist file is not there for you to use the &#8216;unload&#8217; subcommand (which requires a plist file).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/12/31/how-to-kill-orphaned-launchd-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Directory Replication and SSH Service ACLs</title>
		<link>http://www.macintosh-admin.com/2009/12/15/open-directory-replication-and-ssh-service-acls/</link>
		<comments>http://www.macintosh-admin.com/2009/12/15/open-directory-replication-and-ssh-service-acls/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:15:54 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=274</guid>
		<description><![CDATA[While configuring a Mac OS X 10.5 Leopard Server as an Open Directory Replica of a Leopard Open Directory Master I got &#8220;Open Directory Replica Error value = 1255" when it tried to start creating the replica. This error has to do with not being able to establish an ssh connection with the OD Master, [...]]]></description>
			<content:encoded><![CDATA[<p>While configuring a Mac OS X 10.5 Leopard Server as an Open Directory Replica of a Leopard Open Directory Master I got &#8220;<code>Open Directory Replica Error value = 1255"</code> when it tried to start creating the replica. This error has to do with not being able to establish an ssh connection with the OD Master, but the server in question had Remote Login enabled and, while I was using service level ACLs to limit ssh access, the admin user had ssh access.</p>
<p>However, although the root user and admin user share the same password by default, they&#8217;re not the same user and I couldn&#8217;t ssh in as root. Oddly, the root user isn&#8217;t an option to add to service level ACLs in Server Admin (at least for that Leopard Server installation). A quick search pulled a knowledge base article regading being <a href="http://support.apple.com/kb/TA24269">unable to add the root user to service-based ACL for SSH</a> which tells you to run the following command to add it manually:</p>
<p><code>sudo dseditgroup -o edit -a root -t user com.apple.access_ssh</code></p>
<p>Sure enough, it worked like a charm and now root shows up as &#8220;System Administrator&#8221; in the SSH service level ACLs in Server Admin:</p>
<p><img style="display: block; margin: 1em auto;" src="http://www.macintosh-admin.com/wp-content/uploads/2009/12/server_admin-service_acls-ssh-system_administrator.png" alt="" width="607" height="351" /></p>
<p>Naturally, I was then able to ssh in as root and the Open Directory Replica creation went off without a hitch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/12/15/open-directory-replication-and-ssh-service-acls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Swamped by ServicesInformation Errors</title>
		<link>http://www.macintosh-admin.com/2009/11/30/swamped-by-servicesinformation-errors/</link>
		<comments>http://www.macintosh-admin.com/2009/11/30/swamped-by-servicesinformation-errors/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 22:29:58 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=269</guid>
		<description><![CDATA[Here was a new one for me. A Mac OS X 10.5 Leopard Server file server had been unresponsive to Apple Remote Desktop and wouldn&#8217;t display video for about a week. I could still SSH in and the AFP services it hosted were functioning normally, so I left it for a &#8220;later&#8221; project. Well, this [...]]]></description>
			<content:encoded><![CDATA[<p>Here was a new one for me. A Mac OS X 10.5 Leopard Server file server had been unresponsive to Apple Remote Desktop and wouldn&#8217;t display video for about a week. I could still SSH in and the AFP services it hosted were functioning normally, so I left it for a &#8220;later&#8221; project. Well, this morning I was notified that some of the AFP shares were no longer listed due to a power outage affecting the RAIDs connected to it.</p>
<p>No worries, restarting the AFP service or rebooting should resolve that. Only it didn&#8217;t. There was high usage by <code>syslogd</code> and I found tons of the following messages in <code>/var/log/system.log</code>:</p>
<pre><code>Record of type dsRecTypeStandard:Config named ‘ServicesInformation’ already exists in /Local/Default. Trying with new name: ServicesInformation1</code></pre>
<p>Others have run into <a href="http://discussions.apple.com/thread.jspa?messageID=8393887#8909261">this</a> <a href="http://www.massey.ac.nz/~fherbert/?p=1">before</a>, and it seems to be a corruption of <code>/var/db/dslocal/nodes/Default/config/ServicesInformation.plist</code>. In my case, there was some file system corruption, so I did the following:</p>
<ol>
<li>Booted from another drive w/Disk Utility and SuperDuper!</li>
<li>Verified the disk using Disk Utility (which failed.)</li>
<li>Backed up the drive with SuperDuper! (Just in case.)</li>
<li>Repaired the volume with Disk Utility (successfully.)</li>
<li>Booted into <a href="http://support.apple.com/kb/HT1492">Single User Mode</a>.</li>
<li>Backed up <code>/var/db/dslocal/nodes/Default/config/ServicesInformation.plist</code> and removed all the extra <code>ServicesInformation*.plist</code> files.</li>
<li>Rebooted from the original boot drive.</li>
</ol>
<p>What I found while fixing this:</p>
<ul>
<li>The <code>ServicesInformation.plist</code> was corrupted and contained text regarding a disk full error, so that&#8217;s likely the cause of the corruption.</li>
<li>I was able to just delete <code>ServicesInformation.plist</code> and let it regenerate without detrimental effects, but be dubious.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/11/30/swamped-by-servicesinformation-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stripping All ACLs</title>
		<link>http://www.macintosh-admin.com/2009/11/18/stripping-all-acls/</link>
		<comments>http://www.macintosh-admin.com/2009/11/18/stripping-all-acls/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 16:14:14 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=263</guid>
		<description><![CDATA[I&#8217;ll admit it: I rarely ever work with Access Control Lists. Most of my time is spent in web server land where POSIX permissions are more than adequate, so I just fire up Server Admin if I have to add an ACL.
However, a co-worker recently ran into an ACL mess after a client converted their [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll admit it: I rarely ever work with Access Control Lists. Most of my time is spent in web server land where POSIX permissions are more than adequate, so I just fire up Server Admin if I have to add an ACL.</p>
<p>However, a co-worker recently ran into an ACL mess after a client converted their server from Standalone to Open Directory Master and back again. So, how to strip all ACLs so you can start over? It&#8217;s probably dangerous or some command I&#8217;m not familiar with, right? Nope.</p>
<p>The following call to <code>chmod</code> will recursively remove all ACLs:</p>
<p><code>chmod -RN /path/to/directory</code></p>
<p>Voilà!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/11/18/stripping-all-acls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flush Your Firewall</title>
		<link>http://www.macintosh-admin.com/2009/11/17/flush-your-firewall/</link>
		<comments>http://www.macintosh-admin.com/2009/11/17/flush-your-firewall/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 20:32:45 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=261</guid>
		<description><![CDATA[The other day I was having some issues with my VPN and Mail server working correctly. After narrowing down the issue to it being my firewall blocking the issue, I went out on a hunt to locate the possibility to be able to flush out the current rules from the firewall. OS X Leopard Server [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I was having some issues with my VPN and Mail server working correctly. After narrowing down the issue to it being my firewall blocking the issue, I went out on a hunt to locate the possibility to be able to flush out the current rules from the firewall. OS X Leopard Server uses ipfw as it&#8217;s firewall implementation. Even OS X Leopard client uses ipfw! Fortunately it&#8217;s pretty similar to iptables which we also use on our Linux servers so there was a way to flush out the current rules. Simply using the following command will remove all the rules that haven&#8217;t been saved (which can be done either via the command line or through that nice Server Admin GUI tool):</p>
<p><code>sudo /sbin/ipfw -f flush</code></p>
<p>Once that&#8217;s run, you have have a peek back inside the Server Admin tool and you&#8217;ll notice under the Active Rules there should be none or only a couple. You can also show the list from the command line (which you&#8217;ll probably want to do under client since it doesn&#8217;t work with the Server Admin tool. Use this command to do so:</p>
<p><code>bash-3.2$ sudo /sbin/ipfw list<br />
65535 allow ip from any to any</code></p>
<p>As you can see, I allow everything on my client machine, but on the server:</p>
<p><code>palomino:etc jimmybrancaccio$ sudo /sbin/ipfw list<br />
00001 allow udp from any 626 to any dst-port 626<br />
00010 divert 8668 ip from any to any via en0<br />
03885 deny ip from 58.251.59.9 to any<br />
03890 deny ip from 89.96.140.154 to any<br />
03895 deny ip from 211.143.101.226 to any<br />
03900 deny ip from 212.222.147.130 to any<br />
03905 deny ip from 58.185.182.212 to any<br />
03910 deny ip from 76.17.182.127 to any<br />
03915 deny ip from 202.102.245.109 to any<br />
65535 allow ip from any to any</code></p>
<p>There&#8217;s currently some blocks in place. Anyways, just a couple useful ipfw commands!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/11/17/flush-your-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colors In Terminal!</title>
		<link>http://www.macintosh-admin.com/2009/11/03/colors-in-terminal/</link>
		<comments>http://www.macintosh-admin.com/2009/11/03/colors-in-terminal/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:06:55 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=256</guid>
		<description><![CDATA[
Looking for a way to jazz up your Terminal.app? Here&#8217;s a quick and easy way to do so! Open up Terminal first, then type in nano -w ~/.bash_profile This will open a command line-based text editor. The file you&#8217;re editing is one that gets loaded every time you open a new Terminal window (or tab). [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://www.macintosh-admin.com/wp-content/uploads/2009/11/dircolors-osx.png" alt="dircolors-osx" title="dircolors-osx" width="566" height="315" class="alignnone size-full wp-image-257" /></p>
<p>Looking for a way to jazz up your Terminal.app? Here&#8217;s a quick and easy way to do so! Open up Terminal first, then type in nano -w ~/.bash_profile This will open a command line-based text editor. The file you&#8217;re editing is one that gets loaded every time you open a new Terminal window (or tab). Paste or type in the following at the end of the document:</p>
<p><code>export CLICOLOR=1</code></p>
<p>Then hit Ctrl+O and Ctrl+X. These key commands save the file and exit the editor. Now, open a new Terminal window and type in ls. This will list the contents of the folder you&#8217;re in (which should be your home folder) and the titles of the folders should be colored as shown in the above screenshot! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/11/03/colors-in-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Server Diagnostics 3X106 Released</title>
		<link>http://www.macintosh-admin.com/2009/10/23/apple-server-diagnostics-3x106-released/</link>
		<comments>http://www.macintosh-admin.com/2009/10/23/apple-server-diagnostics-3x106-released/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 20:42:02 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[Software Update]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=252</guid>
		<description><![CDATA[
Apple released Apple Server Diagnostics 3X106 yesterday to support for Snow Leopard Server and the Mac mini. If you&#8217;ve still got 3X104, you&#8217;ll need to grab the new version if you&#8217;re running Snow Leopard Server.
The tests it performs include:

Boot ROM
Ethernet controller
Fan
Hard drive
Memory
Power supply
Processor
Sensor
USB ports
Video controller

[Via TUAW]
]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-left: 1em;" src="http://www.macintosh-admin.com/wp-content/uploads/2009/08/mac-osx-leopard-server.png" alt="" /></p>
<p>Apple released <a href="http://support.apple.com/kb/DL948">Apple Server Diagnostics 3X106</a> yesterday to support for Snow Leopard Server and the Mac mini. If you&#8217;ve still got 3X104, you&#8217;ll need to grab the new version if you&#8217;re running Snow Leopard Server.</p>
<p>The tests it performs include:</p>
<ul>
<li>Boot ROM</li>
<li>Ethernet controller</li>
<li>Fan</li>
<li>Hard drive</li>
<li>Memory</li>
<li>Power supply</li>
<li>Processor</li>
<li>Sensor</li>
<li>USB ports</li>
<li>Video controller</li>
</ul>
<p>[Via <a href="http://www.tuaw.com/2009/10/23/apple-posts-two-new-updates/">TUAW</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/10/23/apple-server-diagnostics-3x106-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>State of the Mac mini</title>
		<link>http://www.macintosh-admin.com/2009/10/23/state-of-the-mac-mini/</link>
		<comments>http://www.macintosh-admin.com/2009/10/23/state-of-the-mac-mini/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 19:56:32 +0000</pubDate>
		<dc:creator>morgant</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.macintosh-admin.com/?p=246</guid>
		<description><![CDATA[
macminicolo.net has posted their 2009 state of the Mac mini, including their test drive and photos (un-boxing &#38; take-apart) of the new Mac mini w/Snow Leopard Server. Interesting tidbits I was unaware of are:

The new Mac minis will accept 8GB of RAM and the now-previous ones only need a firmware upgrade to do so.
 AppleCare covers [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-left: 1em;" src="http://www.macintosh-admin.com/wp-content/uploads/2009/10/server_hero_20091020-224x183.png" alt="" /></p>
<p><a href="http://www.macminicolo.net/">macminicolo.net</a> has posted their <a href="http://www.macminicolo.net/state2009.html">2009 state of the Mac mini</a>, including their test drive and photos (un-boxing &amp; take-apart) of the <a href="http://www.macintosh-admin.com/2009/10/20/mac-mini-with-snow-leopard-server/">new Mac mini w/Snow Leopard Server</a>. Interesting tidbits I was unaware of are:</p>
<ul>
<li>The new Mac minis will accept 8GB of RAM and the now-previous ones only need a <a href="http://www.apple.com/downloads/macosx/apple/firmware_hardware/macminiefifirmwareupdate12.html">firmware upgrade</a> to do so.</li>
<li> AppleCare covers GUI-based server &amp; network management issues for the Mac mini w/Snow Leopard Server, but &#8220;isn&#8217;t the case if you buy a Mac mini and Snow Leopard Server separately.&#8221;</li>
<li>Approximately 70% of their customers use Mac OS X client. I shouldn&#8217;t be surprised due the former pricing, but I think the killer combination of Snow Leopard Server only costing $499 for unlimited clients and bundling it with a Mac mini configuration will change all of that.</li>
</ul>
<p>They also remind the naysayers who complain about lack of additional Ethernet ports &#8220;that Apple&#8217;s USB Ethernet Adapter w<span>orks fine on a mini. Just plug it in and you&#8217;re set.&#8221;</span></p>
<p>[Via <a href="http://daringfireball.net/linked/2009/10/21/macminicolo">Daring Fireball</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.macintosh-admin.com/2009/10/23/state-of-the-mac-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
