As the default kernel (32bit) does not support more than 3GB of memory, I installed PAE kernel and now the whole 4GB of memory is available.
I also moved /tmp to memory as accessing it is way faster than hard drive.
/etc/fstab:
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
root@moon:/var/tmp# df -h /var/tmp
Filesystem Size Used Avail Use% Mounted on
tmpfs 2.0G 129M 1.9G 7% /tmp
Next step was to change Chromium browser's cache to the tmpfs. Done simply by removing the cache and making an symbolic link
from ~/.cache/chromium to /tmp
rm ~/.cache/chromium ; ln -s /tmp/ ~/.cache/chromium
I also decided to move /var/tmp to tmpfs. Not really sure if this is smart thing to do, but at least after couple of days of working with the computer, I have not yet noticed anything broken because of moving /var/tmp to the memory. Opinions, good or bad?
What other things would be good to change in order to use speed up the computer?













