most of the stuff on the community page (here)is relevant. But I had to do some stuff from the Hardy section as well.

  • WIFI Lights
  • SD Card stuff
  • Webcam stuff
  • Audio
  • WIFI Module
  • XOrg.conf optimisations
/etc/rc.local: looks like
#WIFI lights
sysctl -w dev.wifi0.ledpin=3
sysctl -w dev.wifi0.softled=1


#exec SD card script
/usr/local/sbin/jmb38x_d3e.sh &>/var/log/jmb38x_d3e.log &

exit 0

/etc/default/linux-restricted-modules-common:

DISABLED_MODULES="ath_hal"

/etc/modules:

fuse
lp
ath_pci
pciehp

/etc/modprobe.d/aspireone:

####################################################################
# Module options for the Acer AspireOne
#
# Enable USB card reader
options pciehp pciehp_force=1
install sdhci for i in 2381 2382 2383 2384; do /usr/bin/setpci -d 197b:$i AE=47; done; /sbin/modprobe --ignore-install sdhci

also download the jmbXXXX script:

wget http://petaramesh.org/public/arc/projects/AcerOne_Ubuntu/jmb38x_d3e.sh
sudo chmod 754 jmb38x_d3e.sh
sudo mv jmb38x_d3e.sh /usr/local/sbin/

FOR SOUND: /etc/modprobe.d/options:

# enable sound after suspend on Aspire One LP#249961
options snd-hda-intel model=acer

FOR WIFI: installing madwifi-hal:

wget http://snapshots.madwifi-project.org/madwifi-hal-0.10.5.6-current.tar.gz
sudo apt-get install build-essential linux-headers-$(uname -r)
mkdir madwifi-hal-current
tar -xzf madwifi-hal-0.10.5.6-current.tar.gz
cd madwifi-hal-0.10.5.6*/
make
make install
modprobe ath_pci

XORG TWEAKS

Note that when i used the second monitor the xor.conf was re-written with a virtual screen section - compiz didnt work with this and i replaced the xorg.conf contents with the stuff below. /etc/X11/xorg.conf:

Section "Device"
	Identifier	"Configured Video Device"
	Option "MonitorLayout" "LVDS,VGA"
        Option "Clone" "true"
        Option "AccelMethod" "EXA"
        Option "MigrationHeuristic" "greedy"
        VideoRam       229376
        Option "CacheLines" "1980"
EndSection

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
EndSection

This wiki is licensed under a Creative Commons 2.0 license
XWiki Enterprise 1.6.1.13621 - Documentation