Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

README.md 6.4 KiB

há 8 anos
há 1 ano
há 7 anos
há 8 anos
há 7 anos
há 8 anos
há 7 anos
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. # Log2Ram
  2. Log2Ram works just like ramlog for systemd (on Debian 8 Jessie for example).
  3. Useful 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 on a Raspberry Pi) but directly to RAM. By default, every day the CRON will synchronize the contents in RAM with the folder located on the physical disk. The script will also make this copy of RAM to disk in case of machine shutdowns (but, of course, it still won't do it in case of power failures). This way you can avoid excessive writing on the SD card and extend its life.
  5. [Log2Ram](https://github.com/azlux/log2ram)'s script works on every Linux system. If you don't have Systemd, you can still use Log2Ram with your own daemon manager.
  6. Log2Ram is based on transient /var/log for Systemd. For more information, check [here](https://www.debian-administration.org/article/661/A_transient_/var/log).
  7. _____
  8. ## Table of Contents
  9. 1. [Installation](#installation)
  10. 2. [Is it working?](#is-it-working)
  11. 3. [Upgrading](#upgrading)
  12. 4. [Customization](#customization)
  13. 5. [Troubleshooting](#troubleshooting)
  14. 6. [Uninstallation](#uninstallation-)
  15. ## Installation
  16. ### Via APT (recommended)
  17. ```bash
  18. echo "deb [signed-by=/usr/share/keyrings/azlux-archive-keyring.gpg] http://packages.azlux.fr/debian/ bookworm main" | sudo tee /etc/apt/sources.list.d/azlux.list
  19. sudo wget -O /usr/share/keyrings/azlux-archive-keyring.gpg https://azlux.fr/repo.gpg
  20. sudo apt update
  21. sudo apt install log2ram
  22. ```
  23. ### Manually
  24. ```bash
  25. curl -L https://github.com/azlux/log2ram/archive/master.tar.gz | tar zxf -
  26. cd log2ram-master
  27. chmod +x install.sh && sudo ./install.sh
  28. cd ..
  29. rm -r log2ram-master
  30. ```
  31. For better performances, `RSYNC` is a recommended package.
  32. **REBOOT** before installing anything else (for example `apache2`)
  33. ## Is it working?
  34. After installing and rebooting, use systemctl to check if Log2Ram started successfully:
  35. ```bash
  36. systemctl status log2ram
  37. ```
  38. This will show a color-coded status (green: active/red: failed), as well as the last few log lines. To show the full log (scrolled to the end), run:
  39. ```bash
  40. journalctl -u log2ram -e
  41. ```
  42. The log is also written to `/var/log/log2ram.log`.
  43. You can also inspect the mount folder in RAM with:
  44. ```bash
  45. # df -h | grep log2ram
  46. log2ram 40M 532K 40M 2% /var/log
  47. ```
  48. or also:
  49. ```bash
  50. # mount | grep log2ram
  51. log2ram on /var/log type tmpfs (rw,nosuid,nodev,noexec,relatime,size=40960k,mode=755)
  52. ```
  53. If you do not get any line as response of these commands, something is not working. Refer to [this section](#is-it-working).
  54. ## Upgrading
  55. You need to stop Log2Ram (`systemctl stop log2ram`) and execute the [installation](#installation) process. If you used APT, this will be done automatically.
  56. ## Customization
  57. #### Variables
  58. In the file `/etc/log2ram.conf`, there are five variables:
  59. - `SIZE`: defines the size the log folder will reserve into the RAM (default is 40M).
  60. - `USE_RSYNC`: (commented out by default = `true`) use `cp` instead of `rsync` (if set to `false`).
  61. - `MAIL`: disables the error system mail if there is not enough place on RAM (if set to `false`).
  62. - `PATH_DISK`: activate log2ram for other path than default one. Paths should be separated with a `;`.
  63. - `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.
  64. #### Refresh time
  65. By default, Log2Ram writes to disk every day. If you think this is too much, you can run `systemctl edit log2ram-daily.timer` and for example add:
  66. ```ini
  67. [Timer]
  68. OnCalendar=
  69. OnCalendar=Mon *-*-* 23:55:00
  70. ```
  71. Note:
  72. The ``OnCalendar=`` is important because it disables all existing times (e.g. the default one) for log2ram.
  73. ... Or even disable it altogether with `systemctl disable log2ram-daily.timer`, if you instead prefer Log2Ram to be writing logs only on system stops/reboots.
  74. #### Compressor
  75. Compressor for ZRAM. Useful for the `COMP_ALG` of ZRAM on the config file.
  76. | Compressor name | Ratio | Compression | Decompress. |
  77. |------------------------|----------|-------------|-------------|
  78. |zstd 1.3.4 -1 | 2.877 | 470 MB/s | 1380 MB/s |
  79. |zlib 1.2.11 -1 | 2.743 | 110 MB/s | 400 MB/s |
  80. |brotli 1.0.2 -0 | 2.701 | 410 MB/s | 430 MB/s |
  81. |quicklz 1.5.0 -1 | 2.238 | 550 MB/s | 710 MB/s |
  82. |lzo1x 2.09 -1 | 2.108 | 650 MB/s | 830 MB/s |
  83. |lz4 1.8.1 | 2.101 | 750 MB/s | 3700 MB/s |
  84. |snappy 1.1.4 | 2.091 | 530 MB/s | 1800 MB/s |
  85. |lzf 3.6 -1 | 2.077 | 400 MB/s | 860 MB/s |
  86. ###### Now, muffins for everyone!
  87. ## Troubleshooting
  88. ### Existing content in `/var/log` too large for RAM
  89. One thing that stops Log2Ram from functioning is if `/var/log` is too large before starting Log2Ram the first time. This can happen if logs had been collected for a long time before installing Log2Ram itself. Find the largest directories in `/var/log` (this example command only shows the 3 largest):
  90. ```bash
  91. sudo du -hs /var/log/* | sort -h | tail -n 3
  92. ```
  93. If the `/var/log/journal` is very large, then there are a lot of system logs. Deletion of old "archived" logs can be fixed by adjusting a setting. Edit the `/etc/systemd/journald.conf` file and add the following option:
  94. ```bash
  95. SystemMaxUse=20M
  96. ```
  97. **Or** the more radical version of directly flushing the journal to a size that matches log2ram size imediately _(Be aware that this flish flush the systemd journal logs imediately to the given size!)_
  98. ```bash
  99. journalctl --vacuum-size=32M
  100. ```
  101. This should be set to a value smaller than the size of the RAM volume; for example, half of it could be fine. Then, apply the new setting:
  102. ```bash
  103. sudo systemctl restart systemd-journald
  104. ```
  105. This should shrink the size of "archived" logs to be below the newly imposed limit. Reboot and check that Log2Ram now works properly:
  106. ```bash
  107. sudo reboot
  108. ```
  109. Wait until system reboots...
  110. ```bash
  111. systemctl status log2ram
  112. ```
  113. ## Uninstallation :(
  114. (Because sometimes we need it)
  115. ### Via APT
  116. ```bash
  117. sudo apt remove log2ram
  118. ```
  119. You can add the `--purge` argument to remove Log2Ram config files as well.
  120. ### Manually
  121. ```bash
  122. chmod +x /usr/local/bin/uninstall-log2ram.sh && sudo /usr/local/bin/uninstall-log2ram.sh
  123. ```