<?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>Craig Mayhew's Blog &#187; Hardy Heron</title>
	<atom:link href="http://www.craigmayhew.com/blog/tag/hardy-heron/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.craigmayhew.com/blog</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 21:51:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Install Second Life on Ubuntu Hardy Heron</title>
		<link>http://www.craigmayhew.com/blog/2009/05/second-life-in-ubuntu-hardy-heron/</link>
		<comments>http://www.craigmayhew.com/blog/2009/05/second-life-in-ubuntu-hardy-heron/#comments</comments>
		<pubDate>Mon, 11 May 2009 05:27:25 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[Open Metaverse viewer]]></category>
		<category><![CDATA[Second Life]]></category>
		<category><![CDATA[Ubuntu 8.04]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=99</guid>
		<description><![CDATA[If you want to get the STABLE RELEASE of the ubuntu second life viewer, eg the same as the lindens official release then add the following lines to your /etc/apt/sources.list (you will need to do this as root e.g. sudo vim /etc/apt/sources.list):

# Second Life (Open Metaverse viewer)
deb http://ppa.launchpad.net/openmetaverse/ubuntu hardy main
deb-src http://ppa.launchpad.net/openmetaverse/ubuntu hardy main

Note: If you [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to get the STABLE RELEASE of the ubuntu second life viewer, eg the same as the lindens official release then add the following lines to your /etc/apt/sources.list (you will need to do this as root e.g. sudo vim /etc/apt/sources.list):</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
# Second Life (Open Metaverse viewer)
deb http://ppa.launchpad.net/openmetaverse/ubuntu hardy main
deb-src http://ppa.launchpad.net/openmetaverse/ubuntu hardy main
</pre>
<p>Note: If you are not running hardy heron but instead are running a later version of ubuntu then you can change the &#8220;hardy&#8221; bit to e.g. &#8220;intrepid&#8221; or &#8220;jaunty&#8221; and it should work just fine.</p>
<p>Update lists:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
sudo apt-get update
</pre>
<p>Install Second Life:</p>
<pre style="border: 1px solid #FFFFFF; padding: 5px; overflow:auto;">
sudo apt-get install omvviewer
</pre>
<p>You should then find in the Applications menu, under games is the &#8220;Open Metaverse viewer&#8221; aka second life!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2009/05/second-life-in-ubuntu-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.04: $HOME/.dmrc File is Being Ignored</title>
		<link>http://www.craigmayhew.com/blog/2008/11/ubuntu-804-homedmrc-file-is-being-ignored/</link>
		<comments>http://www.craigmayhew.com/blog/2008/11/ubuntu-804-homedmrc-file-is-being-ignored/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 00:43:35 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[Ubuntu 8.04]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=34</guid>
		<description><![CDATA[After installing the latest version of wine via command line and rebooted ubuntu, I was greeted by this message after typing my user/pass and logging in.
&#8220;User&#8217;s $HOME/.dmrc file is being ignored. This prevents the default sessin and language from being saved. File should be owned by user and have 644 permissions. User&#8217;s $HOME directory must [...]]]></description>
			<content:encoded><![CDATA[<p>After installing the latest version of wine via command line and rebooted ubuntu, I was greeted by this message after typing my user/pass and logging in.</p>
<p>&#8220;User&#8217;s $HOME/.dmrc file is being ignored. This prevents the default sessin and language from being saved. File should be owned by user and have 644 permissions. User&#8217;s $HOME directory must be owned by user and not writable by other users.&#8221;</p>
<p>I could login in OK, but something was clearly wrong and needed fixing. Change my name to your user name. Here&#8217;s how to fix it:</p>
<pre class="alt2" style="border: 1px inset; margin: 0px; padding: 6px; overflow: auto; width: 99%; text-align: left;" dir="ltr">sudo chmod 644 /home/craig/.dmrc
sudo chown craig /home/craig/.dmrc
sudo chmod -R 700 /home/craig
sudo chown -R craig /home/craig</pre>
<p>(If you get permission errors when trying this then drop out of the GUI and into recovery mode. This can be done by pressing Esc on the grub screen and selecting the latest recovery version)</p>
<p>I&#8217;m not sure precisely why this error message started appearing, but it had something to do with the way I installed the latest wine. I did via command line and not by the package manager.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2008/11/ubuntu-804-homedmrc-file-is-being-ignored/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>VPN Client in Ubuntu 8.04</title>
		<link>http://www.craigmayhew.com/blog/2008/11/vpn-client-in-ubuntu-804/</link>
		<comments>http://www.craigmayhew.com/blog/2008/11/vpn-client-in-ubuntu-804/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 08:22:12 +0000</pubDate>
		<dc:creator>Craig Mayhew</dc:creator>
				<category><![CDATA[Guides/Fixes]]></category>
		<category><![CDATA[Linux/Ubuntu]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[Interpid Ibex]]></category>
		<category><![CDATA[network-manager-pptp]]></category>
		<category><![CDATA[Ubuntu 8.04]]></category>
		<category><![CDATA[Ubuntu 8.10]]></category>
		<category><![CDATA[VPN Client]]></category>

		<guid isPermaLink="false">http://www.craigmayhew.com/blog/?p=32</guid>
		<description><![CDATA[Here&#8217;s an excellent guide to getting VPN connections working in gutsy and hardy.
http://tipotheday.com/2007/11/28/connect-to-windows-vpn-server-pptp-with-ubuntu-gutsy/
Unfortunately when using the network-manager-pptp package there is a bug with one of the network packages that prevents anyone with a static IP from succesfully connecting to a VPN server. When you left click your network icon you should see one of your [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an excellent guide to getting VPN connections working in gutsy and hardy.</p>
<p><a href="http://tipotheday.com/2007/11/28/connect-to-windows-vpn-server-pptp-with-ubuntu-gutsy/">http://tipotheday.com/2007/11/28/connect-to-windows-vpn-server-pptp-with-ubuntu-gutsy/</a></p>
<p>Unfortunately when using the <strong>network-manager-pptp</strong> package there is a bug with one of the network packages that prevents anyone with a <strong>static IP</strong> from succesfully connecting to a VPN server. When you left click your network icon you should see one of your network connections as selected. If they are all greyed out then you will suffer from this VPN issue. Unfortunately at the time of writing there is no fix other than to set your network connection from a static IP to <strong>roaming mode</strong>. Some people have suggested that <strong>Interpid Ibex will have a fix for this problem</strong>.</p>
<p>The bug tracker for this can be found at <a href="https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/116274">https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/116274</a></p>
<p>Does anyone know a better work-around for this?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.craigmayhew.com/blog/2008/11/vpn-client-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

