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/22 09:39] cyril [Flash cache] |
internet:self-hosting [2013/09/19 16:40] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Website Self Hosting ====== | ====== Website Self Hosting ====== | ||
+ | |||
+ | ===== IP ===== | ||
+ | |||
+ | Dynamic DNS service if you don't have a static IP. | ||
===== Hardware ===== | ===== Hardware ===== | ||
Line 6: | 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. | ||
- | A lot more efficient | + | You need an USB stick or SD Card of at least 2GB (4GB is advised), |
- | < | + | As an example, my server |
- | /var/log | + | |
- | /var/www | + | |
- | /var/lib | + | |
- | /var/cache ? | + | |
- | /var/db ? | + | |
- | ou tout /var... un peu gros mais ça peut passer | + | |
- | /tmp (ou en ram) | + | |
- | </ | + | === What to cache === |
- | Create | + | The main directories you need to take care of are: |
- | < | + | * ''/ |
- | ~/ | + | * ''/ |
- | ~/ | + | * ''/ |
+ | |||
+ | 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, ...) | ||
+ | |||
+ | ''/ | ||
+ | * ''/ | ||
+ | |||
+ | === 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 |
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 '' | ||
- | < | + | === 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 '' | ||