Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
internet:self-hosting [2011/12/24 01:05] cyril |
internet:self-hosting [2013/09/19 16:40] (current) |
||
---|---|---|---|
Line 10: | Line 10: | ||
==== Flash cache ==== | ==== Flash cache ==== | ||
+ | === Introduction === | ||
Solutions for hybriding flash drives and hard drives have been experimented to save power on laptops, but it is quite complex in the general case and there is no final-user implementation yet, and the gains are limited on an everyday use machine. However it is a lot more efficient and simple on a server, as there are a lot less interactions with users and the panel of activities is largely reduced. Hence you only have to put on flash disk a few directories and files that the system regularly write to (the cache in RAM is enough for reading), and the disk can remain spun down for hours or days if you don't start unusual applications. | Solutions for hybriding flash drives and hard drives have been experimented to save power on laptops, but it is quite complex in the general case and there is no final-user implementation yet, and the gains are limited on an everyday use machine. However it is a lot more efficient and simple on a server, as there are a lot less interactions with users and the panel of activities is largely reduced. Hence you only have to put on flash disk a few directories and files that the system regularly write to (the cache in RAM is enough for reading), and the disk can remain spun down for hours or days if you don't start unusual applications. | ||
- | You need an USB stick or SD Card of at least 2GB (4GB is advised), and init scripts | + | You need an USB stick or SD Card of at least 2GB (4GB is advised), and an init script |
+ | |||
+ | As an example, my server (a Core2 Duo laptop) consumes 12-13W (saved 1W stopping the hard drive), makes no noise at all (no fan, no hard drive), and the hard drive remains stopped for several days, as long as I don't interact with because it is also a multimedia server (I can even log in with ssh, with export display, as root, use firefox, without waking up the drive ; but of course listening to music stored on the hard drive, installing a program, changing some system configuration, | ||
+ | |||
+ | === What to cache === | ||
The main directories you need to take care of are: | The main directories you need to take care of are: | ||
- | * ''/ | + | * ''/ |
- | * ''/ | + | * ''/ |
+ | * ''/ | ||
- | For files, create | + | If you cannot cache your whole home folder, you can cache a few files that are updated too often by putting them in a '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
- | * '' | + | * '' |
+ | * '' | ||
+ | * for GDM: set '' | ||
+ | * for SSHD: set '' | ||
+ | * for SU: set '' | ||
+ | * application data folder of programs you commonly use (firefox, music player, ...) | ||
- | You can use a script similar to this one to monitor what files are being used and add them to the cache (you can then grep " | + | ''/ |
+ | * ''/ | ||
+ | |||
+ | === Configure monitors === | ||
+ | |||
+ | If you run '' | ||
+ | <code diff> | ||
+ | -DEVICESCAN | ||
+ | +# | ||
+ | +/dev/sda -d ata -n standby | ||
+ | </ | ||
+ | |||
+ | Asking the temperature to the '' | ||
+ | |||
+ | Also be careful to conflicts between manual configuration and different power manager utilities (like pm-utils, your desktop environment...). You may have to disable some of them if it doesn' | ||
+ | |||
+ | === Finding the guilty files === | ||
+ | |||
+ | You can use a script similar to this one to monitor what files are being used and add them to the cache (you can then grep " | ||
<code sh> | <code sh> | ||
#!/bin/sh | #!/bin/sh | ||
+ | rm -f / | ||
dmesg -c | dmesg -c | ||
- | rm -f / | ||
#sudo sysctl vm.block_dump=1 | #sudo sysctl vm.block_dump=1 | ||
echo 1 > / | echo 1 > / | ||
- | watch "dmesg -c >> /mnt/ram/disklog" | + | watch --interval=5 'dmesg -c | grep sda >> /mnt/ram/disk.log ; hdparm -C /dev/sda | grep "drive state" | cut -d":" |
echo 0 > / | echo 0 > / | ||
</ | </ | ||
+ | You can also use '' | ||
- | If you want to monitor if your drive remains spun down, you can use the following command: | + | === Configure the drive to go to standby === |
- | < | + | |
- | hdparm -C /dev/sda | + | Configure hdparm to put the drive to standby after some time of inactivity. For instance to test with 10 minutes: |
+ | < | ||
+ | hdparm -S 120 /dev/sda | ||
</ | </ | ||
+ | |||
+ | And for final configuration copy ''/ | ||
+ | |||
+ | You can also configure with your power manager utility if you have one. | ||
+ | |||
+ | === Optional extra configuration === | ||
+ | |||
+ | You can try to tune how syslog will write to the disk to save the flash life, in ''/ | ||
+ | < | ||
+ | options { | ||
+ | mark_freq(0); | ||
+ | flush_lines(20); | ||
+ | flush_timeout(60000); | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | === Read cache === | ||
+ | |||
+ | You can try to prefetch in the Linux RAM read cache all the programs and files you often read, with a script that executes programs and grep inside files when you start the computer. | ||
+ | |||
+ | You can also have a look at '' | ||
+ | |||
+ | === RAM write cache === | ||
+ | |||
+ | You could also try to use the '' | ||