I know this is an old post...but just for any new visitors because of the links posted only one of them are actually worth looking at.
Simply put if you are using a carpc you probably aren't going to be doing consistent and major system logging/debugging..(unless you are troubleshooting). That being said this is a good start for minimizing diskwrite and save filesystem space:
Edit your /etc/fstab as follows:
Code:
[Device] [Mount Point] [Type] [Options] [Dump] [Pass]
tmpfs /tmp tmpfs noatime 0 0
tmpfs /var/tmp tmpfs noatime 0 0
tmpfs /var/log tmpfs noatime 0 0
tmpfs /var/spool tmpfs noatime 0 0
I have a eeepc and this is how I have my fstab...more or less.. If you do need the logs for troubleshooting or debugging as I have had every once and a while you could always comment out the entry (
using the # symbol) and reboot which will create your logs as normal.
Code:
[Device] [Mount Point] [Type] [Options] [Dump] [Pass]
tmpfs /tmp tmpfs noatime 0 0
tmpfs /var/tmp tmpfs noatime 0 0
#tmpfs /var/log tmpfs noatime 0 0
tmpfs /var/spool tmpfs noatime 0 0
I definitely would not suggest making your entire /var temporary as this would impact packaging and other stuff...