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.

README.md 4.1 KiB

8 vuotta sitten
8 vuotta sitten
8 vuotta sitten
8 vuotta sitten
7 vuotta sitten
8 vuotta sitten
8 vuotta sitten
8 vuotta sitten
5 vuotta sitten
6 vuotta sitten
6 vuotta sitten
7 vuotta sitten
8 vuotta sitten
8 vuotta sitten
5 vuotta sitten
7 vuotta sitten
8 vuotta sitten
7 vuotta sitten
8 vuotta sitten
8 vuotta sitten
7 vuotta sitten
8 vuotta sitten
5 vuotta sitten
5 vuotta sitten
7 vuotta sitten
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # Log2Ram
  2. Like ramlog for systemd (on debian 8 jessie for example).
  3. Usefull for **RaspberryPi** for not writing on the SD card all the time. You need it because your SD card doesn't want to suffer anymore!
  4. Explanations: The script creates a `/var/log` mount point in RAM. So any writing of the log to the `/var/log` folder will not actually be written to disk (in this case to the SD card for a Raspberry Pi) but directly to RAM. By default, every day, the CRON will launch a synchronization of the RAM to the folder located on the physical disk. The script will also make this copy of RAM to disk in case of machine shutdown (but cannot do it in case of power failure). This way you avoid excessive writing on the SD card.
  5. 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.
  6. Log2Ram is based on transient log for Systemd here : [A transient /var/log](https://www.debian-administration.org/article/661/A_transient_/var/log)
  7. _____
  8. ## Menu
  9. 1. [Install](#install)
  10. 2. [Upgrade](#upgrade)
  11. 3. [Customize](#customize)
  12. 4. [It is working ?](#it-is-working)
  13. 5. [Uninstall](#uninstall-)
  14. ## Install
  15. ### With APT (recommended)
  16. echo "deb http://packages.azlux.fr/debian/ buster main" | sudo tee /etc/apt/sources.list.d/azlux.list
  17. wget -qO - https://azlux.fr/repo.gpg.key | sudo apt-key add -
  18. apt update
  19. apt install log2ram
  20. ### Manually
  21. curl -Lo log2ram.tar.gz https://github.com/azlux/log2ram/archive/master.tar.gz
  22. tar xf log2ram.tar.gz
  23. cd log2ram-master
  24. chmod +x install.sh && sudo ./install.sh
  25. cd ..
  26. rm -r log2ram-master
  27. For better performances. `RSYNC` is a recommended package.
  28. **REBOOT** before installing anything else (for example apache2)
  29. ## Upgrade
  30. You need to stop log2ram (`service log2ram stop`) and start the [install](#install). (APT will do it automatically)
  31. ## Customize
  32. #### variables :
  33. In the file `/etc/log2ram.conf`, there are three variables:
  34. - `SIZE`: defines the size the log folder will reserve into the RAM (default is 40M).
  35. - `MAIL`: Disables the error system mail if there is not enough place on RAM (if set to `false`)
  36. - `PATH_DISK`: activate log2ram for other path than default one. Paths should be separated with a `;`
  37. - `ZL2R`: Enable zram compatibility (`false` by default). Check the comment on the config file. See https://github.com/StuartIanNaylor/zram-swap-config to configure a zram space on your raspberry before enable this option.
  38. #### refresh time:
  39. By default Log2Ram writes to disk every day. If you think this is too much, you can run `systemctl edit log2ram-daily.timer` and add:
  40. ```ini
  41. [Timer]
  42. OnCalendar=weekly
  43. ```
  44. ... or even disable it with `systemctl disable log2ram-daily.timer`, if you prefer writing logs only at stop/reboot.
  45. ### It is working?
  46. You can now check the mount folder in ram with (You will see lines with log2ram if working)
  47. ```
  48. # df -h
  49. log2ram 40M 532K 40M 2% /var/log
  50. # mount
  51. log2ram on /var/log type tmpfs (rw,nosuid,nodev,noexec,relatime,size=40960k,mode=755)
  52. ```
  53. The log for log2ram will be written at: `/var/log/log2ram.log` and available with `sudo journalctl -t log2ram`
  54. Compressor for zram. Usefull for the `COMP_ALG` of ZRAM on the config file.
  55. | Compressor name | Ratio | Compression | Decompress. |
  56. |------------------------|----------|-------------|-------------|
  57. |zstd 1.3.4 -1 | 2.877 | 470 MB/s | 1380 MB/s |
  58. |zlib 1.2.11 -1 | 2.743 | 110 MB/s | 400 MB/s |
  59. |brotli 1.0.2 -0 | 2.701 | 410 MB/s | 430 MB/s |
  60. |quicklz 1.5.0 -1 | 2.238 | 550 MB/s | 710 MB/s |
  61. |lzo1x 2.09 -1 | 2.108 | 650 MB/s | 830 MB/s |
  62. |lz4 1.8.1 | 2.101 | 750 MB/s | 3700 MB/s |
  63. |snappy 1.1.4 | 2.091 | 530 MB/s | 1800 MB/s |
  64. |lzf 3.6 -1 | 2.077 | 400 MB/s | 860 MB/s |
  65. ###### Now, muffins for everyone!
  66. ## Uninstall :(
  67. (Because sometime we need it)
  68. ### With APT
  69. ```
  70. apt remove log2ram
  71. ```
  72. You can use `--purge` to remove config files as well.
  73. ### Manually
  74. ```
  75. chmod +x /usr/local/bin/uninstall-log2ram.sh && sudo /usr/local/bin/uninstall-log2ram.sh
  76. ```