Linux客户端
小于 1 分钟
Debian12 安装客户端
注意
本教程适用于Debian12系统
一键安装
sudo apt-get update
sudo apt-get install -y software-properties-common
sudo add-apt-repository -y ppa:wireguard/wireguard
sudo apt-get update
sudo apt-get install -y wireguard resolvconf
分步骤安装
步骤 1: 添加 WireGuard 存储库
sudo add-apt-repository -y ppa:wireguard/wireguard
步骤 2: 更新软件包列表
sudo apt-get update
步骤 3: 安装 WireGuard 和 resolvconf 软件包
sudo apt-get install -y wireguard resolvconf
加入服务端
wg0.conf
文件
步骤 1: 转到 WireGuard 目录,创建并编辑 cd /etc/wireguard
nano wg0.conf
在 nano
文本编辑器中,粘贴你从用户主页收到的 WireGuard 配置,并保存退出。
步骤 2: 启动 WireGuard 连接
sudo systemctl start wg-quick@wg0
步骤 3: 在系统启动时保持启用 WireGuard 连接
sudo systemctl enable wg-quick@wg0