Skip Navigation
Was ist das Seltsamste, das jemand im Schlaf zu dir gesagt hat?
  • Meine damalige Freundin Eva ist native speaker und hat oft im schlaf gesprochen. Eines Nachts bin ich wegen ihrem kichern aufgewacht. Auf die Frage warum sie kichert hat sie in eine dunkle Ecke des Raumes gezeigt und gesagt "Eva just told me she is 6 feet tall"

    Mein sleepy metrisches Hirn hat ab da den 6 Meter Dämon gesucht und nicht mehr geschlafen

  • How to store backups?
  • If I've learned something about selfhosting and backups it is that you can trust HDDs to spin for 3-5 years and should still do backups. I myself do backups to HDDs that are only powered on for these backups. I'm still not sure if thats enougth.

    Raid is more for an always-on solution, but not great for safe backups. They still might get damaged at the same time, because you bought them at the same time, from the same vendor and they have the same usage time.

  • Anyway to get Firefox search bar as main search on pixel phones
  • I've got android one and was also stuck with the Google search bar. I'm using lawnchair for years now, works great, is very customizable and opensource. Just put the searchbar you like on the homescreen. https://lawnchair.app/

    You can also find it on f-droid

  • Now that mullvad has ended support for port forwarding, where should one go for P2P ?
  • I'm a bit confused. Using mullvad and I'm still seeding fine.

    Could anyone explain why I need portforwarding?

    Using mullvad wireguard and qbittorrent

    Seeding with ~1Mbit right now, which is normal for my connection

    Edit: thought soulseek is some torrent slang or client, I'm an idiot ^^

  • Is it possible to manually identify a season within a series?
  • If its only one season you could manually name them S01E01 etc.?

    If its many episodes, there might be a Linux application out there for batch renaming. Or write a bash script or ask Chatgpt to write one for you :)

  • Is it possible to manually identify a season within a series?
  • I haven't seen such an opinion either unfortunately. Maybe you can resolve it another way?

    Whats the reason it doesn't identify it? Do you have it in a separate season folder? Did jellyfin wrongly identify the series as a version of it that doesn't have this season?

    The latter just happened to me with Doctor Who, I've got the 1963 series and it automatically identified it as the 2005 series. Luckily that was easy to spot

  • Welche City-Hacks kennt ihr?
  • Raumgreifend Fahrradfahren. Das rechte Drittel der Straße gehört dir, nutze es voll aus. Je weiter Links du fährst desto weniger Autotüren bekommst du in die Fresse und Autos halten beim überholen mehr Abstand weil du plötzlich ein echtes Hindernis bist an dem man sich nicht schnell vorbei quetschen kann.

    Wenn du merkst einer will dich doch knapp überholen hilft ein Blick nach Links oder über die Schulter, aus irgendeinem Grund überholen sie dich dann erst mit mehr Abstand

  • is it normal that a wireguard docker container provides "low" networkspeed for connecting containers?
  • services:
      wireguard:
        image: lscr.io/linuxserver/wireguard:latest
        container_name: wireguard
        cap_add:
          - NET_ADMIN
          #- SYS_MODULE #needed if wireguard kernel module gets not loaded
        environment:
          - PUID=995
          - PGID=995
          - TZ=Europe/Vienna
        volumes:
          - wireguard_config:/config
          #- /lib/modules:/lib/modules stack #needed if wireguard kernel module gets not loaded
        ports:
          - 51820:51820
          - 51820:51820/udp
          - 8113:8113 #qbt WebUI - This is not necessary with trafik, I still have it for debug reasons and it's only reachable in my local network so I think its fine
        networks:
          - net
        labels:
          - traefik.enable=true
        sysctls:
          - net.ipv4.conf.all.src_valid_mark=1
          - net.ipv6.conf.all.disable_ipv6=0
        restart: unless-stopped
    
      qbittorrent:
        image: lscr.io/linuxserver/qbittorrent:latest
        container_name: qbittorrent
        network_mode: service:wireguard
        depends_on:
          - wireguard
        environment:
          - PUID=1004
          - PGID=1004
          - UMASK=002
          - TZ=Europe/Berlin
          - WEBUI_PORT=8113
        volumes:
          - qbt_config:/config
          - torrents:/data/torrents
          - media:/data/media
        labels:
          - traefik.enable=true
          - traefik.http.services.qbt.loadbalancer.server.port=8113
          - traefik.http.routers.qbt.rule=Host(`torrent.example.com`)
          - traefik.http.routers.qbt.middlewares=https-redirect@file
          - traefik.http.routers.qbt-secure.rule=Host(`torrent.example.com`)
          - traefik.http.routers.qbt-secure.entrypoints=websecure
          - traefik.http.routers.qbt-secure.tls=true
          - traefik.http.routers.qbt-secure.service=qbt
        restart: unless-stopped
    
  • is it normal that a wireguard docker container provides "low" networkspeed for connecting containers?
  • kinda fixed it, I think...

    Checked what image I'm using, its linuxserver, and they're using the OS's kernel implementation. Also saw that in my logs.

    I used this https://www.linuxserver.io/blog/routing-docker-host-and-container-traffic-through-wireguard and added these lines into my wg0.conf:

    PostUp = iptables -t nat -A POSTROUTING -o wg+ -j MASQUERADE
    PreDown = iptables -t nat -D POSTROUTING -o wg+ -j MASQUERADE
    

    Then I regenerated my mullvad config with a different server.

    Now I'm downloading the Arch Linux iso with 11Mbit/s

    Honestly I've no idea what exactly solved the problem, iptables, networks and routing still feels likes witchcraft to me most of the time.

  • is it normal that a wireguard docker container provides "low" networkspeed for connecting containers?

    I'm using a wireguard docker container to provide vpn connection to a qbittorrent container. When I compare it to wireguard on linux and the qbittorrent application, the same torrent is way slower. My server gets 2Mbit/s and my computer 15Mbit/s The 15Mbit/s is where my internet connection caps, while downloading that fast I can't watch YT videos. They both are in the same network using the same vpn provider and same endpoint.

    for qbittorrent docker-compose I use network_mode: service:wireguard

    7
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)BR
    bruchsturm @discuss.tchncs.de
    Posts 3
    Comments 22