OK. I did some checking (feel free to use alternatives as they are presented).
The additional mount options I'm using are:
noatime,nodiratime,data=writeback
I removed the journal from my ext4 filesystem (because I failed to provide the provide options when creating it) with:
tune2fs -O ^has_journal /path/to/device/partition
I put /tmp in RAM by setting "Clean /tmp at each boot" in:
pcc> Boot> Set up boot system> Advanced> select the checkbox beside "Clean /tmp at each boot"
...and I made sure the user's tmp directories were symlinks to /tmp.
These were just things I did to minimize writing to the flash device to improve performance and prolong the longevity of the device (hopefully).
Hi pags,
please, let me add a note:
if you remove journal, you don't need the option data=writeback because that option affect only journal writes.
if you leave there the journal, may be interesting to retain the option data=writeback, and to add the option commit=60, where 60 is the maximum number of seconds between journal commits (default is 5 secs).
data= and commit= options apply to ext3 and ext4 filesystems, not to ext2.
AS