I use Valkey and even Fedora has it in the repos. No problems so far, even changing Docker compose files to valkey works without issues 😌
I use Valkey and even Fedora has it in the repos. No problems so far, even changing Docker compose files to valkey works without issues 😌
If you want an easy setup, then you can try Davis. It has CardDAV, CalDAV and WebDAV ☺️
Floocus is what you are looking for. It can store the file on any webdav, gdrive, git or Nextcloud storage. I use it to sync my bookmarks between Browsers and systems
Thanks for this addition ☺️
Good question, it may depend on the distro afaik
Cron is better known than a systemd timer, but you can provide an example for the timer 😃
If logrotate doesn’t work, than use this as a cronjob via sudo crontab -e
Put this line at the end of the file:
0 0 * * * journalctl --vacuum-size=1G >/dev/null 2>&1
Everyday the logs will be trimmed to 1GB. Usually the logs are trimmed automatically at 4GB, but sometimes this does not work
Glad to help your family, share this wisdom with friends too ☝🏻😃
Check current disk usage:
sudo journalctl --disk-usage
Use rotate function:
sudo journalctl --rotate
Or
Remove all logs and keep the last 2 days:
sudo journalctl --vacuum-time=2days
Or
Remove all logs and only keep the last 100MB:
sudo journalctl --vacuum-size=100M
Follow specific log for a service:
sudo journalctl -fu SERVICE
Show extended log info and print the last lines of a service:
sudo journalctl -xeu SERVICE
You can use Floccus for this. Perfect with Nextcloud, but works with any WebDAV too ☝🏻
Linkwarden is more for archiving and tagging than sharing
Valkey is maintained by the Linux foundation Based on the last opensource redis 7.2 with many improvements
KeyDB is a project by Snapchat afaik 🤔