My laptop is a Lifebook S-Series Model 6110. I got the following setup:
I used Partition Magic to repartition the drive. The laptop comes with a Windows backup partition in addition to the normal C partition. The partitions under Windows are NTFS, so I created a FAT32 partition that can be shared by Linux and Windows. Here is what my partitions look like:
Filesystem 1K-blocks Used Available Use% Mounted on /dev/hda8 3122956 2839220 125096 96% / /dev/hda9 14784680 2652668 11380976 19% /home /dev/hda6 8040840 1016996 7023844 13% /mnt/winPlus a 512M swap partition. The "/mnt/win" partition is the shared FAT32 partition.
The graphical install worked out of the box. My first time through I wasn't paying attention and choose wrong packages (no developer stuff i.e. gcc etc), so rather than trying to figure out what I missed I re-did the install.
I choose GRUB as my boot loader. GRUB is great, because it reads a configuration file during the boot process, so once installed you don't have to touch the boot block. To add new systems to boot, you just edit the config file.
The built-in modem is a WinModem of some kind and I haven't yet tried it - I don't use modems much.
I haven't yet tested the DVD under Linux and the CD-RW.
Here is my /etc/modules.conf:
alias parport_lowlevel parport_pc alias usb-controller usb-ohci alias usb-controller1 ehci-hcd alias sound-slot-0 i810_audio post-install sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -L >/dev/null 2>&1 || : pre-remove sound-slot-0 /bin/aumix-minimal -f /etc/.aumixrc -S >/dev/null 2>&1 || : alias usb-controller2 usb-uhci alias ieee1394-controller ohci1394 alias eth0 8139too
- this laptop does not support APM. It uses the new standard ACPI. With patched kernel basic stuff works, but I haven't yet gotten to try suspend and resume (I don't use these that much). See section below for ACPI details.
- the default Gnome-term has a terrible memory leak and if you run "top" in a gnome-term window, it will eat up all the swap space in 3 minutes. This is a known Gnome bug and I bet you there is a fix on Gnome Web Site. I don't care I use Xterm.
- the battery applet does not work as supplied. To get it to work properly with ACPI you have grab latest code from Gnome.org. See instructions below.
- default Acroread crashes in RH 8.0. I found a fix on the site: RH 8.0 Tips and Tricks
- I had a problem with Xemacs I built. It crashed when I tried to start it. I googled the problem and found that adding "--pdump" to the configuration and a rebuild fix the problem.
Out of the box RH 8.0 only supports APM. To get ACPI support you have to create a patched kernel.
First of all the required patch for the kernel can be found on Sourceforge. Take a look at the ACPI4Linux project. Or go directly to the Project page, where you can find the latest patches.
I used Kernel 2.4.20 from http://www.kernel.org and ACPI patch number: 20021212.
I followed the standard procedure to patch, configure and recompile the kernel (if you want to see my kernel ".config" file let me know). I had to unconfigure lots of the unneeded SCSI devices, otherwise I ran into compilation errors.
Once the new kernel was up and running I have these directories in my "/proc" file system:
dr-xr-xr-x 3 root root 0 Feb 3 22:42 ac_adapter -rw-r--r-- 1 root root 0 Feb 3 22:42 alarm dr-xr-xr-x 4 root root 0 Feb 3 22:42 battery dr-xr-xr-x 4 root root 0 Feb 3 22:42 button -rw-r--r-- 1 root root 0 Feb 3 22:42 debug_layer -rw-r--r-- 1 root root 0 Feb 3 22:42 debug_level -r-------- 1 root root 0 Feb 3 22:42 dsdt dr-xr-xr-x 3 root root 0 Feb 3 22:42 embedded_controller -r-------- 1 root root 0 Feb 3 22:42 event -r-------- 1 root root 0 Feb 3 22:42 fadt dr-xr-xr-x 2 root root 0 Feb 3 22:42 fan -r--r--r-- 1 root root 0 Feb 3 22:42 info dr-xr-xr-x 2 root root 0 Feb 3 22:42 power_resource dr-xr-xr-x 3 root root 0 Feb 3 22:42 processor -rw-r--r-- 1 root root 0 Feb 3 22:42 sleep dr-xr-xr-x 2 root root 0 Feb 3 22:42 thermal_zone
Battery and AC devices work properly. The processor device is fine - I can change the speed at which the processor runs.
However, the thermal and fan devices are not available. I don't understand why, although I've been studying the ACPI driver code. So, I cannot run a program to monitor and control the temperature of the CPU. I haven't played with sleep yet.
In any case the CPU fan seems to work OK and it comes on when the computer gets warm. But it seems to me that the fan runs more when under Windows, than under Linux. But maybe I'm just being paranoid.
The Gnome battery applet does not work with ACPI as distributed with RH 8.0. I fixed the code myself, but when I offered a patch to Gnome it turned out the problem was already fixed. So, to get the battery monitor working properly get the Gnome Applets 2.0.1 source, then replace the file "battstat/acpi_linux.c" with the version from Gnome's CVS. Then just rebuild and reinstall the battery applet.
So far I'm very happy with this notebook. It's been traveling with me to work every day - I often use it on the ferry. The battery life if pretty long - I think I could get 3 hours out of if if I wasn't using wireless network.
I still have to figure out and set up couple of things:
If you have any questions please email me. I'll be happy to answer, if I can.