- markup (52)
- xml (7)
- xslt (21)
- atom (8)
- overlapping markup (2)
- schema (9)
- creole (4)
- xforms (1)
- pipelines (7)
- coding (2)
- dtll (1)
- genealogy (3)
- gtd (1)
- hardware (1)
- legislation (1)
- ontologies (2)
- unicode (1)
- web (24)
- google (3)
- rdf (6)
- rest (3)
- wikis (1)
- work (1)
- xpath (1)
- xquery (1)
- xtech2008 (3)
- life (26)
- children (5)
- equality (6)
- environment (4)
- gadgets (5)
- software (3)
- xlinq (2)
- conferences (7)
- xtech (6)
- blog (7)
- drupal (3)
Re: Minimising hard-disk power consumption
If you have a couple of persistant loggers like Samba and NTP that you really can’t do without, a technique that can work is the use of a ram disk:
http://www.vanemery.com/Linux/Ramdisk/ramdisk.html
To prevent e.g. Samba waking the hardisk, which (from the script above) is writing to the /var/cache/samba directory, do something like:
mkdir /mnt/rd mount /mnt/rd /dev/ram0 cp -r /var/cache/samba/* /mnt/rd umount /mnt/rd mount /dev/ram0 /var/cache/samba
(or tmpfs as an alternative: mount -t tmpfs tmpfs /mnt/tmpfs -o size=10M )
Then, Samba is just writing to a ram drive and will not wake that hard drive.
This is still experimental for me, and maybe somebody with more knowledge will know some good reasons to not do this so take it with a pinch of salt…..
Daniel