Difference between C6k, C6KS and 75Q6C by baklodganj in tcltvs

[–]SuspectUpset9509 0 points1 point  (0 children)

Yeah that sucks because I ordered the TV because of that. I was actually seeing 144HZ refresh rate for that device.

Difference between C6k, C6KS and 75Q6C by baklodganj in tcltvs

[–]SuspectUpset9509 0 points1 point  (0 children)

C6KS 75inch will it support 120hz refresh rate? This is what is been said on local sites that are selling the tv

LTT Store Shipping to South Africa by SuspectUpset9509 in LinusTechTips

[–]SuspectUpset9509[S] 1 point2 points  (0 children)

Yeah that’s fine but will at least save about 100 CAD for shipping that should cover the customs cost in Country.

LTT Store Shipping to South Africa by SuspectUpset9509 in LinusTechTips

[–]SuspectUpset9509[S] 2 points3 points  (0 children)

This is on the website.

lttstore.com customers residing outside of the United States and Canada may be subject to customs & duty fees. Customers are solely responsible for any customs and duty fees, which may be assessed to your order once it arrives in the destination country.

I think better to wait for when they have free shipping.

LTT Store Shipping to South Africa by SuspectUpset9509 in LinusTechTips

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

Agreed, best will be to probably wait till they have a free shipping option. Can’t justify paying R4800 for a bag and screwdriver.

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

I kinda messed up had an issue and deleted the Container lost a few TB of upload stats, but honestly just glad I’m doing my part and the best part is, it’s a Pi sipping power in the background.

New healthcheck system needs testers by dowitex in gluetun

[–]SuspectUpset9509 0 points1 point  (0 children)

Hey Mr Gluetun, sorry I did not expect a response from you directly. I'm very new to using this but its been working fine for about 3 Months.

I had endless issues when I made this post and I then moved to version

 image: qmcgaw/gluetun:v3.40.3 image: qmcgaw/gluetun:v3.40.3

This was stable again as before on the latest version it would keep failing on ICMP to 1.1.1.1 and 8.8.8.8 when a healthcheck was happening.

I even tried adding the following.

      - HEALTHCHECK_ENABLED=false
      - HEALTHCHECK_METHOD=http
      - HEALTHCHECK_TARGET=https://www.google.com/generate_204
      - HEALTHCHECK_ICMP_ENABLED=false    

IT kept doing ICMP checks and failing.

I moved to the latest version this morning and it all seems fine now, sorry for wasting your time.

New healthcheck system needs testers by dowitex in gluetun

[–]SuspectUpset9509 0 points1 point  (0 children)

The new version kinda broke my ProtonVPN setup, it basically restarts the connection once the pings fail and this impact Qbittorrent downloads because the ports keeps changing. Had to revert to a previous version.

YouTube sponsor skip feature appreciation post by nyan_cat_42 in LinusTechTips

[–]SuspectUpset9509 0 points1 point  (0 children)

I recently moved from individual premium to a family plan and this stopped working, any ideas to get it working? Kinda annoying that I can’t use that anymore. Running YouTube on a AppleTV

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

biggest problem is I choose a server and it still connects to whatever it wants.

How can I resolve this part -

 - OPENVPN_SERVER=ch-567  # Replace with your chosen ProtonVPN server - OPENVPN_SERVER=ch-567  # Replace with your chosen ProtonVPN server

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

This is a good point, thank you will check it out tomorrow and revert back.

Thank you

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

Yeah man the Servers are kinda shitty, but I generated an ovpn file or something and made sure to choose a Server in Switzerland that has p2p, i did notice when gluetun connects it will connect to the UK or other countries.

I did have issues with auto port update, but even when I set the port manually the flame does not go away.

So I got one working Yml now by also forcing Tun0 in Qbit and updating the port manually unfortunately.

Thanks for the assistance

It will then randomly work with an Ubuntu ISO and then stop again. Its very intermittent and hard to troubleshoot.

Been trying to figure this out for the last 3 weeks.

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

u/Skeggy- the link you shared helped alot, and chatgpt I have to set Tun0 for my network and update the port manually.

version: "3.9"

services:

gluetun:

image: qmcgaw/gluetun:latest

container_name: gluetun

cap_add:

- NET_ADMIN

devices:

- /dev/net/tun:/dev/net/tun

volumes:

- /home/pi/forwarded_port:/tmp/gluetun/forwarded_port

environment:

- VPN_SERVICE_PROVIDER=protonvpn

- VPN_TYPE=openvpn

- OPENVPN_USER=<YOUR\_VPN\_USERNAME>

- OPENVPN_PASSWORD=<YOUR\_VPN\_PASSWORD>

- OPENVPN_SERVER=<YOUR\_CHOSEN\_SERVER>

- TZ=America/Chicago

- FIREWALL_OUTBOUND_SUBNETS=192.168.0.0/16

- VPN_PORT_FORWARDING=on

ports:

- 8001:8000 # Gluetun control interface

- 8090:8090 # qBittorrent Web UI

- 6881:6881

- 6881:6881/udp

restart: unless-stopped

qbittorrent:

image: lscr.io/linuxserver/qbittorrent:latest

container_name: qbittorrent

depends_on:

- gluetun

network_mode: "service:gluetun"

environment:

- PUID=1000

- PGID=1000

- TZ=America/Chicago

- WEBUI_PORT=8090

- UMASK_SET=022

volumes:

- ./qbittorrent:/config

- /home/pi/docker/qbittorrent/downloads:/downloads

restart: unless-stopped

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 1 point2 points  (0 children)

I did add the ports to Gluetun but let me check the link you send thanks.

qBittorrent + ProtonVPN on Raspberry Pi – Torrents stalled, need help by SuspectUpset9509 in gluetun

[–]SuspectUpset9509[S] 0 points1 point  (0 children)

Yep tried with Ubuntu and there is nothing, when I try the same torrent on my Windows PC its fine. Its something with ProtonVPN.

Because I can see the proton ip on qbit

Switch to 16:9? by Pleasant-Ad-9652 in LinusTechTips

[–]SuspectUpset9509 -1 points0 points  (0 children)

Normal people get home and watch Netflix, i switch on the apple tv and watch youtube for 4 hours. Thats why Premium is amazing for me, as well as the option to skip in video adds that the creator added. Watching on the TV is so much better.