<?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>kogan agora netbook &#187; drivers</title>
	<atom:link href="http://agoranetbook.kayno.net/category/drivers/feed/" rel="self" type="application/rss+xml" />
	<link>http://agoranetbook.kayno.net</link>
	<description>installing, upgrading and configuring the kogan agora netbook</description>
	<lastBuildDate>Fri, 23 Jul 2010 15:01:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Upgrading ubuntu 10.04 to grub 2</title>
		<link>http://agoranetbook.kayno.net/2010/07/23/upgrading-ubuntu-10-04-to-grub-2/</link>
		<comments>http://agoranetbook.kayno.net/2010/07/23/upgrading-ubuntu-10-04-to-grub-2/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 11:34:00 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=460</guid>
		<description><![CDATA[Yes &#8211; it has been a while between posts! My kogan netbook has been serving the purpose it was intended for, meaning I haven&#8217;t come across anything I have felt I need to share in this blog. Upgrading ubuntu along &#8230; <a href="http://agoranetbook.kayno.net/2010/07/23/upgrading-ubuntu-10-04-to-grub-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://agoranetbook.kayno.net/wp-content/uploads/2009/05/13-agora-touchpad-and-microphone1-150x150.jpg" alt="" title="13-agora-touchpad-and-microphone1" width="75" height="75" class="alignright size-thumbnail wp-image-166" /></p>
<p>Yes &#8211; it has been a while between posts! My kogan netbook has been serving the purpose it was intended for, meaning I haven&#8217;t come across anything I have felt I need to share in this blog. Upgrading ubuntu along the way has been happy and cheery with no issues, so no need to blog&#8230;</p>
<p>But there have been three or four comments over the months regarding the touchpad not working with newer versions of ubuntu. Whilst ubuntu 9.10 came with grub 2 by default, upgrading from 9.04 (grub 1.5) to 9.10 and then up to 10.04 meant grub stayed at 1.5, so even though I am running 10.04, I am still on grub 1.5, and the &#8220;i8042_nomux&#8221; fix seems to still work.</p>
<p>When 9.10 was released, Tom provided this blog with a <a href="http://agoranetbook.kayno.net/2009/10/06/touchpad-configuration-for-ubuntu-9-10-grub-2/">solution for making the kogan netbook&#8217;s touchpad work in 9.10</a>. I had figured this would work for 10.04 too, so to be sure, I think its time to upgrade my kogan netbook to 10.04, just to make sure the touchpad still works.</p>
<p>Upgrading to grub 2 is straight forward using apt-get:</p>
<blockquote><p><code>sudo apt-get install grub2</code></p></blockquote>
<p>During the upgrade I was asked if i wanted to chainload grub 2 from my existing grub legacy setup. It was highly recommended, so I went with it. It also asked me if I wanted to keep the &#8220;i8042_nomux&#8221; parameter, which I also agreed to do &#8211; I want my touchpad!</p>
<p>Grub 2 was installed, and after a reboot all was still well with the touchpad. However, because I agreed to chainload grub 2, grub 1.5 is still installed on my <a href="http://en.wikipedia.org/wiki/Master_boot_record">Master Boot Record (MBR)</a> &#8211; not grub 2. This can be easily rectified with the following command:</p>
<blockquote><p><code>sudo upgrade-from-grub-legacy</code></p></blockquote>
<p>During this grub upgrade, I was asked if I wanted to keep my locally modified version of /etc/default/grub, and figuring this was modified for the &#8220;i8042_nomux&#8221; parameter, I agreed. I then had to choose where to install grub too, and I chose /dev/sda.</p>
<p>After a quick reboot, using grub 2 to boot, my touchpad still worked. success!! I now know that under ubuntu 10.04 with grub2, the touchpad on the kogan netbook works.</p>
<p>Now to help the people who can&#8217;t get the touchpad working. Short of doing a fresh install with 10.04 on my machine to try and replicate the issue (I don&#8217;t have the time, sorry), I thought I would try and work out what makes the touchpad work under grub 2.</p>
<p>Based on Tom&#8217;s info, i checked out my grub config:</p>
<blockquote><p><code>sudo gedit /etc/default/grub</code></p></blockquote>
<p>And it looks like:</p>
<blockquote><p><code># If you change this file, run 'update-grub' afterwards to update<br />
# /boot/grub/grub.cfg.</p>
<p>GRUB_DEFAULT=0<br />
GRUB_HIDDEN_TIMEOUT=0<br />
GRUB_HIDDEN_TIMEOUT_QUIET=true<br />
GRUB_TIMEOUT=3<br />
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`<br />
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"<br />
GRUB_CMDLINE_LINUX="i8042.nomux"</p>
<p># Uncomment to disable graphical terminal (grub-pc only)<br />
#GRUB_TERMINAL=console</p>
<p># The resolution used on graphical terminal<br />
# note that you can use only modes which your graphic card supports via VBE<br />
# you can see them in real GRUB with the command `vbeinfo'<br />
#GRUB_GFXMODE=640x480</p>
<p># Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux<br />
#GRUB_DISABLE_LINUX_UUID=true</p>
<p># Uncomment to disable generation of recovery mode menu entries<br />
#GRUB_DISABLE_LINUX_RECOVERY="true"</p>
<p># Uncomment to get a beep at grub start<br />
#GRUB_INIT_TUNE="480 440 1"</code></p></blockquote>
<p>I believe the important part is this line:</p>
<blockquote><p><code>GRUB_CMDLINE_LINUX="i8042.nomux"</code></p></blockquote>
<p>So I decided to comment the line out by adding a &#8220;#&#8221; to the front, run &#8220;sudo update-grub&#8221; to update my grub config and rebooted. When ubuntu came back, my touchpad was fixed in the center of the screen &#8211; stuck and broken. Reversing what I had just done (remove the &#8220;#&#8221;, run &#8220;sudo update-grub&#8221;, reboot) and the touchpad was back in motion.</p>
<p>If your kogan agora&#8217;s touchpad is not working, I have the following advice to offer. Edit your grub config:</p>
<blockquote><p><code>sudo gedit /etc/default/grub</code></p></blockquote>
<p>and <strong>type</strong> the following line &#8211; I say type because if you copy and paste, the wrong quotes may be used:</p>
<blockquote><p><code>GRUB_CMDLINE_LINUX="i8042.nomux"</code></p></blockquote>
<p>If there any other occurences of i8042.nomux remove them (just i8042.nomux) and then update your grub config:</p>
<blockquote><p><code>sudo update-grub</code></p></blockquote>
<p>Now reboot, and fingers crossed your touchpad will dance with your finger. If this fails, please comment below with your specifics (i.e fresh ubuntu 10.04 install, upgraded from grub 1.5, upgraded from 9.10, etc) and I will try and help.</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2010/07/23/upgrading-ubuntu-10-04-to-grub-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Touchpad configuration for Ubuntu and grub 2</title>
		<link>http://agoranetbook.kayno.net/2009/10/06/touchpad-configuration-for-ubuntu-9-10-grub-2/</link>
		<comments>http://agoranetbook.kayno.net/2009/10/06/touchpad-configuration-for-ubuntu-9-10-grub-2/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 22:02:25 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=453</guid>
		<description><![CDATA[Note: this post has been edited to match my ubuntu 10.04 config. Ubuntu now uses grub 2 as the default boot loader, and this means a change in the instructions for making the kogan agora touchpad function under ubuntu. After &#8230; <a href="http://agoranetbook.kayno.net/2009/10/06/touchpad-configuration-for-ubuntu-9-10-grub-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>Note: this post has been edited to match my ubuntu 10.04 config.</em></p>
<p>Ubuntu now uses grub 2 as the default boot loader, and this means a change in the instructions for making the kogan agora touchpad function under ubuntu.</p>
<p>After putting out a call for assistance on this, Tom has come through with the goods! In order to get the agora&#8217;s touchpad working with grub 2, follow these instructions</p>
<p>In a terminal:</p>
<blockquote><p><code>sudo gedit /etc/default/grub</code></p></blockquote>
<p>Find the line <em>GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”</em> and just after it add a new line and <strong>type in</strong> (make sure you type to avoid the wrong quote symbol copying and pasting) the following line:</p>
<blockquote><p><code>GRUB_CMDLINE_LINUX=”i8042.nomux”</code></p></blockquote>
<p>and then update grub <strong>and reboot</strong>:</p>
<blockquote><p><code>sudo update-grub</code></p></blockquote>
<p>I have tested this myself and it works a treat. Thanks Tom!</p>
<p>References: <a href="http://agoranetbook.kayno.net/2009/08/02/touchpad-update-ensuring-i8042-nomux-is-not-removed-when-your-kernel-is-updated/comment-page-1/#comment-13165">http://agoranetbook.kayno.net/2009/08/02/touchpad-update-ensuring-i8042-nomux-is-not-removed-when-your-kernel-is-updated/comment-page-1/#comment-13165</a></p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/10/06/touchpad-configuration-for-ubuntu-9-10-grub-2/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>ubuntu 9.10 (karmic koala) beta on the kogan agora</title>
		<link>http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/</link>
		<comments>http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 11:11:37 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=424</guid>
		<description><![CDATA[In a bid to resurrect my kogan agora pro netbook to a usable state, I decided to upgrade to the lastest version of ubuntu, karmic koala, which has just gone beta. sudo update-manager -d This will kick off the update &#8230; <a href="http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In a bid to resurrect my kogan agora pro netbook to a usable state, I decided to upgrade to the lastest version of ubuntu, karmic koala, which has just gone beta.</p>
<blockquote><p><code>sudo update-manager -d</code></p></blockquote>
<p>This will kick off the update manager, and provide you with a single button to upgrade to version 9.10. After 30 minutes or so, you should be rebooting into a new kernel, and the new ubuntu.</p>
<p>The usual suspects that needed attention in the past (read: the touchpad and wireless networking) were both still working, and had obviously remained configured from the previous version.</p>
<p>Whilst I say &#8220;working&#8221;, the wireless adapter is connecting to my home wireless access point however the signal is still low and not picking up neighbouring APs.</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><span id="more-424"></span></p>
<p>There has been some improvements though. The physical wifi button is no longer a <em>&#8220;<a href="http://agoranetbook.kayno.net/2009/08/02/kogan-sent-me-a-replacement-wireless-network-mini-card/comment-page-1/#comment-12761">glorified light switch</a>&#8220;</em>, as it was so well put by Andrew. Pressing the button results in the card shutting off.</p>
<p>The second welcome surprise is the return of &#8220;resume from suspend&#8221;. After <a href="http://agoranetbook.kayno.net/2009/08/02/kogan-sent-me-a-replacement-wireless-network-mini-card/">changing the wifi card</a> recently myself and others discovered the netbook would not resume from suspend. This now appears to have resolved itself.</p>
<p>The netbook remix interface is looking much fresher, as you can see in the screenshots attached below.</p>
<p>The only qualm I have so far with karmic and the netbook remix itself is that I cannot seem to locate the shutdown icon in the menus or interface. This may be because I upgraded from 9.04, but as it is beta I will wait and see, and use the physical netbook power button to bring up the shutdown options.</p>
<p>Another note to add &#8211; GRUB2 and EXT4, whilst being the new defaults in ubuntu 9.10, are not automatically upgraded:</p>
<blockquote><p><em><strong>ext4 by default</strong></p>
<p>The new &#8220;ext4&#8243; filesystem is used by default for new installations with Ubuntu 9.10 Beta; of course, other filesystems are still available via the manual partitioner. Existing filesystems will not be upgraded.</p>
<p><strong>GRUB 2 by default</strong></p>
<p>GRUB 2 is the default boot loader for new installations with Ubuntu 9.10 Beta, replacing the previous GRUB &#8220;Legacy&#8221; boot loader. Existing systems will not be upgraded to GRUB 2 at this time, as automatically reinstalling the boot loader is an inherently risky operation.</em> </p></blockquote>
<p>A comment in a previous blog entry on this site <a href="http://agoranetbook.kayno.net/2009/08/02/touchpad-update-ensuring-i8042-nomux-is-not-removed-when-your-kernel-is-updated/comment-page-1/#comment-13141">asks how to configure the touchpad in GRUB2</a>. I am yet to investigate this, however is anyone has any info, please post below.</p>
<p>References</p>
<ul>
<li><a href="http://www.ubuntu.com/testing/karmic/beta">http://www.ubuntu.com/testing/karmic/beta</a></li>
</ul>

<a href='http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/karmic-unr-1/' title='karmic-unr-1'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/10/karmic-unr-1-75x75.png" class="attachment-thumbnail" alt="karmic-unr-1" title="karmic-unr-1" /></a>
<a href='http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/karmic-unr-2/' title='karmic-unr-2'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/10/karmic-unr-2-75x75.png" class="attachment-thumbnail" alt="karmic-unr-2" title="karmic-unr-2" /></a>
<a href='http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/karmic-unr-3/' title='karmic-unr-3'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/10/karmic-unr-3-75x75.png" class="attachment-thumbnail" alt="karmic-unr-3" title="karmic-unr-3" /></a>
<a href='http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/karmic-unr-4/' title='karmic-unr-4'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/10/karmic-unr-4-75x75.png" class="attachment-thumbnail" alt="karmic-unr-4" title="karmic-unr-4" /></a>
<a href='http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/karmic-unr-5/' title='karmic-unr-5'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/10/karmic-unr-5-75x75.png" class="attachment-thumbnail" alt="karmic-unr-5" title="karmic-unr-5" /></a>

<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/10/05/ubuntu-9-10-karmic-koala-beta-on-the-kogan-agora/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>&#8220;You have to set ‘SHMConfig’ ‘true’&#8230;&#8221; &#8211; even though you have created shmconfig.fdi</title>
		<link>http://agoranetbook.kayno.net/2009/05/11/you-have-to-set-%e2%80%98shmconfig%e2%80%99-%e2%80%98true%e2%80%99-even-though-you-have-created-shmconfigfdi/</link>
		<comments>http://agoranetbook.kayno.net/2009/05/11/you-have-to-set-%e2%80%98shmconfig%e2%80%99-%e2%80%98true%e2%80%99-even-though-you-have-created-shmconfigfdi/#comments</comments>
		<pubDate>Mon, 11 May 2009 11:52:52 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[gOS]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=235</guid>
		<description><![CDATA[In previous blog entries (disabling the touchpad whilst typing and installing gsynaptics) I described how to enable SHMConfig in order to control the touchpad. I had some feedback from at least two readers who could not enable SHMConfig, and when &#8230; <a href="http://agoranetbook.kayno.net/2009/05/11/you-have-to-set-%e2%80%98shmconfig%e2%80%99-%e2%80%98true%e2%80%99-even-though-you-have-created-shmconfigfdi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In previous blog entries (<a href="http://agoranetbook.kayno.net/2009/05/02/disable-the-kogan-agoras-touchpad-whilst-typing/">disabling the touchpad whilst typing</a> and <a href="http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/">installing gsynaptics</a>) I described how to enable SHMConfig in order to control the touchpad.</p>
<p>I had some feedback from at least two readers who could not enable SHMConfig, and when they tried to use gsynaptics or syndaemon, they were met with the error &#8220;<em>You have to set ‘SHMConfig’ ‘true’ in xorg.conf or XF86Config</em>&#8220;. The instructions provided in the post to enable SHMConfig using the <strong>/etc/hal/fdi/policy/shmconfig.fdi</strong> method did not appear to be working.</p>
<p>After a lot of troubleshooting work with <a href="http://agoranetbook.kayno.net/2009/05/02/disable-the-kogan-agoras-touchpad-whilst-typing/comment-page-1/#comment-37">Travis</a>, we were able to determine why this was occuring, and how to resolve it.</p>
<p><span id="more-235"></span></p>
<p>Firstly, and briefly, the why. The HAL daemon (hald) keeps a cache in <strong>/var/cache/hald/fdi-cache</strong>. For some reason, hald was using this cache file, and not picking up the newly created shmconfig.fdi file.</p>
<p>Now the important part &#8211; how to resolve it! This is easy, you just need to remove the cache:</p>
<blockquote><p><code>sudo rm /var/cache/hald/fdi-cache</code></p></blockquote>
<p>Provided you have created the shmconfig.fdi file as described in the <a href="http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/">gsynaptics post</a>, reboot your machine, and you should be able to load gsynaptics and setup syndaemon without being told SHMConfig needs to be set to true. The fdi-cache file will be recreated when you reboot, and you shouldn&#8217;t have any more problems.</p>
<p>A big thanks to Travis for helping to troubleshoot this one!</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
/* posts image only */
google_ad_slot = "8086854932";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/05/11/you-have-to-set-%e2%80%98shmconfig%e2%80%99-%e2%80%98true%e2%80%99-even-though-you-have-created-shmconfigfdi/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>restoring the kogan agora to factory default settings and gOS</title>
		<link>http://agoranetbook.kayno.net/2009/05/07/restoring-the-kogan-agora-to-factory-default-settings-and-gos/</link>
		<comments>http://agoranetbook.kayno.net/2009/05/07/restoring-the-kogan-agora-to-factory-default-settings-and-gos/#comments</comments>
		<pubDate>Thu, 07 May 2009 11:28:45 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[gOS]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=219</guid>
		<description><![CDATA[I have just booted my agora using the kogan gOS iso, which can be found here: http://www.sendspace.com/pro/dl/s2eg5d. I used unetbootin to create a bootable USB drive, and it booted to an Ubuntu/gOS boot menu fine. I didn&#8217;t want to overwrite &#8230; <a href="http://agoranetbook.kayno.net/2009/05/07/restoring-the-kogan-agora-to-factory-default-settings-and-gos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have just booted my agora using the kogan gOS iso, which can be found here: <a href="http://www.sendspace.com/pro/dl/s2eg5d">http://www.sendspace.com/pro/dl/s2eg5d</a>.</p>
<p>I used <a href="http://unetbootin.sourceforge.net/">unetbootin</a> to create a bootable USB drive, and it booted to an Ubuntu/gOS boot menu fine. I didn&#8217;t want to overwrite my <acronym title="Ubuntu Netbook Remix">UNR</acronym> install, so I chose to boot &#8216;live&#8217; &#8211; i.e. run gOS from the USB drive, and not change my hard drive in any way.</p>
<p>The kogan spash screen appeared and eventually it booted to the &#8216;koganised&#8217; gOS desktop, which only lasted a day the last time it was installed on my agora! What I didn&#8217;t have, semi-unexpectedly, was a functioning touchpad.</p>
<p><span id="more-219"></span></p>
<p>Unless the fixgOS2.bat or makeboot.bat files described in the manual do something other than copy the gOS iso to the USB drive and make it bootable (I couldn&#8217;t use the method described in the agora&#8217;s manual, as I do not have windows installed), than I don&#8217;t think the factory restore instructions will help you to easily restore the kogan to its original out-of-the-box self.</p>
<p>I would love to be proved wrong though, and would love it if someone could follow the <a href="http://www.kogan.com.au/media/uploads/Kogan-Agora-Netbook-User-Manual.pdf">instructions on page 36 of the manual</a>, create a USB drive with the kogan gOS image boot live to gOS (this will not erase any data currently on your agora&#8217;s hard disk) and see if the touchpad works. Any takers? You may be the first to crack the touchpad mystery of the kogan agora!</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
/* posts image only */
google_ad_slot = "8086854932";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/05/07/restoring-the-kogan-agora-to-factory-default-settings-and-gos/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>installing the VT6656 wireless driver on the kogan agora</title>
		<link>http://agoranetbook.kayno.net/2009/04/25/installing-the-vt6656-wireless-driver-on-the-kogan-agora/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/25/installing-the-vt6656-wireless-driver-on-the-kogan-agora/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 09:50:24 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=10</guid>
		<description><![CDATA[Now the final piece in the puzzle &#8211; installing the wireless driver. In a terminal: wget http://www.viaarena.com/Driver/VT6656_Linux_src_v1.19_12_x86.zip This will download the driver. Now you need to unzip it: unzip VT6656_Linux_src_v1.19_12_x86.zip Now change into the newly created directory: cd VT6656_Linux_src_v1.19_12_x86 The &#8230; <a href="http://agoranetbook.kayno.net/2009/04/25/installing-the-vt6656-wireless-driver-on-the-kogan-agora/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now the final piece in the puzzle &#8211; installing the wireless driver. In a terminal:</p>
<blockquote><p><code>wget <a href="http://www.viaarena.com/Driver/VT6656_Linux_src_v1.19_12_x86.zip">http://www.viaarena.com/Driver/VT6656_Linux_src_v1.19_12_x86.zip</a></code></p></blockquote>
<p>This will download the driver. Now you need to unzip it:</p>
<blockquote><p><code>unzip<br />
VT6656_Linux_src_v1.19_12_x86.zip</code></p></blockquote>
<p>Now change into the newly created directory:</p>
<blockquote><p><code>cd VT6656_Linux_src_v1.19_12_x86</code></p></blockquote>
<p><span id="more-10"></span></p>
<p>The driver needs to be compiled next. You may need to install gcc (it is in the build-essential package) for this:</p>
<blockquote><p>
<code>sudo apt-get install build-essential<br />
sudo make install</code>
</p></blockquote>
<p>The final step is to load the driver/module:</p>
<blockquote><p><code>sudo modprobe vntwusb</code></p></blockquote>
<p>After a few seconds, you should be able to connect to your wireless networks.</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
/* posts image only */
google_ad_slot = "8086854932";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/04/25/installing-the-vt6656-wireless-driver-on-the-kogan-agora/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>the touchpad on my kogan agora doesn&#8217;t work!</title>
		<link>http://agoranetbook.kayno.net/2009/04/25/oh-my-touchpad-doesnt-work/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/25/oh-my-touchpad-doesnt-work/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 09:40:31 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[touchpad]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=7</guid>
		<description><![CDATA[Yes, when you first install Ubuntu, you will notice that the touchpad (the mouse) is not working. Never fear though &#8211; there is an easy fix! When it first boots up, login and start a terminal. You may need an &#8230; <a href="http://agoranetbook.kayno.net/2009/04/25/oh-my-touchpad-doesnt-work/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yes, when you first install Ubuntu, you will notice that the touchpad (the mouse) is not working. Never fear though &#8211; there is an easy fix!</p>
<p>When it first boots up, login and start a terminal. You may need an external mouse, or press alt+F2 and type &#8220;gnome-terminal&#8221; into the box, to get the terminal window up.</p>
<p><span id="more-7"></span></p>
<p>In the terminal:</p>
<blockquote><p><code>sudo gedit /boot/grub/menu.lst</code></p></blockquote>
<p>At the end of the file are three kernel boot options. The first boot option will look something like:</p>
<blockquote><p><code>title           Ubuntu 9.04, kernel 2.6.28-11-generic<br />
uuid            8fd4r505-1372-4s39-8r3fd3-a4fr56ygdf6063<br />
kernel          /boot/vmlinuz-2.6.28-11-generic root=UUID=8fd4r505-1372-4s39-8r3fd3-a4fr56ygdf6063 ro quiet splash<br />
initrd          /boot/initrd.img-2.6.28-11-generic<br />
quiet</code></p></blockquote>
<p>You need to add <strong>i8042.nomux</strong> to the end of the kernel line:</p>
<blockquote><p><code>kernel          /boot/vmlinuz-2.6.28-11-generic root=UUID=8fd4r505-1372-4s39-8r3fd3-a4fr56ygdf6063 ro quiet splash i8042.nomux</code></p></blockquote>
<p>Now just save and close the file, and reboot the netbook. When it comes back, your touchpad should work.</p>
<p>Thanks to Rob and others who helped me debugging this problem.</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
google_ad_slot = "4886407979";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>&nbsp;</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-6032620045940994";
/* posts image only */
google_ad_slot = "8086854932";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/04/25/oh-my-touchpad-doesnt-work/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
