<?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>Philipp Schmid &#187; Snow Leopard</title>
<atom:link href="http://www.schmidp.com/category/mac-os-x/snow-leopard/feed/" rel="self" type="application/rss+xml" />
<link>http://www.schmidp.com</link>
<description>a plain personal blog</description>
<lastBuildDate>Sun, 02 Oct 2011 09:35:11 +0000</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=3.3</generator>
<item>
<title>Snow Leopard Kernel reaches Version 10.0.0</title>
<link>http://www.schmidp.com/2009/09/02/snow-leopard-kernel-reaches-version-10-0-0/</link>
<comments>http://www.schmidp.com/2009/09/02/snow-leopard-kernel-reaches-version-10-0-0/#comments</comments>
<pubDate>Wed, 02 Sep 2009 18:13:58 +0000</pubDate>
<dc:creator>schmidp</dc:creator>
<category>
<![CDATA[Mac OS X]]>
</category>
<category>
<![CDATA[Snow Leopard]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=266</guid>
<description>
<![CDATA[I just realized that the Mac OS X Kernel reached version 10.0.0 (aka X) with Snow Leopard. Darwin Fast.local 10.0.0 Darwin Kernel Version 10.0.0: Fri Jul 31 22:46:25 PDT 2009; root:xnu-1456.1.25~1/RELEASE_X86_64 x86_64]]>
</description>
<content:encoded>
<![CDATA[<p>I just realized that the Mac OS X Kernel reached version 10.0.0 (aka X) with Snow Leopard.</p>
<blockquote><p>Darwin Fast.local 10.0.0 Darwin Kernel Version 10.0.0: Fri Jul 31 22:46:25 PDT 2009; root:xnu-1456.1.25~1/RELEASE_X86_64 x86_64
</p></blockquote>
]]>
</content:encoded>
<wfw:commentRss>http://www.schmidp.com/2009/09/02/snow-leopard-kernel-reaches-version-10-0-0/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Building the postgres gem for a 64bit PostgreSQL on Snow Leopard (10.6)</title>
<link>http://www.schmidp.com/2009/06/24/building-the-postgres-gem-for-a-64bit-postgresql-on-snow-leopard-10-6/</link>
<comments>http://www.schmidp.com/2009/06/24/building-the-postgres-gem-for-a-64bit-postgresql-on-snow-leopard-10-6/#comments</comments>
<pubDate>Wed, 24 Jun 2009 16:46:57 +0000</pubDate>
<dc:creator>schmidp</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[Mac OS X]]>
</category>
<category>
<![CDATA[RubyOnRails]]>
</category>
<category>
<![CDATA[Snow Leopard]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=221</guid>
<description>
<![CDATA[sudo env ARCHFLAGS=&#8221;-arch x86_64&#8243; gem install postgres]]>
</description>
<content:encoded>
<![CDATA[<div class="codesnip-container" >sudo env ARCHFLAGS=&#8221;-arch x86_64&#8243; gem install postgres</div>
]]>
</content:encoded>
<wfw:commentRss>http://www.schmidp.com/2009/06/24/building-the-postgres-gem-for-a-64bit-postgresql-on-snow-leopard-10-6/feed/</wfw:commentRss>
<slash:comments>10</slash:comments>
</item>
<item>
<title>Enable SSH Agent (Key) Forwarding on Snow Leopard</title>
<link>http://www.schmidp.com/2009/06/23/enable-ssh-agent-key-forwarding-on-snow-leopard/</link>
<comments>http://www.schmidp.com/2009/06/23/enable-ssh-agent-key-forwarding-on-snow-leopard/#comments</comments>
<pubDate>Tue, 23 Jun 2009 09:40:12 +0000</pubDate>
<dc:creator>schmidp</dc:creator>
<category>
<![CDATA[Mac OS X]]>
</category>
<category>
<![CDATA[RubyOnRails]]>
</category>
<category>
<![CDATA[Snow Leopard]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=194</guid>
<description>
<![CDATA[I&#8217;m using Git and Capistrano to deploy some ruby applications on multiple servers. My Git setup is done with gitosis which uses a key based authentication over ssh. The deployment script logs into the remote servers and checks out the current application version via Git. Now to have this working, one must forward the private [...]]]>
</description>
<content:encoded>
<![CDATA[<p>I&#8217;m using Git and Capistrano to deploy some ruby applications on multiple servers. My Git setup is done with <a href="http://scie.nti.st/2007/11/14/hosting-git-repositories-the-easy-and-secure-way">gitosis</a> which uses a key based authentication over ssh. The deployment script logs into the remote servers and checks out the current application version via Git.</p>
<p>Now to have this working, one must forward the private key, used to authenticate with git, to the server which does the checkout. This is done by the <em>ssh-agent</em> process, which whom you can register your keys by running the command <em>ssh-add</em>.</p>
<p>After switching to Snow Leopard, my deployment script stopped working, because somehow the ssh key didn&#8217;t get forwarded to the server and I was presented with a login prompt: <em>&#8220;Enter password for git@git.gitserver.local:&#8221;</em>. Of course I don&#8217;t have a password, because gitosis uses key based authentication only.</p>
<p>To make a long story short, Snow Leopard ships with key forwarding disabled by default and you will have to modify the file /etc/ssh_config to get it working.</p>
<p>Just change the lines</p>
<div class="codesnip-container" ># Host *<br />
# ForwardAgent no</div>
<p>into</p>
<div class="codesnip-container" >Host *<br />
ForwardAgent yes</div>
<p>and you are good.</p>
]]>
</content:encoded>
<wfw:commentRss>http://www.schmidp.com/2009/06/23/enable-ssh-agent-key-forwarding-on-snow-leopard/feed/</wfw:commentRss>
<slash:comments>15</slash:comments>
</item>
<item>
<title>PwnageTool 3.0 works with Snow Leopard</title>
<link>http://www.schmidp.com/2009/06/20/pwnagetool-3-0-works-with-snow-leopard/</link>
<comments>http://www.schmidp.com/2009/06/20/pwnagetool-3-0-works-with-snow-leopard/#comments</comments>
<pubDate>Sat, 20 Jun 2009 01:04:09 +0000</pubDate>
<dc:creator>schmidp</dc:creator>
<category>
<![CDATA[Snow Leopard]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=182</guid>
<description>
<![CDATA[]]>
</description>
<content:encoded>
<![CDATA[<p><img class="aligncenter size-full wp-image-183" title="pwnagetool-pwned" src="http://www.schmidp.com/wp-content/uploads/2009/06/pwnagetool-pwned.png" alt="pwnagetool-pwned" width="256" height="256" /></p>
]]>
</content:encoded>
<wfw:commentRss>http://www.schmidp.com/2009/06/20/pwnagetool-3-0-works-with-snow-leopard/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Ruby/Rails and MySQL on Snow Leopard (10A380)</title>
<link>http://www.schmidp.com/2009/06/14/rubyrails-and-mysql-on-snow-leopard-10a380/</link>
<comments>http://www.schmidp.com/2009/06/14/rubyrails-and-mysql-on-snow-leopard-10a380/#comments</comments>
<pubDate>Sun, 14 Jun 2009 11:20:43 +0000</pubDate>
<dc:creator>schmidp</dc:creator>
<category>
<![CDATA[Development]]>
</category>
<category>
<![CDATA[Mac OS X]]>
</category>
<category>
<![CDATA[RubyOnRails]]>
</category>
<category>
<![CDATA[Snow Leopard]]>
</category>
<guid isPermaLink="false">http://www.schmidp.com/?p=180</guid>
<description>
<![CDATA[First get and install the 64bit MySQL version: http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.35-osx10.5-x86_64.dmg/from/pick#mirrors Then install the MySQL gem the following way: sudo gem install mysql &#8212; &#8211;with-mysql-config=/usr/local/mysql/bin/mysql_config]]>
</description>
<content:encoded>
<![CDATA[<p>First get and install the 64bit MySQL version:</p>
<blockquote><p>http://dev.mysql.com/get/Downloads/MySQL-5.1/mysql-5.1.35-osx10.5-x86_64.dmg/from/pick#mirrors</p></blockquote>
<p>Then install the MySQL gem the following way:</p>
<blockquote><p>sudo gem install mysql &#8212; &#8211;with-mysql-config=/usr/local/mysql/bin/mysql_config</p></blockquote>
]]>
</content:encoded>
<wfw:commentRss>http://www.schmidp.com/2009/06/14/rubyrails-and-mysql-on-snow-leopard-10a380/feed/</wfw:commentRss>
<slash:comments>45</slash:comments>
</item>
</channel>
</rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 338/381 objects using apc

Served from: www.schmidp.com @ 2012-02-04 20:55:32 -->
