Linux tuning
- edit /etc/fstab and add the option noatime to disable writing of last access timestamps on each file or directory access for each ext3 filesystem
LABEL=/ / ext3 defaults,noatime 1 1
- disable swap (remove swap volume from /etc/fstab), just make sure you have enough memory installed (which since memory is cheap, should be easy to just max out the machine!)
- increase writeback time (add the following line to /etc/rc.local)
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
- remove beagle (if installed) from your system, it indexes the filesystem, but causes disk activity and keeps your cpu busy
rpm -e beagle beagle-gnome beagle-evolution
Źródło: http://blog.loxal.net/2009/04/tuning-ext4-for-performance-with.html Tuning dla Ext4:
Edit /etc/fstab:
UUID=(...) / ext4 noatime,barrier=0,nobh,commit=100,nouser_xattr 0 1
UUID=(...) /home ext4 noatime,barrier=0,data=writeback,nobh,commit=100,nouser_xattr 0 2

Brak komentarzy:
Prześlij komentarz