<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Acer Aspire One &#8211; Ubuntu netbook</title>
	<atom:link href="http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/</link>
	<description>Acer Aspire One user resource site - laptop netbook forum blog news reviews hacks mods</description>
	<lastBuildDate>Wed, 24 Feb 2010 23:53:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Recent Faves Tagged With "netbook" : MyNetFaves</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-372</link>
		<dc:creator>Recent Faves Tagged With "netbook" : MyNetFaves</dc:creator>
		<pubDate>Thu, 26 Feb 2009 17:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-372</guid>
		<description>[...] public links &gt;&gt; netbook    Acer Aspire One - Ubuntu netbook First saved by wash &#124; 10 days ago      Acer Notebook Launched Aspire One, The Smart Mini Notebook [...]</description>
		<content:encoded><![CDATA[<p>[...] public links &gt;&gt; netbook    Acer Aspire One &#8211; Ubuntu netbook First saved by wash | 10 days ago      Acer Notebook Launched Aspire One, The Smart Mini Notebook [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fractil</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-348</link>
		<dc:creator>fractil</dc:creator>
		<pubDate>Thu, 15 Jan 2009 04:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-348</guid>
		<description>These are the steps I took to get my wireless card &amp; led working in Ubuntu 8.04 (Hardy):

** Install build-essential
$&gt; sudo apt-get install build-essential

** Change to your home directory
$&gt; cd ~

** Download madwifi (adjust url accordingly to download most recent snapshot)
$&gt; sudo wget http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz

** Disable current Atheros HAL &amp; support for Atheros 802.11 wireless cards
System -&gt; Administration -&gt; Hardware Drivers

** Make sure that ath_hal module is not loaded in the future (e.g. DISABLED_MODULES=”ath_hal”)
$&gt; sudo vim /etc/default/linux-restricted-modules-common

** Unpack the downloaded tar.gz
$&gt; tar -xzvf madwifi-hal-.tar.gz

** Rename directory created by tar process
$&gt; mv madwifi-hal- madwifi

** Change to the new madwifi scripts directory
$&gt; cd madwifi/scripts

** Execute madwifi-unload and find-madwifi-modules.sh scripts
$&gt; sudo ./madwifi-unload
$&gt; sudo ./find-madwifi-modules.sh $(uname -r)

** Change to the main madwifi directory
$&gt; cd ..

** Get rid of old crap
$&gt; make clean

** Build the modules
$&gt; make
$&gt; sudo make install
$&gt; sudo modprobe ath_pci

** ath0 &amp; wifi0 should now be listed as interfaces
$&gt; ifconfig

** wlan&#039;s should now be visible from the panel network applet. You may also scan for wlan&#039;s via the command line
$&gt; sudo wlanconfig ath0 list scan

** Updates or upgrades that modify the kernel will effect madwifi. After updating/upgrading repeat the steps from ** Build the modules

** Load ath_pci module automatically. Add ath_pci after last line of file.
$&gt; sudo vim /etc/modules

** Restart
$&gt; sudo shutdown -r now

** Manually load module if you do not wish to restart
$&gt; sudo modprobe ath_pci

** Add the following two lines to the end of /etc/sysctl.conf to get wireless card led to blink based on traffic

dev.wifi0.ledpin=3
dev.wifi0.softled=1

** Restart
$&gt; sudo shutdown -r now

** Manually reload if you do not wish to restart
$&gt; sudo sysctl -p

Power can be tweaked, my battery lasts 5+ hours with 6 cell battery during moderate computing...

Cheers!</description>
		<content:encoded><![CDATA[<p>These are the steps I took to get my wireless card &amp; led working in Ubuntu 8.04 (Hardy):</p>
<p>** Install build-essential<br />
$&gt; sudo apt-get install build-essential</p>
<p>** Change to your home directory<br />
$&gt; cd ~</p>
<p>** Download madwifi (adjust url accordingly to download most recent snapshot)<br />
$&gt; sudo wget <a href="http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz" rel="nofollow">http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz</a></p>
<p>** Disable current Atheros HAL &amp; support for Atheros 802.11 wireless cards<br />
System -&gt; Administration -&gt; Hardware Drivers</p>
<p>** Make sure that ath_hal module is not loaded in the future (e.g. DISABLED_MODULES=”ath_hal”)<br />
$&gt; sudo vim /etc/default/linux-restricted-modules-common</p>
<p>** Unpack the downloaded tar.gz<br />
$&gt; tar -xzvf madwifi-hal-.tar.gz</p>
<p>** Rename directory created by tar process<br />
$&gt; mv madwifi-hal- madwifi</p>
<p>** Change to the new madwifi scripts directory<br />
$&gt; cd madwifi/scripts</p>
<p>** Execute madwifi-unload and find-madwifi-modules.sh scripts<br />
$&gt; sudo ./madwifi-unload<br />
$&gt; sudo ./find-madwifi-modules.sh $(uname -r)</p>
<p>** Change to the main madwifi directory<br />
$&gt; cd ..</p>
<p>** Get rid of old crap<br />
$&gt; make clean</p>
<p>** Build the modules<br />
$&gt; make<br />
$&gt; sudo make install<br />
$&gt; sudo modprobe ath_pci</p>
<p>** ath0 &amp; wifi0 should now be listed as interfaces<br />
$&gt; ifconfig</p>
<p>** wlan&#8217;s should now be visible from the panel network applet. You may also scan for wlan&#8217;s via the command line<br />
$&gt; sudo wlanconfig ath0 list scan</p>
<p>** Updates or upgrades that modify the kernel will effect madwifi. After updating/upgrading repeat the steps from ** Build the modules</p>
<p>** Load ath_pci module automatically. Add ath_pci after last line of file.<br />
$&gt; sudo vim /etc/modules</p>
<p>** Restart<br />
$&gt; sudo shutdown -r now</p>
<p>** Manually load module if you do not wish to restart<br />
$&gt; sudo modprobe ath_pci</p>
<p>** Add the following two lines to the end of /etc/sysctl.conf to get wireless card led to blink based on traffic</p>
<p>dev.wifi0.ledpin=3<br />
dev.wifi0.softled=1</p>
<p>** Restart<br />
$&gt; sudo shutdown -r now</p>
<p>** Manually reload if you do not wish to restart<br />
$&gt; sudo sysctl -p</p>
<p>Power can be tweaked, my battery lasts 5+ hours with 6 cell battery during moderate computing&#8230;</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: User links about "acer" on iLinkShare</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-251</link>
		<dc:creator>User links about "acer" on iLinkShare</dc:creator>
		<pubDate>Tue, 28 Oct 2008 00:48:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-251</guid>
		<description>[...] &#124; user-saved public links &#124; iLinkShare  3 votesAcer Aspire One - Ubuntu netbook&gt;&gt; saved by truckle 1 days ago4 votesAcer Inc cons revenue NT$252.17B (US$8.14B) - up 31% YoY&gt;&gt; [...]</description>
		<content:encoded><![CDATA[<p>[...] | user-saved public links | iLinkShare  3 votesAcer Aspire One &#8211; Ubuntu netbook&gt;&gt; saved by truckle 1 days ago4 votesAcer Inc cons revenue NT$252.17B (US$8.14B) &#8211; up 31% YoY&gt;&gt; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: evaki</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-250</link>
		<dc:creator>evaki</dc:creator>
		<pubDate>Mon, 27 Oct 2008 20:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-250</guid>
		<description>Unfortunately I have no idea about Linux  ... but I managed to prodeed to the so  called advanced version, where clicking with the right mouse I get to System etc.
I also found a list of software that can be checked and loaded.
After loading a program named cast podder the message came: cannot run, because file manager Nautilus does not ran... 
Can anyone help, please !</description>
		<content:encoded><![CDATA[<p>Unfortunately I have no idea about Linux  &#8230; but I managed to prodeed to the so  called advanced version, where clicking with the right mouse I get to System etc.<br />
I also found a list of software that can be checked and loaded.<br />
After loading a program named cast podder the message came: cannot run, because file manager Nautilus does not ran&#8230;<br />
Can anyone help, please !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: infader</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-249</link>
		<dc:creator>infader</dc:creator>
		<pubDate>Mon, 27 Oct 2008 18:53:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-249</guid>
		<description>Clearly i have seen here enlightened linux users,although i agree we sometimes have to venture in unknown ways,can&#039;t always afford the cost.
I had linpus installed,didn&#039;t had trouble installing packages for programming(only java,python and sql) when i gave ssh access to a friend(later told me he was trying to install kde)!!POW...no filesystem detected,well gave it a try to ubuntu 8.04.1 hardy heron...wireless problems,slow,a lot slow,graphic problems,hibernating problems,tried most tweaks,solve ones found anothers...can&#039;t blame me for trying and learned a lot in the process,but not viable yet...never had used ubuntu but i will try it in another more &quot;standard&quot; laptop,just liked what i have seen</description>
		<content:encoded><![CDATA[<p>Clearly i have seen here enlightened linux users,although i agree we sometimes have to venture in unknown ways,can&#8217;t always afford the cost.<br />
I had linpus installed,didn&#8217;t had trouble installing packages for programming(only java,python and sql) when i gave ssh access to a friend(later told me he was trying to install kde)!!POW&#8230;no filesystem detected,well gave it a try to ubuntu 8.04.1 hardy heron&#8230;wireless problems,slow,a lot slow,graphic problems,hibernating problems,tried most tweaks,solve ones found anothers&#8230;can&#8217;t blame me for trying and learned a lot in the process,but not viable yet&#8230;never had used ubuntu but i will try it in another more &#8220;standard&#8221; laptop,just liked what i have seen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: funkbag</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-228</link>
		<dc:creator>funkbag</dc:creator>
		<pubDate>Tue, 21 Oct 2008 21:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-228</guid>
		<description>Hi, I also prefer Ubuntu, but since installed 8.04.1 i have no lan connection and so i cannot go on, ....
hope for help</description>
		<content:encoded><![CDATA[<p>Hi, I also prefer Ubuntu, but since installed 8.04.1 i have no lan connection and so i cannot go on, &#8230;.<br />
hope for help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: macdamage</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-216</link>
		<dc:creator>macdamage</dc:creator>
		<pubDate>Sat, 11 Oct 2008 20:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-216</guid>
		<description>Heads up Guys go download mandriva 2009 one. Itl run live cd and if you want live install. Ive had it running trouble free all day on my AAO. It just works simple as no need to go into terminal &amp; imgetting about 2hrs battery on wireless only downside is a minute boot up but hey pros&amp;cons.</description>
		<content:encoded><![CDATA[<p>Heads up Guys go download mandriva 2009 one. Itl run live cd and if you want live install. Ive had it running trouble free all day on my AAO. It just works simple as no need to go into terminal &amp; imgetting about 2hrs battery on wireless only downside is a minute boot up but hey pros&amp;cons.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bt72</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-156</link>
		<dc:creator>bt72</dc:creator>
		<pubDate>Sat, 13 Sep 2008 22:37:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-156</guid>
		<description>I have installed ubuntu on the aspire one and am very happy. I followed a guide from the ubuntu website to get my wireless card working (as well as it? light). I was also able to get the usb issue sorted via this same guide. It was all to easy.
The only negative I can see is by moving to ubuntu my battery time decreased to 1hr 50 mins.

the web address for aspire one support with ubuntu is:
https://help.ubuntu.com/community/AspireOne</description>
		<content:encoded><![CDATA[<p>I have installed ubuntu on the aspire one and am very happy. I followed a guide from the ubuntu website to get my wireless card working (as well as it? light). I was also able to get the usb issue sorted via this same guide. It was all to easy.<br />
The only negative I can see is by moving to ubuntu my battery time decreased to 1hr 50 mins.</p>
<p>the web address for aspire one support with ubuntu is:<br />
<a href="https://help.ubuntu.com/community/AspireOne" rel="nofollow">https://help.ubuntu.com/community/AspireOne</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: useopenid</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-134</link>
		<dc:creator>useopenid</dc:creator>
		<pubDate>Thu, 04 Sep 2008 00:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-134</guid>
		<description>I wanted to try to stay with linpus and minimally change my aspire one, but it seems like every time I turn around, there&#039;s something missing.  The latest thing is that I need a vpn; I go through some of the instructions for installing one, and they don&#039;t work or things are missing --- basic things that seem to be part of the normal packages (e.g. &quot;pon&quot; and &quot;poff&quot; in the pptp package).  I&#039;m not sure whether it&#039;s more work to try to graft stuff onto linpus or to try to get another distro to work with the aspire one...</description>
		<content:encoded><![CDATA[<p>I wanted to try to stay with linpus and minimally change my aspire one, but it seems like every time I turn around, there&#8217;s something missing.  The latest thing is that I need a vpn; I go through some of the instructions for installing one, and they don&#8217;t work or things are missing &#8212; basic things that seem to be part of the normal packages (e.g. &#8220;pon&#8221; and &#8220;poff&#8221; in the pptp package).  I&#8217;m not sure whether it&#8217;s more work to try to graft stuff onto linpus or to try to get another distro to work with the aspire one&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: baekster</title>
		<link>http://www.aspireoneuser.com/2008/08/14/acer-aspire-one-ubuntu-netbook/comment-page-1/#comment-132</link>
		<dc:creator>baekster</dc:creator>
		<pubDate>Wed, 03 Sep 2008 04:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.aspireoneuser.com/?p=146#comment-132</guid>
		<description>First of all, let&#039;s start by saying that Linpus, Ubuntu, Fedora, Debian, Gentoo are all different distros, not different OS.  The OS (kernel) is Linux.  Note that with enough knowledge, you can tweak any of these distros to include custom drivers, remove custom drivers, remove unnecessary packages, change the boot process (udev, sysv, etc.).  It&#039;s so plainly obvious that a distro customized and optimized for Asus (Linpus) works much better than stock distros of any kind.  Personally, I use Ubuntu (I&#039;m an experienced user of most distros--Fedora/RH, Debian, Slackware, Suse, Gentoo.  And I just happen to like apt/dpkg pair better than others and more frequent release dates than debian (and debian unstable can become a little too unstable sometimes).  And others will like Gentoo since they can optimize the hell of whatever they need.  Some like Fedora because it is probably the best supported distro and perhaps arguably best-integrated security solutions like SELinux and easy-to-use iptables, etc.

So let&#039;s encourage the effort and give valid opinion of the article.  (Oh, did you know that you can cut the startup time by removing these modules, these services, switching the boot method, changing the filesystem, etc.) rather than uninformed &quot;keep Linpus as is&quot; comments.</description>
		<content:encoded><![CDATA[<p>First of all, let&#8217;s start by saying that Linpus, Ubuntu, Fedora, Debian, Gentoo are all different distros, not different OS.  The OS (kernel) is Linux.  Note that with enough knowledge, you can tweak any of these distros to include custom drivers, remove custom drivers, remove unnecessary packages, change the boot process (udev, sysv, etc.).  It&#8217;s so plainly obvious that a distro customized and optimized for Asus (Linpus) works much better than stock distros of any kind.  Personally, I use Ubuntu (I&#8217;m an experienced user of most distros&#8211;Fedora/RH, Debian, Slackware, Suse, Gentoo.  And I just happen to like apt/dpkg pair better than others and more frequent release dates than debian (and debian unstable can become a little too unstable sometimes).  And others will like Gentoo since they can optimize the hell of whatever they need.  Some like Fedora because it is probably the best supported distro and perhaps arguably best-integrated security solutions like SELinux and easy-to-use iptables, etc.</p>
<p>So let&#8217;s encourage the effort and give valid opinion of the article.  (Oh, did you know that you can cut the startup time by removing these modules, these services, switching the boot method, changing the filesystem, etc.) rather than uninformed &#8220;keep Linpus as is&#8221; comments.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
