This tutorial is based on information from Andreas Bucher ([url="http://www.it-academy.cc/article/1530/Linux+auf+USBStick+installieren.html"]http://www.it-academy.cc/article/1530/L ... ieren.html[/url]) and petr-kubanek ([url="https://help.ubuntu.com/community/UbuntuServerFlashDriveInstaller"]https://help.ubuntu.com/community/Ubunt ... eInstaller[/url]). Needed: - USB-stick ~1GB - Running Linux OS - Internet connection Steps: 1. Download xubuntu-8.10-alternate-i386.iso (Intrepid Ibex) from [URL]http://www.xubuntu.org[/URL]. 2. Download respective (version dependend) initrd.gz and vmlinuz from [url="http://archive.ubuntu.com/ubuntu/dists/intrepid/main/installer-i386/current/images/hd-media/"]http://archive.ubuntu.com/ubuntu/dists/ ... /hd-media/[/url] 3. Open a shell, become root and type: [code]fdisk -l[/code] to identify your flash drive. Here we assume it is /dev/sda and go on with: [code] apt-get install syslinux mtools mbr umount /dev/sda cfdisk /dev/sda [/code] create a new partition, make it primary, make it bootable, choose type FAT16 and finally write partition table; then go on with: [code] mkfs -t vfat /dev/sda1 mkdir -p /media/flash mount -t vfat /dev/sda1 /media/flash syslinux -s /dev/sda1 mkdir -p /media/iso mount -o loop xubuntu-8.10-alternate-i386.iso /media/iso cp -r /media/iso/isolinux/* /media/flash mv /media/flash/isolinux.cfg /media/flash/syslinux.cfg mkdir -p /media/flash/install cp vmlinuz /media/flash/install cp initrd.gz /media/flash/install cp xubuntu-8.10-alternate-i386.iso /media/flash install-mbr /dev/sda umount /media/flash [/code] Note to use the correct paths for xubuntu-8.10-alternate-i386.iso and vmlinuz and initrd.gz To enable WLAN type [code] apt-get install linux-backports-modules-intrepid [/code] after the installation. More information can be found at [url="http://wiki.ubuntuusers.de/Baustelle/Acer_Aspire_One#WLAN-einrichten"]http://wiki.ubuntuusers.de/Baustelle/Ac ... einrichten[/url] Cheers, Sebastian