<?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>Software Developer, Web Developer and Linux Expert - Adam Spotton &#187; Ubuntu</title>
	<atom:link href="http://www.adamspotton.com/category/linux/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adamspotton.com</link>
	<description>Software Developer, Web Developer and Linux Expert</description>
	<lastBuildDate>Mon, 15 Aug 2011 21:15:48 +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>Problems with Eclipse 3.5.2 and installing the ADT</title>
		<link>http://www.adamspotton.com/2010/12/problems-with-eclipse-3-5-2-and-installing-the-adt/</link>
		<comments>http://www.adamspotton.com/2010/12/problems-with-eclipse-3-5-2-and-installing-the-adt/#comments</comments>
		<pubDate>Tue, 21 Dec 2010 21:13:59 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Android OS]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.adamspotton.com/?p=165</guid>
		<description><![CDATA[On a few workstations I&#8217;m running the Ubuntu 10.04 LTS and I ran into an issue while trying to install the ADT plugin for Android development. The error I was getting was the following: a message box about an artifact file not being found. The artifact file for osgi.bundle, org.eclipse.ant.ui,3.4.1.v20090901_r351 was not found. The fix [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">On a few workstations I&#8217;m running the Ubuntu 10.04 LTS and I ran into an issue while trying to install the ADT plugin for Android development. The error I was getting was the following: a message box about an artifact file not being found.</p>
<p style="text-align: left; padding-left: 30px;"><em>The artifact file for osgi.bundle, org.eclipse.ant.ui,3.4.1.v20090901_r351 was not found.</em></p>
<p>The fix I found was to make sure you have both the eclipse-jdt and eclipse-pde packages installed:</p>
<p style="padding-left: 30px;"><code>sudo aptitude install eclipse-jdt eclipse-pde</code></p>
<p>Once I had the above installed, restarted Eclipse, and installed the ADT plugin, everything worked as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamspotton.com/2010/12/problems-with-eclipse-3-5-2-and-installing-the-adt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling RakNet With g++ 4.3 Fails</title>
		<link>http://www.adamspotton.com/2009/04/compiling-raknet-with-g-43-fails/</link>
		<comments>http://www.adamspotton.com/2009/04/compiling-raknet-with-g-43-fails/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 17:57:57 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Crystalspace / CEL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.adamspotton.com/?p=75</guid>
		<description><![CDATA[When choosing a networking library for a Crystalspace/CEL project of mine, my heart was set on RakNet. The RakNet library offers many features and does so in a way that makes it easy to integrate into almost any project. Raknet is a cross-platform C++ game networking engine. It is designed to be a high performance, [...]]]></description>
			<content:encoded><![CDATA[<p>When choosing a networking library for a Crystalspace/CEL project of mine, my heart was set on RakNet. The RakNet library offers many features and does so in a way that makes it easy to integrate into almost any project.</p>
<blockquote><p>Raknet is a cross-platform C++ game networking engine. It is designed to be a high performance, easy to integrate, and complete solution for games and other applications.</p>
<p>&#8211; <a href="http://www.jenkinssoftware.com">http://www.jenkinssoftware.com</a>
</p></blockquote>
<p>Unfortunately, on my Ubuntu Jaunty system, g++-4.3 was installed by default which caused RakNet to fail on compilation. There were a bunch of errors in the DS_Map.h include file, including:</p>
<p><code>../Raknet/DS_Map.h:90: error: template argument 3 is invalid</code></p>
<p>After some trial and error I found that if you install the g++-4.2 development package and use the g++-4.2 binary, RakNet compiles and runs just fine.</p>
<p><strong>From a terminal window:</strong><br />
<code>sudo apt-get install g++-4.2</code></p>
<p>After installing the package above, I also needed to change which g++ binary my Eclipse project was using. I did this by going to the &#8220;Project&#8221; menu and clicking &#8220;Properties&#8221;. When the Properties window opens, click on &#8220;C/C++ Build&#8221; on the left side, then click on &#8220;GCC C++ Compiler&#8221; on the right. Where it shows the command to be run, change the command to read: <code>g++-4.2</code>.</p>
<p><center><img src="http://www.adamspotton.com/wp-content/uploads/2009/04/eclipse_gcc_42.png" alt="eclipse_gcc_42" title="eclipse_gcc_42" width="615" height="181" class="aligncenter size-full wp-image-84" /></center><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamspotton.com/2009/04/compiling-raknet-with-g-43-fails/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eclipse CDT is very slow when using auto completion (content assist)</title>
		<link>http://www.adamspotton.com/2009/04/eclipse-cdt-is-very-slow-when-using-auto-completion-content-assist/</link>
		<comments>http://www.adamspotton.com/2009/04/eclipse-cdt-is-very-slow-when-using-auto-completion-content-assist/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 17:21:17 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Crystalspace / CEL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.adamspotton.com/?p=50</guid>
		<description><![CDATA[I enjoy playing around with the Crystalspace engine in my spare time but was disappointed when I first tried to use it on my Ubuntu Jaunty system. Eclipse was installed as the primary IDE, along with Eclipse CDT which is also known as the C/C++ Development Tools for Eclipse. Everything appeared to work alright except [...]]]></description>
			<content:encoded><![CDATA[<p>I enjoy playing around with the Crystalspace engine in my spare time but was disappointed when I first tried to use it on my Ubuntu Jaunty system. Eclipse was installed as the primary IDE, along with Eclipse CDT which is also known as the C/C++ Development Tools for Eclipse. Everything appeared to work alright except when it came to using the newly compiled Crystalspace libraries inside of a new project.</p>
<p>One of the best features about modern IDEs is auto completion, or as Eclipse calls it Content Assist. Its job is to monitor what you type and offer you possible functions that you have access to from within the current context. For example, if I had the following declared in my new CS project:</p>
<p><code>csRef&lt;iPcDefaultCamera&gt; pccamera = CEL_QUERY_PROPCLASS_ENT (player_entity, iPcDefaultCamera);</code></p>
<p>You would then be able to type <code>pccamera</code> followed by <code>-></code>. When this is seen by the content assist, it builds a list of possible functions that the pccamera variable has access to call and displays them to you as a pop up listbox.<br />
<center><img src="http://www.adamspotton.com/wp-content/uploads/2009/04/content_assist_1.png" alt="content_assist_1" title="content_assist_1" width="603" height="253" class="aligncenter size-full wp-image-58" /></center></p>
<p>The image of content assist in action shown above took about 1.5 seconds to appear, now that my system is fixed. However, before I discovered the fix content assist took at least 10-12 seconds to work! If you are having the same issue that I did, you can check out the post that helped me out <a href="http://ubuntuforums.org/showthread.php?t=201378">here</a>, or just follow the directions below which worked on my Ubuntu Jaunty 9.04 system.</p>
<p><strong>From a terminal window:</strong><br />
<code>sudo apt-get install eclipse-cdt sun-java6-jdk<br />
sudo update-java-alternatives -s java-6-sun<br />
sudo -b gedit /etc/jvm</code></p>
<p><strong>When gedit opens up the /etc/jvm file, insert the following line at the top:</strong><br />
<code>/usr/lib/jvm/java-6-sun</code></p>
<p><strong>From a terminal window:</strong><br />
<code>sudo -b gedit /etc/eclipse/java_home</code></p>
<p><strong>When gedit opens up the /etc/eclipse/java_home file, insert the following line at the top:</strong><br />
<code>/usr/lib/jvm/java-6-sun</code></p>
<p>If you have lots of RAM you can even play around with adjusting the heap size available to Eclipse. I&#8217;d suggest you read the original article <a href="http://ubuntuforums.org/showthread.php?t=201378">here</a> which talks more about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamspotton.com/2009/04/eclipse-cdt-is-very-slow-when-using-auto-completion-content-assist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NVIDIA 9600GT Driver Install on Ubuntu (Follow Up)</title>
		<link>http://www.adamspotton.com/2009/04/nvidia-9600gt-driver-install-on-ubuntu-follow-up/</link>
		<comments>http://www.adamspotton.com/2009/04/nvidia-9600gt-driver-install-on-ubuntu-follow-up/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 14:40:21 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.adamspotton.com/?p=46</guid>
		<description><![CDATA[Let me begin this post by saying &#8220;I&#8217;m sorry.&#8221; A year or two ago I wrote an article about how I got my NVidia 9600 GT graphics card to work correctly on Ubuntu 8.04. Since that time, I have restructured my website and no longer have the original article. It looks like there are still [...]]]></description>
			<content:encoded><![CDATA[<p>Let me begin this post by saying &#8220;I&#8217;m sorry.&#8221; A year or two ago I wrote an article about how I got my NVidia 9600 GT graphics card to work correctly on Ubuntu 8.04. Since that time, I have restructured my website and no longer have the original article. It looks like there are still a lot of people needing help with getting drivers to work for the 9600 GT chipset because it is still actively being linked to from many different Ubuntu sites and forums. These are the people I&#8217;m writing this follow up post for.</p>
<p>My desktop system now runs the latest stable release of Ubuntu, which at the time of this writing is 8.10 with the release of Jaunty 9.04 right around the corner. Fortunately, I didn&#8217;t have to do anything special to get the 9600 GT to work with this version of Ubuntu. I would highly recommend anyone using an older version of Ubuntu to upgrade to the latest version, not only for the latest NVidia drivers but also for the large list of other software that is now available to you.</p>
<p>If you have Ubuntu 8.10 or later installed, you can use the &#8220;Hardware Drivers&#8221; program found under the System->Administration menu to properly detect and install the best drivers for your card. After doing this, I rebooted my system and had full use of my NVidia 9600 GT, along with all the compiz fanciness that comes with it.</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adamspotton.com/2009/04/nvidia-9600gt-driver-install-on-ubuntu-follow-up/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.623 seconds -->

