paapereira.xyz

Installing Ubuntu 9.04 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

1md5sum 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.

1/dev/sda
2  /dev/sda1    ntfs    WinXP     20 GB    -- primary
3  /dev/sda2    ext3   /        9.54 GB    -- primary
4  /dev/sda3   swap          1.91 GB    -- primary
5  /dev/sda4                            -- extended
6  /dev/sda5   ext3     /home      9.54 GB
7  /dev/sda6    ntfs    tunes      40 GB
8  /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:

1sudo vol_id -u /dev/sda7
1sudo mkdir /storage
1sudo gedit /etc/fstab
1UUID=ad02cb4e-f9cf-491a-b661-d96ed2c456be /storage        ext3    relatime        0       2
1sudo chown -R *youruser*:*youruser* /storage
2sudo 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:

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

Post-Install: Software Sources

Added the following:

1deb http://ppa.launchpad.net/do-core/ppa/ubuntu jaunty main
2deb http://packages.medibuntu.org/ jaunty free non-free
3deb http://linux.getdropbox.com/ubuntu jaunty main
4deb 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 :-)

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