Wireguard VPN 客户端 GUI

Wireguard VPN 客户端 GUI

我已经运行了 12 个 WireGuard VPN 服务器。现在我想使用一个应用程序来管理客户端上的连接。在我的 Arch-Linux 客户端上,我network-manager-wireguard运行了该插件,它运行良好。

Ubuntu 有 WireGuard GUI 吗?

我正在运行 Ubuntu 20.04,并已尝试编译此https://github.com/max-moser/network-manager-wireguard我自己,但是在过程中我遇到了以下错误./autogen.sh

checking for LIBNM_GLIB... no
configure: error: Package requirements (NetworkManager >= 1.2.0
    libnm-util >= 1.2.0
    libnm-glib >= 1.2.0
    libnm-glib-vpn >= 1.2.0) were not met:

No package 'NetworkManager' found
No package 'libnm-util' found
No package 'libnm-glib' found
No package 'libnm-glib-vpn' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBNM_GLIB_CFLAGS
and LIBNM_GLIB_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

但是,我在软件包存储库中找不到软件包libnm-util和。libnm-gliblibnm-glib-vpn

有没有什么已知的解决方案?我甚至在 Google 上都找不到任何有用的信息。

或者,是否至少有其他简单的方法可以从 Ubuntu 20.04 客户端连接到多个 WireGuard VPN 服务器?

答案1

我终于找到了一种在 Ubuntu 20.04 上运行它的方法。以下是您需要执行的步骤。也许这会在未来对某人有所帮助:

安装构建和使用插件所需的软件包:

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

从github克隆插件,编译并安装:

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

相关内容