There are a few more packages to pick out from Debian that will make this machine easier to live with. I use Enlightenment and GNOME, but I'm sure KDE has similar packages or can make use of these in particular.
Another useful utility to get it hdparm. It allows you to set the hard disk parameters and improve performance.
Typing hdparm -i /dev/hda shows a drive and controller's
parameters and settings. According to this (under Linux 2.2.5), the included
disk can support PIO to mode 4, DMA mode 0 only, and a maximum MultSect value
of 16.
I decided to make an init script to set the hard disk's parameters on bootup. It just runs hdparm with my desired settings:
hdparm -m16 -u1 -c1 /dev/hda
I couldn't get DMA working under Linux 2.2.5, though it did work under earlier kernels. I'm not sold on the value of DMA, so it didn't worry me.
Try using hdparm -Tt /dev/hda to test your hard disk's speed.