Installing Debian on a Dell Latitude X200

March 9th, 2003  |  Published in hardware, linux  |  5 Comments

UPDATE: more notes written recently

My new laptop arrived this week – a Dell Latitude x200. And it’s marvellous. Wonderfully lightweight, good battery life for such a small box, good keyboard and a really clear bright screen. After a quick look at Windows XP, which I’d never seen properly before, I set about installing Linux on it. The Linux on Laptops Dell page has links to some useful bootstrapping information, but there were a few things I found pretty hard to work out. Here are my notes on those things.


Re-partitioning the disk
The machine came with Windows XP installed on a single partition that covered the entire 30 gig disk. I didn’t want to delete it in case it comes in useful for something (games, perhaps), but I did want to scrunch it down to some sort of reasonable size. I used to have a copy of Partition Magic but it’s a pre-XP version and I couldn’t find it anyway. The obvious free alternative is GNU Parted, but it runs under Linux. The laptop doesn’t come with a floppy drive, so bootdisks are no use. Even a bootable rescue CD isn’t that much use as I couldn’t find any distribution that had firewire drivers in its rescue kernel. The laptop’s BIOS can boot off the firewire DVD drive, but as soon as Linux takes control the drive effectively disappears and so the boot sequence can’t be completed.

The answer turns out to be Knoppix, a fantastic piece of packaging work that gives you a complex Linux system (X, gnome, kde, mozilla, openoffice, etc) that runs entirely off a CD. It can’t run off a firewire CD either, but it turns out that if you copy the KNOPPIX directory from its CD onto the C: drive inside windows then boot off the CD, the initial ramdisk intelligently searches your hard disk and mounts from the KNOPPIX directory when it can’t find a CD. Parted is in Knoppix, and it was simple to resize the XP partition down to 5 gig following the documentation on the GNU site. Windows XP still boots fine, and I was able to go ahead with Linux install using a Debian CD copied to the C: drive.

X Windows
The graphics chipset on the x200 is an Intel i830M. There is some support in XFree86 4.2 but it’s missing the XVideo and RENDER extensions, which are very useful for media playing and pretty fonts. Happily, the recently-released X version 4.3.0 has improved support. I’m currently using experimental debs while it makes its way into sid. The apt sources are:
deb https://www.penguinppc.org/~daniels/sid/$(ARCH) ./
deb-src https://www.penguinppc.org/~daniels/sid/source ./
Here’s my XF86Config-4. There’s nothing unusual in there.

Firewire DVD+CDRW drive
The drive (“Vendor: HL-DT-ST Model: RW/DVD GCC-4240N Rev: D110” according to syslog) works with kernel 2.4.20 using the ohci1394 and sbp2 modules. Reading and writing CDs gave no problems, but playing DVDs with mplayer or ogle shows a lot of jerkiness. I haven’t yet found a hack or firmware update that makes the DVD playback region-free.
Update: I tried playing DVDs again last night and saw good smooth playback. I think this might be due to the automatic power-based CPU speed adjustment. With the default BIOS settings, the laptop switches its speed down to 400Mhz to save power when on batteries. Playing a DVD with power plugged in (and so running at 933Mhz), ogle used around 50% CPU, which implies that 400Mhz wouldn’t be enough power. I assume that I was running on batteries when I wrote the above. Ogle also didn’t seem to mind playing Region 1 discs as long as I set the region in /etc/oglerc. All good news. For the moment I’ve changed the BIOS setting to never slow the CPU, even on batteries. It’d be nice to have control over the setting at runtime so I could make a choice based on my usage. CPUFreq seems to be the solution but the page says it isn’t being maintained any more.

Brightness softkeys
The screen’s brightness can be adjusted using the Fn+Up and Fn+Down keys. Oddly, doing this freezes the machine with the stock Debian 2.4.20 kernel. The solution is to recompile the kernel with the option “Local APIC support on uniprocessors” (under “Processor type and features”) turned off, and the problem goes away.

Modem
The modem works with the PCTEL linux drivers using the i8xx hal option when compiling.

Battery metering
Using 2.4.20, the APM battery metering seems a little incomplete. Gnome’s battery status applet reports “N/A” rather than showing a percentage battery remaining. The “apm” command shows a percentage but no estimated remaining time. I haven’t found any options that help.

Responses

  1. kbob says:

    March 11th, 2003 at 1:09 am (#)

    Thanks for the Knoppix tip. I’d tried booting Knoppix on my Sony Z505-RX (which was just as shiny and new as your Dell, about three and a half years ago (-: ), but Knoppix couldn’t see the PCMCIA CD-ROM drive.

    I copied the KNOPPIX directory to the C: drive using Windows 98 (also shiny and new once) and booted the CD just as you described. It works!

    This is especially helpful as I’m giving a KNOPPIX presentation at the local LUG[1] this weekend.

    Thanks!

    [1] http://www.euglug.org/

  2. Jim Ley says:

    March 26th, 2003 at 12:39 pm (#)

    Hmmm, where you at Christmas, I just dumped XP, partitioned and re-installed it. mind you I had to re-install XP anyway really as default installs of it are truly awful.

  3. kjw says:

    May 4th, 2003 at 1:30 am (#)

    I was able to boot my dell from CD by first using the firewire cd drive, and then switching to a pcmcia cd drive to do the actual install.

    In my case, it was a sony cd drive, but shows up as a generic pcmcia removable media drive, nothing special.

  4. Andrew Myers says:

    December 21st, 2003 at 4:22 pm (#)

    kbob —

    I was able to boot Knoppix on my z505s by using these options:

    knoppix ide2=0x180,0x386 nopcmcia

    The z505’s (well, at least the one I have, dunno if this is true of ALL of them) do a bit of weird trickery to boot off CD — at boot time, it fudges things so’s that the cdrom appears to be on a third ide interface (ide2, rather than ide0 or ide1).

    Note — this only is true if you have the Sony VAIO pcmcia cdrom drive (the pcga-cd51 in my case).

    If you don’t boot off CD, it works like a regular pcmcia cdrom drive.

  5. aaron says:

    April 24th, 2004 at 8:06 am (#)

    Thanks for the Knoppix tip also. It realy helped me.