This documents the installation of GNU/Linux on a Fujitsu-Siemens notebook Amilo D. The distribution was SlackWare 8.0. Aparanetly the hardware detection capability of Kernel 2.4 is much superior to that of 2.2. You find a newer, and more successful effort here.
Note that Fujitsu-Siemens does not support Linux on their notebooks. This is NOT an official site of Fujitsu-Siemens!
Here are the Kernel messages dmesg.
Device Start End Blocks Id System /dev/hda1 1 1 8001 83 Linux nativeThis is how I partitioned:
Device Start End Blocks Id System
/dev/hda1 1 2 16033+ 83 Linux native {/boot}
/dev/hda2 3 1206 9671130 83 Linux native {/}
/dev/hda3 1207 1222 128530 82 Linux swap {swap}
The standard installation procedure went smoothly and installed a full
system with Kernel 2.2.19, XFree 4.1.0 and KDE 2.1.2. But it failed to recognize
neither the built in modem nor the Ethernet LAN interface.
00:10.0 Communication controller: Lucent Microelectronics LT WinModemA posting in LKLUG took me to Linmodems.org and then to heby.de/ltmodem/.
I downloaded the ltmodem-6.00b9.tar.gzand realized that the kernel tree and the running kernel have to be in place. So the next step was a standard kernel recompilation. Here were the steps with a single comment Dont't forget to include Plug-and-Play support!
# file /usr/src/linux
/usr/src/linux: symbolic link to linux-2.2.19
# cd /usr/src/linux
# make mrproper
# make menuconfig {Don't forget to include PnP Support!}
# make dep
# make clean
# make module
# make modules_install
# make bzImage
# cp arch/i386/boot/bzImage /boot/bzImage-2.2.19
add to /etc/lilo.conf
image = /boot/bzImage-2.2.19 root = /dev/hda2 label = Linux-2.2.19 read-onlyrun lilo
# lilo Added Linux * Added Linux-2.2.19Now I can compile the LT driver and load the module. Following its docs :
# cd /usr/local/src
# tar xzvf ltmodem-6.00b9.tar.gz
# cd ltmodem-6.00b9
# ./build_module {See output}
# ./ltinst2 {See output}
# ./autoload {See output}
Testing the modules
# insmod -p lt_modem Using /lib/modules/2.2.19/misc/lt_modem.o # insmod -p lt_serial Using /lib/modules/2.2.19/misc/lt_serial.oGot the ppp configured using pppsetup. This is the /etc/ppp/options file. Run ppp-go and Voila it works!
Still couldn't get the LAN, nor Sound working.Timo Weggen (tweggen_at_loewe-komp.de) reported that SuSE 7.3 worked out of the box - modem, LAN and sound! (comp.os.linux.portable 2002-01-02)
Filippo Panessa (kalem_at_linux.it) reported that Debian Woody works too.
I must check with Kernel 2.4.9 or higher.