Efficiently in-memory log manager
Ram journal is a system that considerably reduces disk read and write operations by keeping logs from the /var/log directory in memory. It works in two ways:
In this mode, logs are kept in memory and are synced to disk every 24 hours. The sync interval can be changed
by setting the sync_interval
in /etc/ram-journal/ram-journal.conf
:
```ini
sync_interval=12 ```
/etc/ram-journal/ram-journal.conf
In this mode, logs are kept only in memory and are lost after a system reboot.
To disable the sync, set sync_interval
to 0
in /etc/ram-journal/ram-journal.conf
:
```ini
sync_interval=0 ```
```bash curl -fsSL https://neutrine.com/deb/public.gpg | sudo tee /etc/apt/trusted.gpg.d/neutrine.com.gpg >/dev/null sudo sh -c 'echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/trusted.gpg.d/neutrine.com.gpg] https://deb.neutrine.com bullseye main" > /etc/apt/sources.list.d/neutrine.com.list' sudo apt update sudo apt install ram-journal
```
```bash curl -fOL https://github.com/lpicanco/ram-journal/releases/download/v0.1.3/ram-journal-0.1.3-x8664-unknown-linux-gnu.deb sudo dpkg -i ram-journal-0.1.3-x8664-unknown-linux-gnu.deb
```
```bash curl -fOL https://github.com/lpicanco/ram-journal/releases/download/v0.1.3/ram-journal-0.1.3-armv7-unknown-linux-gnueabihf.deb sudo dpkg -i ram-journal-0.1.3-armv7-unknown-linux-gnueabihf.deb
```
```bash curl -fOL https://github.com/lpicanco/ram-journal/releases/download/v0.1.3/ram-journal-0.1.3-aarch64-unknown-linux-gnu.deb sudo dpkg -i ram-journal-0.1.3-aarch64-unknown-linux-gnu.deb
```
Configuration are kept in the /etc/ram-journal/ram-journal.conf
file:
```ìni
```