From Fedora Project Wiki

(atheros wireless note. grammar.)
Line 37: Line 37:
==Notes on performance==
==Notes on performance==
If you have the 8 GB SSD/512MB RAM version the performance may not be so good. Linux tries to swap often, and the SSD write speed is too slow (~ 4MB/sec) to do much swapping. Use a lighter desktop like XFCE or add more RAM (which is not easy; you have to fully disassemble the Aspire One).
If you have the 8 GB SSD/512MB RAM version the performance may not be so good. Linux tries to swap often, and the SSD write speed is too slow (~ 4MB/sec) to do much swapping. Use a lighter desktop like XFCE or add more RAM (which is not easy; you have to fully disassemble the Aspire One).
If you have upgraded the RAM (1.5GB Max), it may help to disable swap, as well as to move /tmp, /var/tmp, and /var/log off of the flash and onto tmpfs ramdisk. It may also help to use a journal-less ext2 VS ext3, and to include the "noatime,nodiratime" options to limit unnecessary writes.
<pre>
/dev/sdXX    /          ext3    defaults,noatime,nodiratime        1 1
tmpfs        /tmp        tmpfs    defaults                          0 0
</pre>

Revision as of 21:21, 28 August 2008

This page is about installing and configuring Fedora on the Acer Aspire One netbook. Please contribute if you can.

What doesn't yet work

  • Wireless (works with new Atheros driver in 2.6.27 rawhide kernel)

Installation

You can install Fedora by using an external USB CD/DVD reader, a USB dongle, or via PXE netboot.

Live CD/USB

If you boot a Fedora 9 live you'll encounter some non-fatal errors:

  • You'll see the ethernet driver fail to load and print a backtrace.
  • The boot will hang while loading the HD audio module. Just wait a minute and the boot will continue.

You can continue the installation and upgrade later. These two problems are solved in the current Fedora. To update the distribution so that the ethernet and audio works you have to either connect to the internet using a USB WiFi Dongle or by manually downloading a newer kernel rpm. If you choose the former you should delete or disable the "rt8169" and "snd_hda_intel" modules so that they doesn't mess-up the kernel during boot and make the network configuration impossible.

Installation DVD

"TODO"

Miscellanoues setup

SD Card Reader

The card reader doesn't work out of the box. To make it work do:

echo "modprobe pciehp" >> /etc/rc.d/rc.local
echo "setpci -d 197b:2381 AE=47" >> /etc/rc.d/rc.local
echo "blacklist jmb38x_ms" > /etc/modprobe.d/blacklist_msreader

Both card readers will work. The "special" one on the left for adding storage is seen just another plain card reader. Use LVM if you want to extend the internal SSD. Note that with the reader on the right won't work with Memory Sticks. No one uses them so it's not a big problem.

Notes on performance

If you have the 8 GB SSD/512MB RAM version the performance may not be so good. Linux tries to swap often, and the SSD write speed is too slow (~ 4MB/sec) to do much swapping. Use a lighter desktop like XFCE or add more RAM (which is not easy; you have to fully disassemble the Aspire One).

If you have upgraded the RAM (1.5GB Max), it may help to disable swap, as well as to move /tmp, /var/tmp, and /var/log off of the flash and onto tmpfs ramdisk. It may also help to use a journal-less ext2 VS ext3, and to include the "noatime,nodiratime" options to limit unnecessary writes.

/dev/sdXX    /           ext3     defaults,noatime,nodiratime        1 1
tmpfs        /tmp        tmpfs    defaults                           0 0