Hi, Just wondering if Someone can help me out. I previously downloaded PIA but have uninstalled it some time ago with the sudo apt purge. However, I’ve now found that there is still ongoing network activity through the Pihole. I’ve attempted to look through the DPKG --list as well as the apt list which does gave “pia/noble 3.107-2build” (however purge states there is no pia installed), but can’t seem to uninstall PIA any further. Does anyone know how I can further uninstall any packages so that this is no longer occurring? For now ive blocked access through pihole.

Many thanks in advance!

  • moonpiedumplings@programming.dev
    link
    fedilink
    arrow-up
    18
    ·
    8 hours ago

    Did you reboot?

    It could be that a system service was installed, and activated. This service could stay running even after the packages are removed, since the programs would remain in memory.

    • YeahToast@aussie.zoneOP
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      7 hours ago

      Yeah, i uninstalled it months ago. several reboots. Thanks for the heads up re: system service. I ran systemctl --type=service --state=running and found the cheeky bugger running there! Have now removed the service, thanks so much!

  • non_burglar@lemmy.world
    cake
    link
    fedilink
    arrow-up
    6
    ·
    7 hours ago

    Packages are installed and removed from disk, but unless you kill the offending process(es), it might remain active in memory, depending on the quality of the install/remove script.

    You can use ps, pgrep or any number of utils to figure out which process is the one to get rid of, and just kill it.

    • YeahToast@aussie.zoneOP
      link
      fedilink
      arrow-up
      3
      ·
      7 hours ago

      Thanks for your reply. The term ‘system service’ let me search the right terms. ps & pgrep are not utilities im really familiar with, i’ll read up on them, thanks.