Xubuntu on a HP EliteBook 8530w Linux On Laptops

Dominik Regli <regli_dominik@gmx.ch>, 2008-11-10

Introduction

On thise site I want to show my experiences I've made while installing Xubuntu on my HP EliteBook 8530w. I will keep it brief and leave my explanations on the essential parts - further informations you will find on the web using google for sure!

Installation

-  First of ll, I downloaded xubuntu-8.10-rc-alternate-amd64.iso from the (X)Ubuntu web site. I had to use the release candidate since the final version has not been released yet. In my opinion, the alternate installation CD provides a much more reprodutive installation than the normal one. So I took the alternate installer.
-  After burning the ISO on a CD, I was able to boot from. To get the system starting up correctly, I needed to add the boot option 'acpi=off'. After that, the Xubuntu alternate installer started fine.
-  Unfortunately, the installer was not able to mount the cd drive during the installation. So I had to do a small workaround:
  1.  I copied the xubuntu-8.10-rc-alternate-amd64.iso CD Image, which I downloaded before to a USB-drive.
  2.  At the point of installation, where the installer tries to mount the CD drive and fails on doing that. I switched to a console and mounted the image from the USB drive instead the real CD.
mkdir /stick
mount -t vfat /dev/sdb1 /stick
modrpobe loop
mount -o loop -t iso9660 /stick/xubuntu-8.10-rc-alternate-amd64.iso /cdrom
		  
  3.  Unluckily, this causes the installer to fail when it tries to determine the release codename. To resolve this problem go back in the installer menu to the step 'load installer components from cd' and install the machinery for detecting and loading ISOs. Unmount '/cdrom' again and continue the installation. Now the ISO should get detected automatically and the installation goes thru.
Further information about this you might find here.
-  After the installation I had to add the parameter 'acpi=off' to the kernel configuration of grub in '/target/boot/grub/menu.lst', since I did not get ACPI working at this time.
-  Now I could boot my system the first time!

Hardware

Graphics Adapter

The NVIDIA Quadro FX 770M graphics adapter worked very fine after installing the proprietary NVIDIA driver version 177. To do that, I used Ubuntu's 'Hardware Drivers' manager.

Sound

To get audio work, I had to add the line
snd-hda-intel model=laptop
'/etc/modprobe.d/alsa-base'. Here you should find further informations on this.

ACPI / Suspend / Hibarnate

After disbabling "Fan always ON on AC Power" under System Config -> Device Config in the system BIOS, I could remove the parameter 'acpi=off' in /boot/grub/menu.lst. (See also here.)
From now on, hibernate and suspend worked without any further configuration. Cool!