<?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; software</title>
	<atom:link href="http://agoranetbook.kayno.net/category/software/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>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>USB booting the kogan agora &#8211; is 2GB too big?</title>
		<link>http://agoranetbook.kayno.net/2009/05/08/usb-booting-the-kogan-agora-is-2gb-too-big/</link>
		<comments>http://agoranetbook.kayno.net/2009/05/08/usb-booting-the-kogan-agora-is-2gb-too-big/#comments</comments>
		<pubDate>Fri, 08 May 2009 13:19:17 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=229</guid>
		<description><![CDATA[Is a 2GB USB drive too big for booting the Kogan agora netbook? Over the last few days I have been trying to USB boot different operation systems on my Kogan agora pro, such as UNR and the recently released &#8230; <a href="http://agoranetbook.kayno.net/2009/05/08/usb-booting-the-kogan-agora-is-2gb-too-big/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Is a 2GB USB drive too big for booting the Kogan agora netbook?</p>
<p>Over the last few days I have been trying to USB boot different operation systems on my Kogan agora pro, such as <acronym title="Ubuntu Netbook Remix">UNR</acronym> and the recently released &#8216;koganised&#8217; gOS iso.</p>
<p>I have two USB drives of the same brand. One is 1GB, and the other 2GB. I found that I can only get the 1GB USB drive to boot &#8211; the 2GB drive fails with &#8220;<code>boot error</code>&#8220;. <a href="http://agoranetbook.kayno.net/2009/04/25/installing-ubuntu-over-netboot/comment-page-1/#comment-41">Other users have also reported this behaviour</a>.</p>
<p><span id="more-229"></span></p>
<p>I believe this may be an issue with the FAT16/FAT32 file systems, however I have not investigated further. </p>
<p>If you are trying to USB boot your agora to install or even just try another operating system such as <acronym title="Ubuntu Netbook Remix">UNR</acronym>, you may need to consider using a 1GB USB drive. If anyone has any more information, or if you have been able to boot with 2GB or larger USB drives, please post the details below.</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/08/usb-booting-the-kogan-agora-is-2gb-too-big/feed/</wfw:commentRss>
		<slash:comments>9</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>adding the medibuntu repository</title>
		<link>http://agoranetbook.kayno.net/2009/04/27/adding-the-medibuntu-repository/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/27/adding-the-medibuntu-repository/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 09:21:27 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=79</guid>
		<description><![CDATA[In a comment to an earlier post, Bucky has suggested adding the medibuntu repository to ubuntu, rather than adding the skype repository to install skype. medibuntu (multimedia, entertainment &#038; distractions in ubuntu) has the skype package, as well as many &#8230; <a href="http://agoranetbook.kayno.net/2009/04/27/adding-the-medibuntu-repository/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://agoranetbook.kayno.net/?p=1&#038;cpage=1#comment-13">comment to an earlier post</a>, Bucky has suggested adding the medibuntu repository to ubuntu, rather than adding the skype repository to install skype. <a href="http://www.medibuntu.org/">medibuntu</a> (multimedia, entertainment &#038; distractions in ubuntu) has the skype package, as well as many other packages that you may find useful or as the name suggests, entertaining, such as realplayer and google earth.</p>
<p>Before going further, you should be aware that the medibuntu repository also contains packages that are not included in vanilla ubuntu for legal reasons. <a href="http://www.medibuntu.org/">medibuntu.org</a> (which you should read before continuing) states:</p>
<blockquote><p>
It is your legal responsibility to make sure that the software you are installing can be legally used in your country and for your intended purpose.</p></blockquote>
<p><span id="more-79"></span></p>
<p>With that in mind, to add the medibuntu repository and keyring, and update your sources to include the medibuntu packages, in a terminal:</p>
<blockquote><p><code>sudo wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list; sudo apt-get -q update; sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring; sudo apt-get -q update</code></p></blockquote>
<p><a href="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/synaptic-medibuntu.png" rel="lightbox[79]"><img src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/synaptic-medibuntu-150x150.png" alt="medibuntu repository in synaptic" title="medibuntu repository in synaptic" width="150" height="150" class="alignright size-thumbnail wp-image-86" /></a></p>
<p>If you want to see what packages you can now install, open the &#8220;Synaptic Package Manager&#8221; from the Administration menu, click the &#8220;Origin&#8221; button, and then select from the three medibuntu repositories (free, multi-verse, non-free) in the left panel.</p>
<p>References: <a href="https://help.ubuntu.com/community/Medibuntu">https://help.ubuntu.com/community/Medibuntu</a></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/04/27/adding-the-medibuntu-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>installing gsynaptics &#8211; a graphical interface to control the touchpad</title>
		<link>http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 10:31:16 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></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=49</guid>
		<description><![CDATA[The touchpad on the kogan agora seems pretty sensitive &#8211; however there is an app that can help &#8211; gsynaptics. This app does however require that SHMConfig be enabled. To do this, open a terminal and enter: sudo gedit /etc/hal/fdi/policy/shmconfig.fdi &#8230; <a href="http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The touchpad on the kogan agora seems pretty sensitive &#8211; however there is an app that can help &#8211; gsynaptics. This app does however require that SHMConfig be enabled. </p>
<p><span id="more-49"></span></p>
<p>To do this, open a terminal and enter:</p>
<blockquote><p><code>sudo gedit /etc/hal/fdi/policy/shmconfig.fdi</code></p></blockquote>
<p>and in the file that opens, place the following text:</p>
<blockquote><p>
<code>&lt;?xml version="1.0" encoding="UTF-8"?><br />
&lt;deviceinfo version="0.2"><br />
&nbsp;&nbsp;&lt;device><br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;match key="input.x11_driver" string="synaptics"><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;merge key="input.x11_options.SHMConfig" type="string">True&lt;/merge><br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/match><br />
&nbsp;&nbsp;&lt;/device><br />
&lt;/deviceinfo><br />
</code>
</p></blockquote>
<p>Now you can install gsynaptics:</p>
<blockquote><p><code>sudo apt-get install gsynaptics</code></p></blockquote>
<p>The final step is to <strong>reboot</strong>, so that SHMConfig is enabled. Once rebooted, you will have a new item in your Preference menu, &#8220;Touchpad&#8221; (which is gsyanptics).</p>

<a href='http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/gsynaptics-1/' title='gsynaptics-1'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/gsynaptics-1-150x150.png" class="attachment-thumbnail" alt="gsynaptics-1" title="gsynaptics-1" /></a>
<a href='http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/gsynaptics-2/' title='gsynaptics-2'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/gsynaptics-2-150x150.png" class="attachment-thumbnail" alt="gsynaptics-2" title="gsynaptics-2" /></a>
<a href='http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/gsynaptics-3/' title='gsynaptics-3'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/gsynaptics-3-150x150.png" class="attachment-thumbnail" alt="gsynaptics-3" title="gsynaptics-3" /></a>
<a href='http://agoranetbook.kayno.net/2009/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/gsynaptics-4/' title='gsynaptics-4'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/gsynaptics-4-150x150.png" class="attachment-thumbnail" alt="gsynaptics-4" title="gsynaptics-4" /></a>

<p>References: <a href="https://help.ubuntu.com/community/SynapticsTouchpad">https://help.ubuntu.com/community/SynapticsTouchpad</a></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/04/26/installing-gsynaptics-a-graphical-interface-to-control-the-touchpad/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>installing skype on the kogan agora netbook</title>
		<link>http://agoranetbook.kayno.net/2009/04/26/installing-skype-on-the-kogan-agora-netbook/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/26/installing-skype-on-the-kogan-agora-netbook/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 04:26:31 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=44</guid>
		<description><![CDATA[The agora netbook comes with gOS preinstalled, as well as some common/popular applications. One of these is skype, which doesn&#8217;t come &#8216;out-of-the-box&#8217; with ubuntu. If, like me, you have reinstalled ubuntu on your netbook, you may wish to reinstall skype. &#8230; <a href="http://agoranetbook.kayno.net/2009/04/26/installing-skype-on-the-kogan-agora-netbook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The agora netbook comes with gOS preinstalled, as well as some common/popular applications. One of these is skype, which doesn&#8217;t come &#8216;out-of-the-box&#8217; with ubuntu. If, like me, you have reinstalled ubuntu on your netbook, you may wish to reinstall skype. Here&#8217;s how.</p>
<p><span id="more-44"></span></p>
<p>First, you need to add the skype repository to your software sources. From the Administration menu, select &#8220;Software Sources&#8221;. Click the &#8220;Third-Party Software&#8221; tab, and click &#8220;Add&#8230;&#8221;. Enter the following repository into the APT line:</p>
<blockquote><p><code>deb http://download.skype.com/linux/repos/debian/ stable non-free</code></p></blockquote>
<p>Click &#8220;Add Source&#8221;, and then close.</p>
<p>Now from a terminal, update your software sources:</p>
<blockquote><p><code>sudo apt-get update</code></p></blockquote>
<p>and then install skype:</p>
<blockquote><p><code>sudo apt-get install skype</code></p></blockquote>
<p>Skype should now be in your Internet menu. I had to adjust the &#8220;Sound Devices&#8221; in the options &#8211; see the screenshots below. Enjoy!</p>

<a href='http://agoranetbook.kayno.net/2009/04/26/installing-skype-on-the-kogan-agora-netbook/skype/' title='skype'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/skype-150x150.png" class="attachment-thumbnail" alt="skype" title="skype" /></a>
<a href='http://agoranetbook.kayno.net/2009/04/26/installing-skype-on-the-kogan-agora-netbook/skype-sound-devices/' title='skype-sound-devices'><img width="75" height="75" src="http://agoranetbook.kayno.net/wp-content/uploads/2009/04/skype-sound-devices-150x150.png" class="attachment-thumbnail" alt="skype-sound-devices" title="skype-sound-devices" /></a>

<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/04/26/installing-skype-on-the-kogan-agora-netbook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>installing the flash plugin</title>
		<link>http://agoranetbook.kayno.net/2009/04/25/installing-the-flash-plugin/</link>
		<comments>http://agoranetbook.kayno.net/2009/04/25/installing-the-flash-plugin/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 12:02:42 +0000</pubDate>
		<dc:creator>kayno</dc:creator>
				<category><![CDATA[agora]]></category>
		<category><![CDATA[agora pro]]></category>
		<category><![CDATA[netbook remix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://agoranetbook.kayno.net/?p=31</guid>
		<description><![CDATA[So you can watch your favorite youtube clips, here is how to install the flash plugin: sudo apt-get install flashplugin-nonfree Restart firefox if it is open, and you should be able to see flash content.]]></description>
			<content:encoded><![CDATA[<p>So you can watch your favorite youtube clips, here is how to install the flash plugin:</p>
<blockquote><p><code>sudo apt-get install flashplugin-nonfree</code></p></blockquote>
<p>Restart firefox if it is open, and you should be able to see flash content.</p>
]]></content:encoded>
			<wfw:commentRss>http://agoranetbook.kayno.net/2009/04/25/installing-the-flash-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
