<?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>Somewhere out there! &#187; fix</title>
	<atom:link href="http://stateless.geek.nz/tag/fix/feed/" rel="self" type="application/rss+xml" />
	<link>http://stateless.geek.nz</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 09:00:43 +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>Bookmarks for January 1st through January 8th</title>
		<link>http://stateless.geek.nz/2012/01/08/bookmarks-for-january-1st-through-january-8th/</link>
		<comments>http://stateless.geek.nz/2012/01/08/bookmarks-for-january-1st-through-january-8th/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 09:00:28 +0000</pubDate>
		<dc:creator>Nicholas Lee</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[cdisplay]]></category>
		<category><![CDATA[civ5]]></category>
		<category><![CDATA[comicrank]]></category>
		<category><![CDATA[comics]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[discussion]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[unoffical]]></category>

		<guid isPermaLink="false">http://stateless.geek.nz/?p=903</guid>
		<description><![CDATA[These are my links for January 1st through January 8th: Civilization 5 Crash Fix &#8211; How do I improve Civilization V&#8217;s performance? &#8211; Gaming &#8211; Stack Exchange &#8211; CiVUP Core &#171; Thal&#8217;s Civ Modding &#8211; ComicRack :: View topic &#8211; ComicRack and CDisplay &#8211; Bookmarks for December 25th through December 31st &#8212; Somewhere out there! [...]]]></description>
			<content:encoded><![CDATA[<p>These are my links for January 1st through January 8th:</p>
<ul>
<li><a href="http://www.squidoo.com/civilization-5-crash-fix">Civilization 5 Crash Fix</a> &#8211; </li>
<li><a href="http://gaming.stackexchange.com/questions/17018/how-do-i-improve-civilization-vs-performance">How do I improve Civilization V&#8217;s performance? &#8211; Gaming &#8211; Stack Exchange</a> &#8211; </li>
<li><a href="http://civmodding.wordpress.com/civ-v-unofficial-patch/civup-core/">CiVUP Core &laquo; Thal&#8217;s Civ Modding</a> &#8211; </li>
<li><a href="http://comicrack.17.forumer.com/viewtopic.php?t=237">ComicRack :: View topic &#8211; ComicRack and CDisplay</a> &#8211; </li>
<li><a href="http://stateless.geek.nz/2012/01/01/bookmarks-for-december-25th-through-december-31st/">Bookmarks for December 25th through December 31st &mdash; Somewhere out there!</a> &#8211; blog: Bookmarks for December 25th through December 31st: These are my links for December 25th through December 3&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://stateless.geek.nz/2012/01/08/bookmarks-for-january-1st-through-january-8th/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>KDC reply did not match expectations while getting initial credentials</title>
		<link>http://stateless.geek.nz/2011/07/06/kdc-reply-did-not-match-expectations-while-getting-initial-credentials/</link>
		<comments>http://stateless.geek.nz/2011/07/06/kdc-reply-did-not-match-expectations-while-getting-initial-credentials/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 00:07:12 +0000</pubDate>
		<dc:creator>Nicholas Lee</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[kerberos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://stateless.geek.nz/?p=849</guid>
		<description><![CDATA[Seems kinit is particular: I had similar problems. I figured out that krb5.conf requires the realm names to be in upper case. I have converted the domain names (wherever it appears in krb5.conf) to uppercase. [root@LinuxLS logicalfuzz]# kinit myaccount@corp.example.com Password for myaccount@corp.example.com: kinit(v5): KDC reply did not match expectations while getting initial credentials [root@LinuxLS logicalfuzz]# [...]]]></description>
			<content:encoded><![CDATA[<p>Seems kinit is <a href="http://www.linuxquestions.org/questions/linux-networking-3/kerberos-kinit-reply-did-not-match-expectations-445698/">particular</a>:</p>
<blockquote><p>I had similar problems. I figured out that krb5.conf requires the realm names to be in upper case. I have converted the domain names (wherever it appears in krb5.conf) to uppercase.</p>
<p><code>[root@LinuxLS logicalfuzz]# kinit myaccount@corp.example.com<br />
Password for myaccount@corp.example.com:<br />
kinit(v5): KDC reply did not match expectations while getting initial credentials<br />
[root@LinuxLS logicalfuzz]# kinit myaccount@CORP.EXAMPLE.COM<br />
Password for myaccount@CORP.EXAMPLE.COM:<br />
[root@LinuxLS logicalfuzz]#</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stateless.geek.nz/2011/07/06/kdc-reply-did-not-match-expectations-while-getting-initial-credentials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OpenVPN GUI client and Windows Vista</title>
		<link>http://stateless.geek.nz/2008/03/09/openvpn-gui-client-and-windows-vista/</link>
		<comments>http://stateless.geek.nz/2008/03/09/openvpn-gui-client-and-windows-vista/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 02:25:22 +0000</pubDate>
		<dc:creator>Nicholas Lee</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://stateless.geek.nz/2008/03/09/openvpn-gui-client-and-windows-vista/</guid>
		<description><![CDATA[OpenVPN GUI client and Windows Vista from Computer Tech Union. 1) Open your client.ovpn file and add the following two lines to the bottom of the file: route-method exe route-delay 2 2) Create a shortcut to your OpenVPN GUI file. Right click the shortcut and click properties. Under the &#8216;Shortcut&#8217; tab. Click &#8216;advanced&#8217;. Check the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ctunion.com/node/226">OpenVPN GUI client and Windows Vista</a> from Computer Tech Union.</p>
<blockquote><p>
1) Open your client.ovpn file and add the following two lines to the bottom of the file:<br />
route-method exe<br />
route-delay 2</p>
<p>2) Create a shortcut to your OpenVPN GUI file. Right click the shortcut and click properties.<br />
Under the &#8216;Shortcut&#8217; tab.<br />
Click &#8216;advanced&#8217;.<br />
Check the box that says &#8216;Run as administrator&#8217; and<br />
then Click &#8216;OK&#8217; and &#8216;OK&#8217; again.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stateless.geek.nz/2008/03/09/openvpn-gui-client-and-windows-vista/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

