From Fedora Project Wiki

mNo edit summary
Line 18: Line 18:
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.
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.
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.
A good place to start, is using the latest fedora live cd. Then allmost everything on the Acer Aspire One A-110l works out of the box.


===Installation DVD===
===Installation DVD===

Revision as of 09:26, 24 January 2009

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

What doesn't yet work

  • Everything working after waking from suspend
  • Suspend, Hibernate in general on F10 Beta.
  • Dual Head Monitors, F10 goes into a loop trying to set resolution.

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.

A good place to start, is using the latest fedora live cd. Then allmost everything on the Acer Aspire One A-110l works out of the box.

Installation DVD

"TODO"

Miscellaneous setup

SD Card Reader

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

echo "modprobe pciehp" >> /etc/rc.d/rc.local
echo "modprobe sdhci" >> /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. Don't try to suspend while using the card reader on the left: with ext2/ext3 partitions the memory could be completely formatted!

Wireless Activity LED

To enable the wireless status LEDs install the madwifi drivers from the RPM-Fusion repositories

~# yum install madwifi

and add the following lines to /etc/sysctl.conf:

dev.wifi0.ledpin = 3
dev.wifi0.softled = 1

then restart. This works in F9 and F10.

Built-in Camera

Pretty simple actually, just had to figure it out:

yum install ucview unicap

Once installed, ucview program is in 'Multimedia' (KDE)

Notes on performance

If you have the 8 GB SSD/512MB RAM version, the flash performance may not be so good. Linux tries to swap often, and the SSD write speed is too slow (~ 4MB to 7.8MB/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 losing the warranty).

If you have upgraded the RAM (1.5GB Max) or you haven't an heavy load, 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" mount options in /etc/fstab to limit unnecessary writes.

/dev/sdXX    /           ext2     defaults,noatime,nodiratime        1 1
tmpfs        /tmp        tmpfs    defaults                           0 0
tmpfs        /var/tmp    tmpfs    defaults                           0 0
tmpfs        /var/log    tmpfs    defaults                           0 0

If you really want to increase performance use a fast SSD memory (15 Mb/sec) on the left reader and mount on it at least /home, /var and /usr.

Misc:

  • On SSD it is also tremendously helpful to disable your browsers' disk cache, or to relocate it to tmpfs.
  • Disabling selinux can buy you a small (7%) amount of performance, if security isn't a concern.
  • Disabling unnecessary services can almost cut the bootup time in half.

Some tricks

Add this to /etc/rc.d/rc.local

# Economize the SSD
sysctl -w vm.swappiness=1               # Strongly discourage swapping
sysctl -w vm.vfs_cache_pressure=50      # Don't shrink the inode cache aggressively
 
# As in the rc.last.ctrl of Linpus
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo ondemand > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
cat /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate_max > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate
 
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
echo 20 > /proc/sys/vm/dirty_ratio
echo 10 > /proc/sys/vm/dirty_background_ratio
 
echo 1 > /sys/devices/system/cpu/sched_smt_power_savings
echo 10 > /sys/module/snd_hda_intel/parameters/power_save
echo 5 > /proc/sys/vm/laptop_mode
 
#Decrease power usage of USB while idle
[ -w /sys/bus/usb/devices/1-5/power/level ] && echo auto > /sys/bus/usb/devices/1-5/power/level
[ -w /sys/bus/usb/devices/5-5/power/level ] && echo auto > /sys/bus/usb/devices/5-5/power/level

Edit the file /boot/grub/grub.conf and add elevator=noop to the kernel-line

kernel /vmlinuz-2.6.27.9-159.fc10.i686 ro root=/dev/sda2 rhgb quiet elevator=noop