You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 8 година
пре 8 година
пре 8 година
пре 8 година
пре 7 година
пре 8 година
пре 8 година
пре 8 година
пре 8 година
пре 8 година
пре 7 година
пре 8 година
пре 7 година
пре 8 година
пре 7 година
пре 7 година
пре 8 година
пре 7 година
пре 7 година
пре 8 година
пре 7 година
пре 7 година
пре 8 година
пре 7 година
12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Log2Ram
  2. Like ramlog for systemd (on debian 8 jessie for example).
  3. Usefull for **Raspberry** for not writing all the time on the SD card. You need it because your SD card don't want to suffer anymore !
  4. The script [log2ram](https://github.com/azlux/log2ram) can work on every linux system. So you can use it with your own daemon manager if you don't have systemd.
  5. Log2Ram is based on transient log for Systemd here : [A transient /var/log](https://www.debian-administration.org/article/661/A_transient_/var/log)
  6. ## Install
  7. ```
  8. git clone https://github.com/azlux/log2ram.git
  9. cd log2ram
  10. chmod +x install.sh
  11. sudo ./install.sh
  12. ```
  13. **REBOOT** before installing anything else (for example apache2)
  14. ## Customize
  15. #### variables :
  16. Into the file `/etc/log2ram.conf`, there are two variables :
  17. - The first variable define the size the log folder will reserve into the RAM.
  18. - The second variable can be set to `true` if you prefer "rsync" than "cp". I use the command `cp -u` and `rsync -X`, I don't copy the all folder every time for optimization.
  19. #### refresh time:
  20. The default is to write log into the HardDisk every hour. If you think this is too much, you can make the write every day by moving the cron file : `sudo mv /etc/cron.hourly/log2ram /etc/cron.daily/log2ram`.
  21. ### It is working ?
  22. You can now check the mount folder in ram with (You will see lines with log2ram if working)
  23. ```
  24. df -h
  25. mount
  26. ```
  27. If you have issue with apache2 , you can try to add `apache2.service` next to other services on the `Before` parameter into /etc/systemd/system/log2ram.service it will solve the pb
  28. The log for log2ram will be write here : `/var/log.hdd/log2ram.log`
  29. ###### Now, muffins for everyone !