This guide aims to help you install Ubuntu 8.04.1 LTS on the Acer Aspire One (8gb/512MB model specifically). Many thanks to the members of this forum, as many of the steps here were suggested by others. I'm just consolidating the info I have gleaned with my personal expeciance to try and help some people get started. Here is the status of the components:
Fully functional:
Suspend / Resume
Video (with Desktop effects)
Wireless Networking
Wired Networking
Webcam
USB
Partial Function:
Card Readers (only work if card in when booting, researching fix)
Audio - there is sound, but by default it will not mute speakers when
headphones connected. Upgraded ALSA allows headphone detection but
sound lost on suspend (researching fix)
Pre-Requs:
Before you begin you will need the following:
A copy of 8.04.1 Hardy Heron. This is the latest version. If you downloaded the ISO a while ago, it may be 8.04.0. This version will not function.
A 1+ GB memory key that can be formatted.
A copy of the liveUSB DEB.
(http://ppa.launchpad.net/probono/ubuntu ... l/liveusb/).
A wired network connection.
Another computer, with network access.
Step One: Preperation
Copy the LiveUSB .deb file to a memory key (it can be the one were going to format), and remove the memory key.
Boot to the 8.04.1 Live CD on your other computer. We want the first option on the boot menu (Try Ubuntu). When you have booted to the Live CDs desktop insert the memory key with the LiveUSB .deb on it and follow the prompts to install it. Once its installed we will use the application to create a live usb device. Start it up from System -> Administration -> Install LiveUSB. Select the target device and click Execute. It will give you a warning about data loss, but continue.
Step Two: Install Ubuntu
Once that is done, shut down the other computer and remove the memory key. Shut down your Aspire One and insert the memory key that we just used. Turn on the One and tap F12 to bring up the boot menu. Choose the boot to USB option. This will boot you to the LiveUSB stick, and allow you to install Ubuntu. Install it like normal. Installation (file copy) will take a LONG time (hour +). You may also get an error about setting up a mirror. Don't worry about it, its non-fatal.
Step 3: Tweak / Fix
So now we should have an installed Ubuntu system. At this point wire your One into the network. If you use DHCP it should pick up an IP address automatically. The first thing you will want to do is updates, since the wireless driver needs to be reinstalled after every kernel update. Open a terminal (Applications -> Accessories -> Terminal). Do the updates:
- Code: Select all
sudo apt-get update
sudo apt-get upgrade
Now we need to grab the wireless driver, and the things we need to build it:
- Code: Select all
wget http://snapshots.madwifi.org/special/madwifi-ng-r3366+ar5007.tar.gz
tar xzvf madwifi-ng-r3366+ar5007.tar.gz
cd madwifi-ng-r3366+ar5007
sudo apt-get install build-essential linux-headers-$(uname -r)
And we build, install, and make it perminant...
- Code: Select all
make
sudo make install
sudo echo ath_pci >> /etc/modules
Everytime there is a kernel update you will need to perform the following steps to make the wireless work. Go to the directory (madwifi-ng-r3366+ar5007) and run:
- Code: Select all
make clean
make
sudo make install
You may need to reboot after that.
To get headphones detected, but loose sound after suspend follow the steps here https://help.ubuntu.com/community/HdaIntelSoundHowto
I'm still looking into things to make everything "just work" but this is where I'm at for now.
Hopefully this helps,
Jeff
