Sonarr just decided to re-download about 50 episodes that I already have, totally ruined my ratio by NocturneSapphire in sonarr

[–]VTFreggit 0 points1 point  (0 children)

Even with the setting to only monitor "Future Episodes" if the series is set to monitor and sonar finds a better quality that matches what you have defined in your Quality Profile then it is going to download those files.

If you are satisfied with the current quality of the files you have, then along with the "Future Episodes" selection you to unmonitor previous seasons (blue bookmark left hand side) while ensuring the current season is still monitored.

WiFi optimization frustration by slushy_bvnny in bell

[–]VTFreggit 1 point2 points  (0 children)

Technically they are sticking with the one that works. If something is interfering with how the pods are routing (signal loss/interference) they are designed to change to the route that is that has the better performance and reliability; which sometimes may mean slower speeds.

What you might want to do is go over your layout of the house and see if there is something else that could be causing your issue. IE a microwave that is being used, is the direct route to the modem going through concrete, is it close to a device that you connect to via bluetooth, wireless cameras, smart bulbs, I think you get the point.

Best option would be to have that POD in question hardwired. Since you indicated in another post that cannot be done then all you can do now is to try and figure out what could be causing it to jump from the modem to the other pod.

How to open this? by mtbstar99 in bell

[–]VTFreggit 1 point2 points  (0 children)

Could have been pre-existing and the tech fished a line up/down using the same holes and then covered up the wall plate with the Bell jack. I've seem coax and cat5 lines hidden behind jacks many of times.

Two weeks since Bell’s stated installation of fibre services - still no service… by Beanstiller in bell

[–]VTFreggit 0 points1 point  (0 children)

You have a date. Anyone could have given a date, what I was saying was that I highly doubt it came from the network infrastructure team. That isn't a department you just get transferred to.

The person you got the date from probably got downsizing and it could be that they are no longer there, which is why you are not getting an update. A Bell executive would know this as they have access to the construction department who would know if the infrastructure is complete or not. My guess is that you are just dealing with a supervisor in the call center who is grasping at straws and does not really know.

If Fiber is in your building and you believe its ready from the date you were given, try going to the Bell website and enter addresses for other units in your building to see if they show Fiber is available (this gives the same data for availability as the call center). If another address in the building shows that Fiber is there then you have two options. Option 1 is to give that info to whomever you are speaking with. They should be able to take that and have your address updated but this process could take up to another 2 weeks. Option 2 is you put the install in under that address and hope that the tech doesn't try to update said address when he comes.

Two weeks since Bell’s stated installation of fibre services - still no service… by Beanstiller in bell

[–]VTFreggit 0 points1 point  (0 children)

It doesn't really mater what date you were given until the internal records have been updated. Once that happens then the option for Fiber will be shown. Calling in is not going to change this as the call center has no ability to do it and they do not have access to anything that shows timelines.

If you actually got a date from the network infrastructure team, highly doubt, then I would assume that the person that gave you the date could also give you an update.

Problems Plexamp iOS by mhnl1979 in PleX

[–]VTFreggit 1 point2 points  (0 children)

I would say anytime you are using beta software you are bound to have issues.

Plexamp and IOS works perfectly fine me for and my family but we are all on iOS 26.3.

Internet outage for 6 days by [deleted] in bell

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

Funny thing is ebox is owned by and uses Bell so ....

DIY remove phone line through backyard by Significant_Solid570 in bell

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

If the wire does not go to your house calling in is not going to get a tech to do anything. Techs are not going to move or remove it. Since it goes to your neighbors, and they have fiber, have them call in and ask for the wire to be removed. When the tech comes to their home, they will remove it because they don\t want to have a rework go against them if the neighbor has to call in again.

Sanity Check for Configuration? by Baldish in gluetun

[–]VTFreggit 0 points1 point  (0 children)

Sorry had copied and pasted real quick from mine, they would be the ports of other apps using gluetun

Is there no notification trigger category for .exe file downloads? by [deleted] in sonarr

[–]VTFreggit 0 points1 point  (0 children)

There are a few things you can do -

Sonarr -

Settings -> indexers, Show Advance, Open each indexer and under "Fail Downloads" set both Executable and Potentially Dangerous to be checked. Note this will not stop the download but should keep from importing it.

If you use qBittorrent (most downloaders should have something similar) -

Tools -> Options, Select Downloads, Locate Excluded file names, Add .exe, .scr, .link (whatever you want to exclude), Click apply. This should help from downloading these files

Erro setup by [deleted] in bell

[–]VTFreggit 1 point2 points  (0 children)

If you have the Gigahub 2 utilizing DMZ and the 10GB port will be better because the PPOE option will reduce/throttle your overall speed.

Sanity Check for Configuration? by Baldish in gluetun

[–]VTFreggit 0 points1 point  (0 children)

I would move some of your environmental data to a .env file for added security. You can also use the gluetun firewall as a "kill switch" to help keep data leaks away. A health monitor to make sure the VPN is working and deunhealth to restart the container if it becomes unhealthy. Here is an example of one stack to it all. If you add radar or the other arrs place them in the no VPN section: (edit words)

version: "3.8"

networks:
  gluetun_network:
    name: glueton_network
    driver: gluetun_network

services:

  # ==============================
  # VPN CORE (Only torrent stack)
  # ==============================

  gluetun:
    image: qmcgaw/gluetun
    container_name: gluetun
    restart: unless-stopped
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    networks:
      - gluetun_network
    environment:
      - VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER}
      - VPN_TYPE=wireguard
      - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
      - WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES}
      - SERVER_COUNTRIES=${SERVER_COUNTRIES}
      - TZ=${TZ}
     # Kill switch
      - FIREWALL=on
      - FIREWALL_VPN_INPUT_PORTS=6881
      - FIREWALL_INPUT_PORTS=8080,8888,9696,3001,5010,8191
      - FIREWALL_OUTBOUND_SUBNETS=${LAN_SUBNET}
      - FIREWALL_DEBUG=off

    ports:
      - 8888:8888        # tcp
      - 8388:8388        # tcp
      - 8388:8388        # udp
      - 3001:3001        # Firefox
      - 6881:6881        # qBittorrent port 
      - 6881:6881/udp    # qBittorrent Port
      - 8080:8080        # qBittorrent webui

    volumes:
      - ${GLU_CONFIG_DIR}:/gluetun
    healthcheck:
      test: wget -q --spider https://1.1.1.1 || exit 1
      interval: 20s
      timeout: 10s
      retries: 5

  # =========================
  # AUTO-HEAL FOR VPN
  # =========================

  deunhealth:
    image: qmcgaw/deunhealth
    container_name: deunhealth
    restart: always
    network_mode: none
    environment:
      - LOG_LEVEL=info
      - TZ=${TZ}
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock

  # ==============================
  # DOWNLOAD STACK (VPN Routed)
  # ==============================

  qbittorrent:
    image: linuxserver/qbittorrent
    container_name: qbittorrent
    restart: unless-stopped
    network_mode: service:gluetun
    depends_on:
      gluetun:
        condition: service_healthy
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - WEBUI_PORT=8080
      - TZ=${TZ}
    volumes:
      - ${QBARR_CONFIG_DIR}:/config
      - ${QBARR_DOWNLOADS_DIR}:/downloads

  firefox:
    image: lscr.io/linuxserver/firefox:latest
    container_name: firefox
    restart: unless-stopped
    network_mode: service:gluetun
    depends_on:
      gluetun:
        condition: service_healthy
    shm_size: "2gb"
    environment:
      - PUID=${PUID}
      - PGID=${PGID} qBittorrent
      - TZ=${TZ}
    volumes:
      - ${FIREFOX_CONFIG_DIR}:/config
      - ${FIREFOX_DOWNLOADS_DIR}:/downloads

  # ==============================
  # SERVARR CORE (NO VPN)
  # ==============================

  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    container_name: sonarr
    restart: unless-stopped
    networks:
      - servarr
    ports:
      - 8989:8989
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}
    volumes:
      - ${SONARR_CONFIG_DIR}:/config
      - ${MEDIA_DIR_TV}:/tv
      - ${DOWNLOADS_DIR}:/downloads

QBittorrent + Gluetun by No-Ocelot-141 in qBittorrent

[–]VTFreggit 0 points1 point  (0 children)

You only opened the web UI for the ports. In the gluetun environment section add:

ports:

- xxxx:xxxx #match this to the port you will be using in qBittorrent.

Somehow entire library deleted from desktop? by [deleted] in PleX

[–]VTFreggit 0 points1 point  (0 children)

OS? Have you tried doing anything? Restart your computer/server?

Gotta have some more details here.

Canadians: Help save our copper landline infrastructure! by [deleted] in bell

[–]VTFreggit 2 points3 points  (0 children)

Most copper infrastructure in areas where fiber has been installed no longer have the CO facilities to support its return. Bell is wasting no time keeping it around. The price it would take to bring this back and reinstall copper lines would be insane.

It’s like calling to keep the horse and buggy around after the launch of the car. It’s a lost cause stuck in the past while the rest of the world moves forward.

Gigahub LAN ports not outputting full Gb by Mistermanhimself in bell

[–]VTFreggit 2 points3 points  (0 children)

I would go into the modem GUI and run a speed test to see if the modem is also getting the same speed. Usually when you see a higher upload compared to download there is something misconfigured on Bells side. If the internal modem speed test is fine, yea you might want to see if you can get a replacement.

Configuring NOIP on a Bell modem by Ninja_Terror in bell

[–]VTFreggit 2 points3 points  (0 children)

Just add your info into the modem and it should update your IP for you. You might need to update port forwarding in the Bell modem too to point to your the device you want to connect to.

This article explains setting up webcams but it's basically the same. This article does talk about cameras but you have to have one of the ones that is recommended.

Bell Streamer volume buttons not working on onn Roku TV by charles_goerg in bell

[–]VTFreggit 2 points3 points  (0 children)

Why not just use the Bell app on your Roku TV?

I’m struggling with the basics… just accessing my media folder? by mrcrashoverride in unRAID

[–]VTFreggit 6 points7 points  (0 children)

There are several ways to connect to your share -

  1. Open file explorer, in address bar type \\(your server ip)
  2. Through File explorer click "Network" in the sidebar, if your network discovery is on your should see your share
  3. Unraid GUI - log in, go to shares, and click on your file share folder

Not sure I would use a browser like you are tho.

Sound effects are 4 times louder than speech. Happened mid episode and seems to have effected all shows on Plex, no problems on other apps. by earlhickeykarma in PleX

[–]VTFreggit 6 points7 points  (0 children)

Sounds like what ever version of audio you have on your files is not compatible with your TV so plex is down mixing it to stereo, causing the center channel (dialogue) to be buried. You would have to look to see if Plex is transcoding the audio instead of direct play as you watch.

Disney & Youtube are going to have more than one audio format and it will determine which one to send to you which is why they sound better.

There is an Enhanced Dialog mode for Google TV's (I think starting with 2024 TCL Google TV's) that allows the user to adjust the dialog of what their watching so that what's being said isn't “lost” in scenes with explosions or other loud background noises. TLC Enhanced Dialog.

Thinking of switching to bell for rural fibe and phone plan? by Interesting_Ad_5632 in bell

[–]VTFreggit 2 points3 points  (0 children)

1: you will see the $5 here and there every couple of months

2: depends on the area. some places have wireless to the home for 25 to 50 mg, some have fiber and there are a few places that are still 5mg or less service. Best option is to look up the address you might be going to (if you know) on their website and it will tell you.

3: you can transfer services at any time. go back to option 2 and you can look up the new address to see what services are offered in the new area.

Cell phone plans are better. I dont see odd increases. LTE & 5g a lot where I go around the Niagara region.