运行 nordvpn 的 apt-get update 时出错

运行 nordvpn 的 apt-get update 时出错

所以我最近一直在尝试安装 nordvpn,但在此过程中遇到了错误。

我通过以下方式安装了 .deb 文件:

sudo apt-get install ./nordvpn-release_1.0.0_all.deb

然后我跑了:

sudo apt-get update

然后得到这个输出:

Ign:17 https://repo.nordvpn.com/deb/nordvpn/debian stable InRelease                       
Err:18 https://repo.nordvpn.com/deb/nordvpn/debian stable Release
  Could not wait for server fd - select (11: Resource temporarily unavailable) [IP: 104.17.50.74 443]
Reading package lists... Done                    
E: The repository 'https://repo.nordvpn.com/deb/nordvpn/debian stable Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

那么现在我能通过任何方式解决这个问题吗?(请帮忙)

答案1

有点晚了,但对我有用的解决方案并没有直接在帖子的答案中提到。把它留在这里,希望它能对任何人有所帮助。

sudo -i
cd /etc/apt/sources.list.d
echo "deb [trusted=yes] http://repo.nordvpn.com/deb/nordvpn/debian stable main" > nordvpn.list
sudo apt-get update
sudo apt-get install nordvpn

基本上将 repo 添加到源列表中,但[trusted=true]其他答案未提及的部分并且绕过了限制:

E: The repository 'https://repo.nordvpn.com/deb/nordvpn/debian stable Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

答案2

这不是对原始问题的回答,但 OP 询问如何在没有客户端的情况下使用 NordVPN(或其他 VPN),因此对于 NordVPN 我执行以下操作:

cd ~/Downloads
wget https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip
unzip ovpn.zip

访问此地址并获取本地推荐的服务器: https://nordvpn.com/servers/tools/

打开 UbuntuSettings -> Network并点击+VPN 并选择Import from file...

从中选择相关的下载的 .ovpn 文件~/Downloads

输入你的 nordvpn 用户名/密码

现在,您可以从 Ubuntu 网络设置或 Ubuntu 右上角下拉菜单启用/禁用 VPN,而无需重新输入密码。

如果您始终想通过 VPN 运行,则可选运行nm-connection-editor并编辑网络连接(不是您的 VPN)(常规选项卡)的设置以自动连接到您选择的 VPN。

相关内容