Last updated

Ubuntu 6.10 Live DVD on the Apple MacBook

Since I teach various Linux courses at Fontys Centrum IT, I want to run a live CD or DVD on my MacBook. First off, here are my specs:

  • Apple MacBook (White)
  • Intel Core Duo 2.0Ghz
  • 1.0Gb RAM
  • 13.3" 1280x800 TFT
  • 60 Gb Internal Harddisk
  • 300 Gb External FireWire harddisk

As my Live medium I chose the Ubuntu Linux 6.10 Live DVD. This DVD has several nice options (install server, for example) that I like. It also can boot up in a live desktop environment. ~ As a matter of fact, everything I need works out of the box. Wireless works fine, my mouse (USB Logitech) works, the FireWire harddisk (which has a FAT32 filesystem, so I can hook it to my girl friend’s Windows PC) works perfectly.

There are only two things that didn’t work.

  1. Xvid codecs are missing, so I can’t watch my Prison Break episodes from the Live environment, but that’s perfectly fine. That’s not what I need the live environment for.

  2. The screen resolution can only be set to a maximum of 1024x768. As I mentioned before, the TFT has a native resolution of 1280x800. Because of the scaling, my screen doesn’t look as sharp and sexy as it should.

In order to solve this problem I had to take a few, rather easy, steps.

To get started, let us assign a password to the default ubuntu user.

1sudo passwd ubuntu

Now enter something that you’ll remember easily, twice.

In order to get Ubuntu to recognize the native screen resolution automatically, we’ll need a special package: 915resolution. Since the MacBook has an Intel 945 graphics chipset, we can use this tool. But, this tool is not in the default package respository. It’s in the Universe.

So, we now need to change /etc/apt/sources.list and add the universe repository. This is rather easy, because these repositories already exist, but are commented out. Just open up /etc/apt/sources.list and uncomment the two universe lines. Make sure your sources.list looks like this:

 1deb http://archive.ubuntu.com/ubuntu edgy main restricted
 2deb-src http://archive.ubuntu.com/ubuntu edgy main restricted
 3
 4## Uncomment the following two lines to add software from the 'universe'
 5## repository.
 6## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
 7## team, and may not be under a free licence. Please satisfy yourself as to
 8## your rights to use the software. Also, please note that software in
 9## universe WILL NOT receive any review or updates from the Ubuntu security
10## team.
11deb http://archive.ubuntu.com/ubuntu edgy universe
12deb-src http://archive.ubuntu.com/ubuntu edgy universe
13
14deb http://security.ubuntu.com/ubuntu edgy-security main restricted
15deb-src http://security.ubuntu.com/ubuntu edgy-security main restricted

Now, we can update our system and install the 915resolution package.

1apt-get update
2apt-get install 915resolution

You’ll notice that 915resolution spits out a lot of information on your chipset and native resolution. You should check here that the 1280x800 resolution has been detected.

Now you’re all set. Well, you’ll need to restart the X Server in order for it to recognize the newly discovered resolution. I basically pressed CTRL-ALT-BACKSPACE to kick the X Server. I’m presented with a login screen. Here I login as ‘ubuntu’ with the password I specified earlier.

If everything went fine, you’ll now get a clear and sharp display of your Ubuntu life desktop.

I also turned on sub-pixel smoothing in System -> Preferences -> Fonts to get some sexier and smoother looking fonts.

That’s all. I can now boot-up the Ubuntu Live DVD and get the native resolution for my MacBook.

For those who want to keep the native resolution on their installed Ubuntu, just install the 915resolution package mentioned above and you’re set. Easy as that.