Skip Navigation

User banner
Posts
1
Comments
209
Joined
2 yr. ago

  • Removed Kavita since they started Kavita+ and the floating donate button, which can only be removed if you pay. Never again

    I use Komga instead

  • I don't use swiping, I have no clue πŸ˜…

  • Try Heliboard

    It is a fork of openboard. Openboard is basically dead

  • I love Heliboard it is a fork from Openboard. It has themes and is 100% offline

  • 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 β˜πŸ»πŸ˜ƒ

  • Cleanup

    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

    How to read logs:

    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

  • Add this to the service in your docker-compose.yml

     yaml
        
      extra_hosts:
         - host.docker.internal:host-gateway
    
      

    Example:

     yaml
        
    services:
        redis:
        restart: always
        container_name: redis
        image: redis:7.2-alpine
        extra_hosts:
          - host.docker.internal:host-gateway
    
      

    Then you can reach your host from inside the container via host.docker.internal:3434

    host.docker.internal is like your "localhost" on the host. It is a special DNS name.

  • Nope, that are two different things, but if you want to crash your server just run sudo rm -rf /etc && sudo rm -rf /var This is fun enough πŸ˜ƒ

  • Forget fail2ban, use crowdsec instead. It is a kind of next generation fail2ban β˜πŸ»πŸ˜ƒ

  • The message says it all. DNS rebind means a domain name is pointing back to an internal IP address. You need to make an exception in pfsense for your domain dash.homelab.duckdns.org

    This is normal ☝🏻