

Heard about WireSock, but I’m on macOS, “sadly”.
Heard about WireSock, but I’m on macOS, “sadly”.
Gluetun is running in a container in the same stack as Qbit, and Qbit knows to get its network through Gluetun.
network mode > service > gluetun
or something similar (syntax is def. wrong) in the Compose.
Gluetun is connected to AirVPN through / with / using (?) WireGuard. I’m actually a bit foggy on the terminology 😅
I’m in virtually the same situation, although qbit is running in Docker through a Gluetun/Wireguard tunnel, so that part works fine.
I really wanted to do split tunnel on my Mac to access my tracker’s site (all Linux ISOs, of course) through the same tunnel, and haven’t had any success.
My workaround is running LibreWolf (modded Firefox) in the same stack, through the same tunnel. It’s not ideal, but at least it works.
Do update if you find a solution!
Obsidian, any day, all day.
I love it so much that I live in near constant fear for them to somehow enshittify it 😔
Sneakernet is OK, but I still prefer IPoAC.
I feel the same way about MeGusta — x265, always great size/quality ratio.
Much better, very good detail 😅
How about ‘artist’s death’, full stop?
Do you have any links to articles about how to use i2p?
It’s pretty funny how you can’t keep I/he and my/his straight in your post. And the “not mine” label is a nice touch! 😂
I think you owe it to yourself to make this into a post on /r/amitheasshole. I have a feeling the results will surprise you.
Don’t have any data to back it up, but I’ve been using Photoshop for 25+ years, and got the clear impression that this was 100% part of marketing; from what I gathered from friends back then, pirating Photoshop was so astonishingly simple that it seemed deliberate. If you’ve got the software that’s the easiest to get hold of for kids and students, that’s what they grow up with, that’s what they know, that’s what they expect to have access to in future employment situations.
Now that they’ve managed to pull off Subscriptions (and consequently fucking us all over by making it a legitimate business model, which instantly spread to, what, +60% of all paid software?), I’m sure they’ve calculated that the higher bar for gaining access to their software is more than adequately offset by the readings on the yard stick in their Scrooge McDuck money vault building(s).
And still, nobody has managed to make something that can replace their bloated, shitty software for professional users.
First one doesn’t work without the comma, I think you meant “Stop killing games”.
🎵 just a n00b like some of us 🎵
A complete collection of QI episodes, and I’d be able to watch a fraction of them 😊
Thanks! I misunderstood completely, thought you were downloading from Spotify and uploading to YouTube 😅
Genuine question: Spotify TO YouTube? I’m trying hard and not coming up with a use-case 🤔
Or is it just “Spotify or YouTube”?
* cries in Adobe *
Wonderful! I wish you both a happy relationship! Sounds like you’ve got your work cut out for you 😊👌
What’s inside a 2.4TB torrent? 🤔
### GLUETUN services: gluetun: image: qmcgaw/gluetun container_name: gluetun cap_add: - NET_ADMIN devices: - /dev/net/tun:/dev/net/tun ports: - 8888:8888/tcp # HTTP proxy # - 8388:8388/tcp # Shadowsocks # - 8388:8388/udp # Shadowsocks - 8090:8090/tcp # qbittorrent - xxxx:xxxx/tcp - 3423:3000/tcp # librewolf volumes: - /volumex/docker/gluetun:/gluetun environment: - PUID=xxxx #CHANGE_TO_YOUR_UID - PGID=xxxx #CHANGE_TO_YOUR_GID - TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ - VPN_SERVICE_PROVIDER=airvpn - VPN_TYPE=wireguard - WIREGUARD_PRIVATE_KEY=xxxx - WIREGUARD_PRESHARED_KEY=xxxx - WIREGUARD_ADDRESSES=xxx.xxx.xxx.xxx - SERVER_REGIONS=Europe - HTTPPROXY=off #change to on if you wish to enable - SHADOWSOCKS=off #change to on if you wish to enable - FIREWALL_OUTBOUND_SUBNETS=172.20.0.0/16,192.168.0.0/24 #change this in line with your subnet see note on guide. - FIREWALL_VPN_INPUT_PORTS=xxxx #uncomment this line and change the port as per the note on the guide - UPDATER_PERIOD=24h network_mode: bridge-xxxx labels: - com.centurylinklabs.watchtower.enable=false security_opt: - no-new-privileges:true restart: always ### QBITTORRENT qbittorrent: image: linuxserver/qbittorrent:5.0.1 container_name: qbittorrent environment: - PUID=xxxx #CHANGE_TO_YOUR_UID - PGID=xxxx #CHANGE_TO_YOUR_GID - TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ - WEBUI_PORT=8090 - UMASK=022 volumes: - /volumex/docker/qbittorrent:/config - /volumex/linux-isos/:/data network_mode: service:gluetun # run on the vpn network depends_on: gluetun: condition: service_healthy security_opt: - no-new-privileges:true restart: always ### LIBREWOLF librewolf: container_name: LibreWolf image: ghcr.io/linuxserver/librewolf:latest security_opt: - no-new-privileges:false - seccomp:unconfined #healthcheck: # test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1 #interval: 10s #timeout: 5s #retries: 3 #start_period: 90s environment: CUSTOM_USER: xxxx PASSWORD: xxxx TZ: Europe/xxxx PUID: xxxx #CHANGE_TO_YOUR_UID PGID: xxxx #CHANGE_TO_YOUR_GID volumes: - /volumex/docker/librewolf:/config:rw network_mode: service:gluetun # run on the vpn network restart: no depends_on: gluetun: condition: service_healthy shm_size: "5gb"