I installed Ubuntu 8.10, from the distribution CD (in a USB CD/DVD reader). I used a single partition ext2 on the SSD (8G). No swap initially, I'm still experimenting …
I found very useful the instructions provided on this page
The main problem was the wireless. Two problems actually:
I like to read and annotate documents by handwriting. I have a small Wacom tablet (it is a Sapphire, actually, but newer ones work as well) and I use Jarnal application to write on PDF files. This works pretty fine on the Aspire One with Ubuntu 8.10. Just download the application, run it with the Wacom tablet attached and annotate any PDF document (open new document on PDF background menu item). The document can be saved in jarnal format (notes only or notes+PDF) or you can choose to Print it “with options”. Options include PDF exporting of the file.
I got the suggestion of configuring the system without swap. It spares space on the SSD and hopefully avoids much writing on it. My configuration has only 512M of main memory, which is fine for “normal” usage (web, email, some office stuff). However there are cases that require more memory. Jarnal (the scribbling application) is quite demanding. I found convenient to have a swap file to be activated just in case of need. I have a 8G SD permanently mounted on the left SD slot. I created a swapfile on it:
dd if=/dev/zero of=/media/Kingston/swapfile bs=1024 count=512K
then I made it a swap fielsystem
mkswap /media/Kingston/swapfile
Now I activate/deactivate it as needed with a
swapon /media/Kingston/swapfile swapoff /media/Kingston/swapfile
command. All these command must be issued from the root account, of course.