Installing Ubuntu 9.04 Netbook Remix (Asus Eee 1000HE)

2009/05/05 by Paulo Pereira

~/categories/Linux #Linux #Ubuntu #Ubuntu 9.04 #Jaunty Jackalope #Netbook Remix #Asus Eee 1000HE

I have a new Asus Eee 1000HE. It came with Windows XP, but I want to try out Ubuntu Netbook Remix.

The eee don’t have an optical drive, so we need to install it using an usb drive.

The goal is dual booting Windows XP and Ubuntu. I want Eee to become my main Windows machine; this will allow me to format my Desktop machine to have only have Ubuntu (next release with default ext4 filesystem). I use Windows only to sync my iPod Touch so, this is a great solution.

Download and “Burn” a USB Drive

md5sum ubuntu-9.04-netbook-remix-i386.img

Install from usb

It’s easy. Boot from the usb drive (check the BIOS) and install like any other Ubuntu release.

This is a tested machine so I didn’t play that much with the Live Session.

Hard Drive Partition Layout

I kept Windows installed and I will need a NTFS shared partition to keep all my tunes.

There was a hidden partition, basically used to restore the system. Basically is a pre-installation of Windows. I didn’t kept it.

I don’t have the hard drive all partitioned yet. Will do soon.

/dev/sda
  /dev/sda1    ntfs    WinXP     20 GB    -- primary
  /dev/sda2    ext3   /        9.54 GB    -- primary
  /dev/sda3   swap          1.91 GB    -- primary
  /dev/sda4                            -- extended
  /dev/sda5   ext3     /home      9.54 GB
  /dev/sda6    ntfs    tunes      40 GB
  /dev/sda7   ext3   /storage   9.54 GB

I created the sda7 partition after installing Ubuntu, so I needed to do the following to mount the new partition at boot time:

sudo vol_id -u /dev/sda7
sudo mkdir /storage
sudo gedit /etc/fstab
UUID=ad02cb4e-f9cf-491a-b661-d96ed2c456be /storage        ext3    relatime        0       2
sudo chown -R *youruser*:*youruser* /storage
sudo chmod -R 755 /storage

Post-install: Wireless

The wireless wasn’t working. I could connect, but no Internet connection.

Here’s what I did, after a quick look around:

cd /lib/modules/2.6.28-11-generic/kernel/drivers/staging/rt2860/
sudo mv rt2860sta.ko rt2860sta.bak
cd /lib/modules/2.6.28-11-generic/kernel/drivers/staging/rt2870/
sudo mv rt2870sta.ko rt2870sta.bak
sudo apt-get install dkms
chmod +x rt2860-dkms_1.7.1.1_all.deb
./rt2860-dkms_1.7.1.1_all.deb
sudo apt-get install linux-backports-modules-jaunty

Post-Install: Software Sources

Added the following:

deb http://ppa.launchpad.net/do-core/ppa/ubuntu jaunty main
deb http://packages.medibuntu.org/ jaunty free non-free
deb http://linux.getdropbox.com/ubuntu jaunty main
deb http://ppa.launchpad.net/openoffice-pkgs/ubuntu/ jaunty main

Post-install: Extra Software

If you have more tips about using or optimizing the eee please contact me or post a comment :-)