▲ 2 r/soundcore+1 crossposts

Soundcore sleep A30 buzzing

The left side of my soundcore sleep A30 has this low pitch buzzing which happens on and on, anyone knows what's going on? I tried fiddling in the app and couldn't find anything that changes it.

reddit.com
u/EpicMouz — 5 days ago

PSU cable compatibility

Hi, unsure if this is the right sub, but I have extra cables for a SuperFlower Leadex III Gold 850W (SF-850F14HG) and was wondering if it will be compatible with a newer refresh the the same psu SuperFlower Leadex III Gold 850W ATX 3.1 (SF-850F14GE).

Specifically, the molex cable.

reddit.com
u/EpicMouz — 12 days ago
▲ 3 r/JONSBO

Jonsbo N5 psu

Hi, I just put in an order for a jonsbo N5 and was taking a look at the requirements for the backplane requirements which are honestly a pain in the ass, as it is completely undocumented.

Long story short, the psu I have, a SuperFlower Leadex III 850W ATX3.1 only has 2x sata cable and 1x molex cable. So my question would be, is it okay to daisy chain the molex cable for the x8 sata backplane and is only a sata connection alright for the x4 backplane.

reddit.com
u/EpicMouz — 12 days ago

Port forward failing if gluetun reconnects

Hi, I am encountering a problem with my gluetn + qbittorrent setup. Portforwarding works fine when the docker starts but when gluetun changes a server for protonvpn, the portforwarding just doesn't work (port in qbittorrent shows 0). Any idea why?

services:
  gluetun:
    image: qmcgaw/gluetun:v3
    container_name: gluetun
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    ports:
      - 8000:8000/tcp #gluetun
      - 8080:8080 # qbittorrent
    environment:
      - TZ=US/Eastern
      - HTTP_CONTROL_SERVER_AUTH_DEFAULT_ROLE='{"auth":"basic","username":"","password":""}'
      - UPDATER_PERIOD=24h
      - VPN_SERVICE_PROVIDER=protonvpn
      - VPN_TYPE=wireguard
      - BLOCK_MALICIOUS=off
      #- OPENVPN_USER=${OPENVPN_USER}
      #- OPENVPN_PASSWORD=${OPENVPN_PASSWORD}
      #- OPENVPN_CIPHERS=AES-256-GCM
      - WIREGUARD_PRIVATE_KEY=
      - PORT_FORWARD_ONLY=on
      - VPN_PORT_FORWARDING=on
      - VPN_PORT_FORWARDING_UP_COMMAND=/bin/sh -c 'wget -O- -nv --retry-connrefused --post-data "json={\"listen_port\":{{PORT}},\"current_network_interface\":\"{{VPN_INTERFACE}}\",\"random_port\":false,\"upnp\":false}" http://127.0.0.1:8080/api/v2/app/setPreferences'
      - VPN_PORT_FORWARDING_DOWN_COMMAND=/bin/sh -c 'wget -O- -nv --retry-connrefused --post-data "json={\"listen_port\":0,\"current_network_interface\":\"lo\"}" http://127.0.0.1:8080/api/v2/app/setPreferences'
      - SERVER_COUNTRIES=United States
      - HTTPPROXY=off
      - SHADOWSOCKS=off
    volumes:
      - ${PATH_TO_APPDATA}/gluetun:/gluetun
    restart: unless-stopped

  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    depends_on:
      gluetun:
        condition: service_healthy
    environment:
      - UMASK=002
      - PUID=1000
      - PGID=100
      - TZ=US/Eastern
      - WEBUI_PORT=8080
    volumes:
      - ${PATH_TO_APPDATA}/qbittorrent/config:/config
      - ${PATH_TO_DATA}:/data
      - ${PATH_TO_DATA}/mediax:/mediax
    restart: unless-stopped
    network_mode: "service:gluetun"
reddit.com
u/EpicMouz — 2 months ago