Created
May 8, 2021 22:42
-
-
Save albe-rosado/1c7c95c40bedb068e30147f3b09f2f9c to your computer and use it in GitHub Desktop.
Command to install Ubuntu Wireguard network manager plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# instal dependencies | |
sudo apt install wireguard git dh-autoreconf libglib2.0-dev intltool build-essential libgtk-3-dev libnma-dev libsecret-1-dev network-manager-dev resolvconf | |
# clone repo and build | |
git clone https://github.com/max-moser/network-manager-wireguard | |
cd network-manager-wireguard | |
./autogen.sh --without-libnm-glib | |
./configure --without-libnm-glib --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib/x86_64-linux-gnu --libexecdir=/usr/lib/NetworkManager --localstatedir=/var | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much!
The only clean solution that works for me!