您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 年前
7 年前
8 年前
8 年前
7 年前
8 年前
7 年前
7 年前
7 年前
8 年前
7 年前
12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. into /usr/local/bin/log2ram
  14. - You can change the SIZE variable if necessary
  15. - If you prefer to use rsync, you can set the USE_RSYNC variable to `true`
  16. ## Customize
  17. #### variables :
  18. Into the file `log2ram` (or `/usr/local/bin/log2ram` if you have already installed it), there are two variables into the script : `SIZE=40M` and `USE_RSYNC=false`
  19. The first variable define the size the log folder will reserve into the RAM.
  20. 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.
  21. #### refresh time:
  22. 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`.
  23. ### It is working ?
  24. You can now check the mount folder in ram with (You will see lines with log2ram if working)
  25. ```
  26. df -h
  27. mount
  28. ```
  29. The log for log2ram will be write here : `/var/log.hdd/log2ram.log`
  30. ###### Now, muffins for everyone !