<?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>Automatica &#187; Blog</title>
	<atom:link href="http://automatica.com.au/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://automatica.com.au</link>
	<description>Specialist Mac support for creative professionals</description>
	<lastBuildDate>Sat, 19 May 2012 03:19:54 +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>Watch How This Time-Expanding Car Commercial Was Painstakingly Stitched Together</title>
		<link>http://automatica.com.au/2012/05/watch-how-this-time-expanding-car-commercial-was-painstakingly-stitched-together/</link>
		<comments>http://automatica.com.au/2012/05/watch-how-this-time-expanding-car-commercial-was-painstakingly-stitched-together/#comments</comments>
		<pubDate>Sat, 19 May 2012 03:19:54 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=815</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader It turns out Phantom cameras are useful for more than just destroying household items and blowing stuff up. This Fiat Abarth spot made use of the slow-motion wonder cam in this fantastical “still moving image” and the behind the scenes is pretty amazing. Director Dave Hill [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>
<p><img src="http://img.gawkerassets.com/img/17n0l7dpn1xx8jpg/xlarge.jpg" width="410" alt="Thumbnail"></p>
<p>It turns out Phantom cameras are useful for more than just destroying household items and blowing stuff up. This Fiat Abarth spot made use of the slow-motion wonder cam in this fantastical “still moving image” and the behind the scenes is pretty amazing.<br />
Director Dave Hill and DP Brandon Lippard had every single element of the scene lit, posed, and photographed separately. Each shot wa &#8230;</p>
<p><img src="http://feeds.feedburner.com/~r/GizmodoAustralia/~4/ymZ0tJcqJ80" height="1" width="1"></p>
</blockquote>
<p>from Gizmodo Australia http://feeds.gizmodo.com.au/GizmodoAustralia http://www.gizmodo.com.au/2012/05/watch-how-this-time-expanding-car-commercial-was-painstakingly-stitched-together/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+GizmodoAustralia+%28Gizmodo+Australia%29</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/05/watch-how-this-time-expanding-car-commercial-was-painstakingly-stitched-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding incoming and outgoing access rules on a Cisco ASA</title>
		<link>http://automatica.com.au/2012/04/adding-incoming-and-outgoing-access-rules-on-a-cisco-asa/</link>
		<comments>http://automatica.com.au/2012/04/adding-incoming-and-outgoing-access-rules-on-a-cisco-asa/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 22:19:20 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=813</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader To understand incoming and outgoing rules there are a couple of things to know before you can define your rules. Let’s start with an understanding of traffic flow on an ASA. All incoming rules are meant to define traffic that come inbound to the ASA’s interface. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>
<p>To understand incoming and outgoing rules there are a couple of things to know before you can define your rules. Let’s start with an understanding of traffic flow on an ASA. All incoming rules are meant to define traffic that come inbound to the ASA’s interface. Outgoing is for all traffic that is going outbound of an ASA’s interface. It does not matter which interface it is since this is a matter data flow and each active interface on an ASA will have it’s own unique address.</p>
<p>To try an explain this further let’s say we have and internal interface with an IP address of 10.0.0.1 that is for your local area network to connect to. You can add a permit or deny rule to this interface specifying whether incoming or outgoing  traffic will be permitted or not. This allows you to control what computers can communicate past that interface or not. Essentially you would define most of your rules for the local area network on the internal interface, governing which systems/devices could access the internet, certain protocols, or not.</p>
<p>Now if you know about the basic configuration of an ASA you know that you have to set the security level of the Internal and External ports. So by default these devices allow traffic from a higher security interface to a lower security interface. NAT/PAT will need to be configured depending on if you want to define port traffic for specified protocols.</p>
<p>For this article I will just mention that their are several types of Access Control Lists (ACL) that you can create on an ASA. These types are Standard, Extended, Ethertype, webtype, and IPV6. For this example we will use Extended because most likely that is what most everyone will use the most. With extended ACL not only can you specify IP addresses in the access control list, but you can specify port traffic to match the protocol that might be required.</p>
<p>Lets look at the the examples below:</p>
<p>You will see we are in the configuration terminal mode</p>
<p>ASA(config)# access-list acl extended permit tcp any host 192.0.43.10 eq 80</p>
<p>-So the first part “access-list acl” means the access list will be named “acl”.<br />
-Next you have a choice between type of access list. We are using Extended for this example.<br />
-The next portion is the permit or deny option and we have permit selected for this statement.<br />
-On the next selection that say’s “any” this refers to inside traffic (simply meaning that any internal traffic is allowed). If you dont use any you can specify specific devices by using “host and the IP address like that last part of this ACL statement.<br />
-The next part of this refers to specifying a specific host address of 192.0.43.10 equals port 80.</p>
<p>So this example tells us that our access control list named ACL will allow any inside traffic out the host address of 192.0.43.10 that is internet traffic.</p>
<p>Later you will notice that your statment will look like this on the ASA</p>
<p>ASA(config)access-list acl extended permit tcp any host 192.0.43.10 www<br />
Notice how “eq 80? default http traffic changed automatically to www) This is common on Cisco ASA devices).</p>
</blockquote>
<p>from 318 Tech Journal http://techjournal.318.com http://techjournal.318.com/general-technology/adding-incoming-and-outgoing-access-rules-on-a-cisco-asa/</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/04/adding-incoming-and-outgoing-access-rules-on-a-cisco-asa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring a Cisco ASA 5505 with the basics</title>
		<link>http://automatica.com.au/2012/04/configuring-a-cisco-asa-5505-with-the-basics/</link>
		<comments>http://automatica.com.au/2012/04/configuring-a-cisco-asa-5505-with-the-basics/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 22:19:13 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=811</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader The Cisco ASA 5505 is great for small to medium businesses. Below are the steps you will have to complete to configure your ASA to communicate with the internet. There are many more steps, options, and features to these devices (which later there will be more [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>
<p>The Cisco ASA 5505 is great for small to medium businesses. Below are the steps you will have to complete to configure your ASA to communicate with the internet. There are many more steps, options, and features to these devices (which later there will be more articles in regards to some of these features).</p>
<p><strong>Bring your device into configuration mode</strong><code></code><br /><code>318ASA&gt;en</code><br />
Brings the device into enable mode</p>
<p><code>318ASA#config t</code><br />
Change to configuration terminal mode</p>
<p><code>318ASA(config)#</code><br />
The ASA is now ready to be configured when you see (config)#</p>
<p><strong>Configure the internal interface VLAN (ASA’s use VLAN’s for added security by default)<br /></strong><code>318ASA(config)# interface Vlan 1</code></p>
<p>Configure interface VLAN 1<br /><code>318ASA(config-if)# nameif inside</code><br />
Name the interface inside<br /><code><br />
318ASA(config-if)#security-level 100</code><br />
Set’s the security level to 100</p>
<p><code>318ASA(config-if)#ip address 192.168.5.1 255.255.255.0</code><br />
Assign your IP address</p>
<p><code>318ASA(config-if)#no shut</code><br />
Make sure the interface is enabled and active</p>
<p><strong>Configure the external interface VLAN (This is your WAN\internet connection)<br /></strong><code>318ASA(config)#interface Vlan 2</code><br />
Creates the VLAN2 interface</p>
<p><code>318ASA(config-if)# nameif outside</code><br />
Name’s the interface outside</p>
<p><code>318ASA(config-if)#security-level 0</code><br />
Assigns the most strict security level to the outside interface (lower the number the higher the security).</p>
<p><code>318ASA(config-if)#ip address 76.79.219.82 255.255.255.0</code><br />
Assign your Public Address to the outside interface</p>
<p><code>318ASA(config-if)#no shut</code><br />
Enable the outside interface to be active.</p>
<p><strong>Enable and assign the external WAN to Ethernet 0/0 using VLAN2<br /></strong><code>318ASA(config)#interface Ethernet0/0</code><br />
Go to the Ethernet 0/0 interface settings</p>
<p><code>318ASA(config-if)#switchport access vlan 2</code><br />
Assign the interface to use VLAN2</p>
<p><code>318ASA(config-if)#no shut</code><br />
Enable the interface to be active.</p>
<p><strong>Enable and assign the internal LAN interface Ethernet 0/1 (note ports 0/1-0/7 act as a switch but all interfaces are disabled by default).<br /></strong><code>318ASA(config)#interface Ethernet0/1</code><br />
Go to the Ethernet 0/1 interface settings</p>
<p><code>318ASA(config-if)#no shut</code><br />
Enable the interface to be active.<br />
If you need multiple LAN ports you can do the same for Ethernet0/2 to 0/7.</p>
<p><strong>To have traffic route from LAN to WAN you must configure Network Address Translation on the outside interface</strong><br /><code>318ASA(config)#global (outside) 1 interface<br />
318ASA(config)#nat (inside) 1 0.0.0.0 0.0.0.0</code></p>
<p><strong>***NOTE for ASA Version 8.3 and later***<br /></strong>Cisco announced the new Cisco ASA software version 8.3. This version introduces several important configuration changes, especially on the NAT/PAT mechanism. The “global” command is no longer supported. NAT (static and dynamic) and PAT are configured under network objects. The PAT configuration below is for ASA 8.3 and later:<br /><code><br />
318ASA(config)#nat (inside,outside) dynamic interface<br /></code><br />
For more info you can reference this article from Cisco with regards to the changes – <a title="Cisco" href="http://www.cisco.com/en/US/docs/security/asa/asa83/upgrading/migrating.html">http://www.cisco.com/en/US/docs/security/asa/asa83/upgrading/migrating.html</a></p>
<p><strong>Configure the default route (for this example default gateway is </strong><strong>76.79.219.81</strong><strong>)<br /></strong><code>318ASA(config)#route outside 0.0.0.0 0.0.0.0 76.79.219.81 2 1</code></p>
<p><strong>Last but not least verify and save your configurations. If you do not save your configurations you will have to. </strong></p>
<p>Verify your settings are working. Once you have verified your configurations write to memory to save the configuration. If you do not write to memory your configurations will be lost upon the next reboot.</p>
<p><code>318ASA(config)#wr mem</code></p>
</blockquote>
<p>from 318 Tech Journal http://techjournal.318.com http://techjournal.318.com/general-technology/configuring-a-cisco-asa-5505-with-the-basics/</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/04/configuring-a-cisco-asa-5505-with-the-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create and update a Lion Recovery Partition</title>
		<link>http://automatica.com.au/2012/03/how-to-create-and-update-a-lion-recovery-partition/</link>
		<comments>http://automatica.com.au/2012/03/how-to-create-and-update-a-lion-recovery-partition/#comments</comments>
		<pubDate>Mon, 19 Mar 2012 21:02:30 +0000</pubDate>
		<dc:creator>kai</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=807</guid>
		<description><![CDATA[Good article on Mac OS X hints today with a shell script to create or update the Lion Recovery Partition http://hints.macworld.com/article.php?story=20120316132618149]]></description>
			<content:encoded><![CDATA[<p>Good article on Mac OS X hints today with a shell script to create or update the Lion Recovery Partition<br />
<a href="http://hints.macworld.com/article.php?story=20120316132618149" target="_blank"> http://hints.macworld.com/article.php?story=20120316132618149</a></p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/03/how-to-create-and-update-a-lion-recovery-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems with installing/using imapsync on Mac OS X</title>
		<link>http://automatica.com.au/2012/03/problems-with-installingusing-imapsync-on-mac-os-x/</link>
		<comments>http://automatica.com.au/2012/03/problems-with-installingusing-imapsync-on-mac-os-x/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 10:29:56 +0000</pubDate>
		<dc:creator>kai</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=805</guid>
		<description><![CDATA[I have done a number of mail server migrations and imapsync has come through with shining colours for me in the past. I&#8217;m moving a client&#8217;s email up to Telstra&#8217;s hosted Office365 solution and needed a way to push a large amount of email up to it. After I managed to find the link for [...]]]></description>
			<content:encoded><![CDATA[<p>I have done a number of mail server migrations and imapsync has come through with shining colours for me in the past.</p>
<p>I&#8217;m moving a client&#8217;s email up to Telstra&#8217;s hosted Office365 solution and needed a way to push a large amount of email up to it.</p>
<p>After I managed to find the link for an older version of Xcode to install on 10.6, I then <a title="imapsync on Fedora Hosted" href="https://fedorahosted.org/imapsync/" target="_blank">downloaded imapsync from fedora hosted</a> and went to install it&#8217;s dependancies.</p>
<pre>sudo perl -MCPAN -e 'install Mail::IMAPClient'
sudo perl -MCPAN -e 'install Digest::MD5'
sudo perl -MCPAN -e 'install Term::ReadKey'
sudo perl -MCPAN -e 'install IO::Socket::SSL'
sudo perl -MCPAN -e 'install File::Spec'
sudo perl -MCPAN -e 'install Digest::HMAC_MD5'
sudo perl -MCPAN -e 'install Authen::NTLM'</pre>
<p>This usually works a treat, however this time around it got stuck installing the Mail::IMAPClient module.</p>
<p>When it was running the tests, it was throwing an error along the lines of this:</p>
<pre>Can't call method "at" on unblessed reference at...</pre>
<pre># Looks like you planned 41 tests but ran 1.</pre>
<pre># Looks like your test exited with 255 just after 1.</pre>
<p>It turns out that this is a <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=662599" target="_blank">known bug, not in IMAPClient but in Parse::RecDescent</a></p>
<p>More info on it is here: <a href="https://rt.cpan.org/Public/Bug/Display.html?id=74733">https://rt.cpan.org/Public/Bug/Display.html?id=74733</a></p>
<p>You can either downgrade Parse::RecDescent to an older version, or you can recompile the grammars in Mail::IMAPClient to use the new version. I chose to recompile the grammars in Mail::IMAPCLient</p>
<p>I had to change to the directory where cpan had downloaded the tar ball to, under ~/.cpan and then run the following two commands:</p>
<pre>sudo perl -MParse::RecDescent - lib/Mail/IMAPClient/Thread.grammar \
    Mail::IMAPClient::Thread &amp;&amp; mv Thread.pm lib/Mail/IMAPClient/</pre>
<pre>sudo perl -MParse::RecDescent - lib/Mail/IMAPClient/BodyStructure/Parse.grammar \
    Mail::IMAPClient::BodyStructure::Parse &amp;&amp; mv Parse.pm lib/Mail/IMAPClient/BodyStructure/</pre>
<p>I was then able to install the IMAPClient library successfully and imapsync now works.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/03/problems-with-installingusing-imapsync-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10.7: A look at /etc/authorization usage</title>
		<link>http://automatica.com.au/2012/02/10-7-a-look-at-etcauthorization-usage/</link>
		<comments>http://automatica.com.au/2012/02/10-7-a-look-at-etcauthorization-usage/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 21:04:24 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=802</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader The /etc/authorization file in Mac OS X can be used to control access to the various panes of the System Preferences amongst other things. It&#8217;s used by some of us Mac Sys Admin&#8217;s to give Standard Users access to System Prefs panes that only admins could [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>The <em>/etc/authorization</em> file in Mac OS X can be used to control access to the various panes of the System Preferences amongst other things. It&#8217;s used by some of us Mac Sys Admin&#8217;s to give Standard Users access to System Prefs panes that only admins could otherwise unlock. It can also be used in the reverse to lock down panes you don&#8217;t want users messing with. <a href="http://support.apple.com/kb/TA23576">An example</a> by Apple was about allowing non-admin users to change the time zone setting. Often the panes can&#8217;t be controlled to the exact level you may want via MCX (Local or Managed) or defaults write/plists. Nor do you want to give users admin rights in a large business/university setting.</p>
<p>With 10.6 and now 10.7 the following Preference Panes are locked by default. Meaning you need an admin username and password to unlock them: Security &amp; Privacy, Print &amp; Scan, Network, Sharing, Users &amp; Groups, Parental Controls, Date &amp; Time, Software Update, Time Machine and  &#8230;<br style="clear:both"><br style="clear:both"><a style="font-size:10px;color:maroon" href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:cfc78075f3bc01e1d181e162f31c209c:qYzrtI79MNwxYkzvDRUKV3s%2Bzn8IAse5rH%2FOB0oG5E1hjJfwzCHoCTdPC4fL8YyQ3YB%2Fx9o%2FDNxDTg%3D%3D"><img border="0" title="Add to digg" alt="Add to digg" src="http://images.pheedo.com/images/mm/digg.gif"></a><br />
  <a style="font-size:10px;color:maroon" href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:050b8382c9c5f78c44ed307d9e8162cd:qS4rMZF0a6BJgsKHmu8KAGznBt0%2FSP2edgqON9S2RZpRnEJ%2BuHn85Q0jLRljkK4KoboIWMAl2k9IMA%3D%3D"><img border="0" title="Add to Reddit" alt="Add to Reddit" src="http://images.pheedo.com/images/mm/reddit.png"></a><br />
  <a style="font-size:10px;color:maroon" href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:0ca4c7eb266b29586ec506c4ef32b5db:%2FB%2BLNn%2FJJLho35cbdND86G1EB4jDAwHuPvNkBIx7EqfzrUk%2Bel46cp322MSFFGa52CY4wS%2BR4ZdDQiA%3D"><img border="0" title="Add to Slashdot" alt="Add to Slashdot" src="http://images.pheedo.com/images/mm/slashdot.png"></a><br />
  <a style="font-size:10px;color:maroon" href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:f59825bb564e6e1e883ba200747401e4:oaQSfXQI6SYMqP0g5%2Felp%2BgeZZIFhMzJlDXW4W3z0wmI2tEGjH4DY%2BGredzoAJdAbgU3Q0oq5TsKBg%3D%3D"><img border="0" title="Email this Article" alt="Email this Article" src="http://images.pheedo.com/images/mm/emailthis.png"></a><br />
  <a style="font-size:10px;color:maroon" href="http://www.pheedcontent.com/hostedMorselClick.php?hfmm=v3:35fba87d33675b34d8abb53c7bb54819:Bcjo3EBCMccrXAFlKrVT%2FZteRAxu39fXQFufAY1F2ny9JATpEOVjfu%2BqYuOpNd4vhCPcg0Xhoa5TZjE%3D"><img border="0" title="Add to StumbleUpon" alt="Add to StumbleUpon" src="http://images.pheedo.com/images/mm/stumbleit.gif"></a><br />
<br style="clear:both"><a href="http://ads.pheedo.com/click.phdo?s=b9a400e5fa6def6c49fdd20cd1862ee8&amp;p=1"><img alt="" style="border:0" border="0" src="http://ads.pheedo.com/img.phdo?s=b9a400e5fa6def6c49fdd20cd1862ee8&amp;p=1"></a><br />
<img alt="" height="0" width="0" border="0" src="http://tags.bluekai.com/site/5148"><img alt="" height="0" width="0" border="0" src="http://insight.adsrvr.org/track/evnt/?ct=0:tar7qjh&amp;adv=wouzn4v&amp;fmt=3"></p>
</blockquote>
<p>from MacOSXHints.com http://hints.macworld.com http://www.pheedcontent.com/click.phdo</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/02/10-7-a-look-at-etcauthorization-usage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HP’s User Serviceable All-in-One Workstation</title>
		<link>http://automatica.com.au/2012/02/hps-user-serviceable-all-in-one-workstation/</link>
		<comments>http://automatica.com.au/2012/02/hps-user-serviceable-all-in-one-workstation/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 20:50:03 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=800</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader The 27&#8243; monitor opens to expose user-serviceable components designed for no-tools swapping. The Z1 isn’t even supposed to ship until April, so it’s all just hype right now. But it’s working on me. Will be curious to hear what the early adopters report. [Thanks, Phil!] HP [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>
<p><span style="text-align:center;display:block"><iframe width="640" height="390" src="http://www.youtube.com/embed/S5v5ziNp1fk?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" frameborder="0"></iframe></span></p>
<div style="width:590px">
<img src="http://makezineblog.files.wordpress.com/2012/02/hp-z1.jpg" alt="" title="HP-Z1" width="580" height="245">
<p>The 27&#8243; monitor opens to expose user-serviceable components designed for no-tools swapping.</p>
</div>
<p>The <a href="http://www.hp.com/united-states/campaigns/workstations/z1_features.html">Z1</a> isn’t even supposed to ship until April, so it’s all just hype right now.  But it’s working on me.  Will be curious to hear what the early adopters report.  [Thanks, Phil!]</p>
<p><a href="http://www.hp.com/united-states/campaigns/workstations/z1_features.html">HP Z1 Workstation</a></p>
<p><a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/makezineblog.wordpress.com/177271/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/makezineblog.wordpress.com/177271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/makezineblog.wordpress.com/177271/"></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.makezine.com&amp;blog=30206320&amp;post=177271&amp;subd=makezineblog&amp;ref=&amp;feed=1" width="1" height="1">
<div>
<a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/makezineonline?d=yIl2AUoC8zA" border="0"></a> <a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/makezineonline?i=sfmNVSOwPzQ:Q8AaPjfh-qI:D7DqB2pKExk" border="0"></a> <a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/makezineonline?d=I9og5sOYxJI" border="0"></a> <a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/makezineonline?i=sfmNVSOwPzQ:Q8AaPjfh-qI:V_sGLiPBpWU" border="0"></a> <a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/makezineonline?d=qj6IDK7rITs" border="0"></a> <a href="http://feeds.feedburner.com/~ff/makezineonline?a=sfmNVSOwPzQ:Q8AaPjfh-qI:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/makezineonline?i=sfmNVSOwPzQ:Q8AaPjfh-qI:-BTjWOF_DHI" border="0"></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/makezineonline/~4/sfmNVSOwPzQ" height="1" width="1"></p>
</blockquote>
<p>from MAKE http://blog.makezine.com http://blog.makezine.com/2012/02/28/hps-new-user-serviceable-all-in-one-workstation-class-pc/?utm_source=feedburner&#038;utm_medium=feed&#038;utm_campaign=Feed%3A+makezineonline+%28MAKE%29</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/02/hps-user-serviceable-all-in-one-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZFS for Mac OS X — ZEVO</title>
		<link>http://automatica.com.au/2012/02/zfs-for-mac-os-x-zevo/</link>
		<comments>http://automatica.com.au/2012/02/zfs-for-mac-os-x-zevo/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 22:19:15 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=798</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader As drives become huge, the risk of data corruption becomes an ever increasing concern. Corruption can be subtle— “bit rot”, bit flips during file transfers, etc, and these can accrete over time. Read more from Mac Performance Guide http://macperformanceguide.com http://macperformanceguide.com/blog/2012/20120218_1-ZFS-for-OSX.html]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote>
<div>
<div>
<p>As <a href="http://macperformanceguide.com/blog/2012/20120217_1-Hitachi-Coolspin-4TB-tested.html">drives become huge</a>, the risk of data corruption becomes an ever increasing concern. Corruption can be subtle— “bit rot”, bit flips during file transfers, etc, and these can accrete over time.</p>
</p></div>
</p></div>
<p><a href="http://macperformanceguide.com/blog/2012/20120218_1-ZFS-for-OSX.html">Read more</a></p>
</blockquote>
<p>from Mac Performance Guide http://macperformanceguide.com http://macperformanceguide.com/blog/2012/20120218_1-ZFS-for-OSX.html</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/02/zfs-for-mac-os-x-zevo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to give a Mac OS X machine a new Kerberos identity</title>
		<link>http://automatica.com.au/2012/01/how-to-give-a-mac-os-x-machine-a-new-kerberos-identity/</link>
		<comments>http://automatica.com.au/2012/01/how-to-give-a-mac-os-x-machine-a-new-kerberos-identity/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 01:45:47 +0000</pubDate>
		<dc:creator>kai</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=794</guid>
		<description><![CDATA[If you&#8217;re doing a quick-n-dirty deployment of a few Macs, and instead of building a real SOE, you just build one machine and image it to the others, you can easily end up in a situation where you can only bind one of these machines to Open Directory, as they all have an identical Kerberos [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re doing a quick-n-dirty deployment of a few Macs, and instead of building a real SOE, you just build one machine and image it to the others, you can easily end up in a situation where you can only bind one of these machines to Open Directory, as they all have an identical Kerberos identity.</p>
<p>Fortunately it&#8217;s pretty easy to reinitialise the Kerberos database on a Mac &#8211; simply follow these steps:</p>
<p>In the Utilities folder, open Keychain Access. In the System keychain, find and delete the three com.apple.kerberos.kdc entries &#8211; a certificate and a public/private key pair generated from that certificate.</p>
<ol>
<li>In Terminal, run &#8216;sudo rm -fr /var/db/krb5kdc&#8217; &#8211; this will destroy the local KDC database.</li>
<li>In Terminal, run &#8216;sudo /usr/libexec/configureLocalKDC&#8217; &#8211; this will regenerate the local KDC database, including a new certificate and SHA1 hash.</li>
<li>Bind the machine to OD.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/01/how-to-give-a-mac-os-x-machine-a-new-kerberos-identity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calvin and Hobbes for January 15, 2012</title>
		<link>http://automatica.com.au/2012/01/calvin-and-hobbes-for-january-15-2012/</link>
		<comments>http://automatica.com.au/2012/01/calvin-and-hobbes-for-january-15-2012/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 07:19:12 +0000</pubDate>
		<dc:creator>ifttt</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://automatica.com.au/?p=792</guid>
		<description><![CDATA[I&#8217;ve just starred a new item in Google Reader from Calvin and Hobbes (Unofficial) http://www.ucomics.com/calvinandhobbes/ http://www.gocomics.com/calvinandhobbes/2012/01/15/]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just starred a new item in Google Reader<br />
<blockquote><img src="http://images.ucomics.com/comics/ch/2012/ch120115.jpg" border="0"></p>
</blockquote>
<p>from Calvin and Hobbes (Unofficial) http://www.ucomics.com/calvinandhobbes/ http://www.gocomics.com/calvinandhobbes/2012/01/15/</p>
]]></content:encoded>
			<wfw:commentRss>http://automatica.com.au/2012/01/calvin-and-hobbes-for-january-15-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

