I think there are two reasons to a slow server-manager answer:
memory and disk
CPU isn't a importa matter because most of time isn't used. You'll use CPU to do backup (compressing)... not to read something from disk.
Why DISK is important?
Because if you have a old disk (< 20Gb) you must have a <1Mb cache on HDD.
If you're using a very old computer (< PIII) you must have just UDMA2 (< 66Mbps) support. And you can even have no UDMA enabled!
Why memory is important?
If you have less than 128Mb you have no space to cache and most of you try to access is read from disk (and I bet your disk is slow!)... so take time to read.
Upgrade your memory to at least 256Mb and you'll note some benefits... but if I can give you my 2 cents advice: get a faster disk and interface.
Just to let you know, when running this command on your SME what you get?
hdparm -t /dev/hda
This is my server:
[root@tigre root]# hdparm -t /dev/hda
/dev/hda:
Timing buffered disk reads: 64 MB in 1.78 seconds = 35.96 MB/sec
[root@tigre root]#
I'm using as server an EPIA 5000 with 128 MB RAM and a 80Gb HDD with 2MB of internal cache.
See this:
[root@tigre root]# hdparm -i /dev/hda
/dev/hda:
Model=WDC WD800BB-00CAA0, FwRev=16.06V16, SerialNo=WD-WMA8E7690855
Config={ HardSect NotMFM HdSw>15uSec SpinMotCtl Fixed DTR>5Mbs FmtGapReq }
RawCHS=16383/16/63, TrkSize=57600, SectSize=600, ECCbytes=40
BuffType=DualPortCache, BuffSize=2048kB, MaxMultSect=16, MultSect=16
CurCHS=16383/16/63, CurSects=16514064, LBA=yes, LBAsects=156301488
IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
PIO modes: pio0 pio1 pio2 pio3 pio4
DMA modes: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 *udma5
AdvancedPM=no WriteCache=enabled
Drive Supports : Reserved : ATA-1 ATA-2 ATA-3 ATA-4 ATA-5
BufSize=2048Kb!
Post your numbers... I can give you another number for very different CPU/HDD but need your number to understand what can be improved!