Article summary
Did you find this summary helpful?
Thank you for your feedback
Removing the Wireguard Connector
- 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?