1. Install WireGuard tools
Use the official WireGuard install guidance for your distribution:
- Ubuntu:
sudo apt install wireguard - Debian:
sudo apt install wireguard - Fedora:
sudo dnf install wireguard-tools - Arch:
sudo pacman -S wireguard-tools
Linux support currently uses WireGuard directly. Install the tools, import your Carol's VPN configuration, and bring the tunnel up from the command line.
Use the official WireGuard install guidance for your distribution:
sudo apt install wireguardsudo apt install wireguardsudo dnf install wireguard-toolssudo pacman -S wireguard-toolsYou need your personal WireGuard configuration for Linux. If you do not already have it, contact support and ask for your Linux WireGuard profile.
Support: support@carolsvpn.com
Save your file as:
/etc/wireguard/carolsvpn.conf
Then lock the permissions down:
sudo chmod 600 /etc/wireguard/carolsvpn.conf
sudo wg-quick up carolsvpn
Check status:
sudo wg show
Bring it down when needed:
sudo wg-quick down carolsvpn
sudo wg showsudo wg show to support