Using find to make things fast
Posted: Tue Apr 08, 2008 1:33 am
As 2x2GB RAM prices have fallen I've been messing around with the idea of mounting different dirs to ramdisk then writing back to disk at shutdown to cut/eliminate disk access time after initial boot, as well as loading Linux to ramdisk because guys like this have the right idea: http://thumper.fastcoder.net/wiki/Runni ... _a_Ramdisk , and it was pointed out to me that I'm missing the obvious: instead one could just load, say, /lib into the buffer with a
(or / and exclude .mp3/etc, or whatever)
and experiment to their heart's delight with speed and battery life, which is way more convenient and practical. And one can control writes back to disk and shutdown already does a sanity sync anyway. Cool.
Code: Select all
find /lib
and experiment to their heart's delight with speed and battery life, which is way more convenient and practical. And one can control writes back to disk and shutdown already does a sanity sync anyway. Cool.