Removing the Wireguard Connector
  • 20 Aug 2023
  • 1 Minute to read
  • Contributors

    Removing the Wireguard Connector


      Article summary

      Removing the Wireguard Connector


      1. Run the following commands:
        Ubuntu
      # Locate the WireGuard packages # (the output of this command will show you all wireguard packages installed on the machine)
      dpkg -l | grep wireguard
      
      # Delete all packages found that are associated with WireGuard
      # (Run this command for each package found, replace  with the output from the previous command)
      apt-get remove --purge # Locate the WireGuard packages # (the output of this command will show you all wireguard packages installed on the machine)
      dpkg -l | grep wireguard


      # Locate the WireGuard packages # (the output of this command will show you all wireguard packages installed on the machine)
      yum list installed | grep wireguard
      
      # Delete all packages found that are associated with WireGuard# (Run this command for each package found, replace  with the output from the previous command)
      yum remove # Locate the WireGuard packages # (the output of this command will show you all wireguard packages installed on the machine)
      yum list installed | grep wireguard
      



      Was this article helpful?