I have a FS Amilo laptop with 2GB of RAM. I have Kubuntu, Lubuntu, and Puppy Linux installed on it. I chose Lubuntu for speed, but my experience isn't as smooth as I expected.
The desktop environment is a bit faster in Lubuntu, but using Chrome or Firefox seems to be in fact slower in Lubuntu than in Kubuntu, which is very puzzling. I have also tried to run Chrome (and Firefox) via an Openbox login, to absolutely minimize other RAM demands, but there isn't any difference (with 2GB of RAM, I wouldn't expect any such issues anyway).
Is there anything I could check to exclude any fixable issues, such as some RAM settings or other? I should note that browser activity is sluggish even in simple pages (e.g. Facebook), I'm not talking about watching HD videos on youtube or something.
I suspect the lack of a graphics card is partially responsible (alas, the curse of laptops), but I wouldn't expect this to be such a visible issue. And the perception that Kubuntu seems a bit faster than Lubuntu when the browser is running makes me suspicious.
cat /proc/sys/vm/swappiness
and set it by editing the file /etc/sysctl.confand changing the line
vm.swappiness = 60and rebooting. The number is on a scale from 0 to 100, with 0 meaning the computer won't use the hard disk until the RAM is completely used up. Less HD usage usually means faster performance. Also, you can reduce/disable disk caching in Firefox and Chrome. The command
free -m` will show swap usage – Jeffrey Lam Dec 30 '15 at 17:48cat
command returns a value of 60, searching the /etc/sysctl.conf file proved fruitless - i.e. there was novm.swappiness = 60
line in it. Peculiar... Thanks for the effort, in any case. – Dec 31 '15 at 06:44top
, which lets you monitor both cpu and memory (RSS) usage. I don't know if it is worth checking that the appropriate video driver is being used, and that hardware acceleration (if present) is enabled. That's all I have for ideas now. Hope you work it out – Jeffrey Lam Dec 31 '15 at 10:57