所以我最近一直在尝试安装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.所以现在我能克服这一切了吗?(请帮忙)
发布于 2022-12-20 17:52:54
虽然有点晚了,但对我有效的解决方案并没有在帖子的回答中直接提及。把它留在这里以防它能帮到任何人。
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基本上,将回购添加到源代码列表中,但是使用[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.发布于 2021-01-23 13:18:31
没有回答最初的问题,但OP询问如何在没有客户端的情况下使用NordVPN (或其他虚拟专用网),所以对于NordVPN,我这样做了:
cd ~/Downloads
wget https://downloads.nordcdn.com/configs/archives/servers/ovpn.zip
unzip ovpn.zip访问此地址,并向您提供本地推荐服务器:https://nordvpn.com/servers/tools/
打开Ubuntu Settings -> Network并单击+ by VPN并选择Import from file...
从.ovpn中选择相关下载的~/Downloads文件
输入您的nordvpn用户名/密码
现在,您可以从Ubuntu网络设置或Ubuntu右上下拉菜单启用/禁用VPN,而无需重新输入密码。
可选的,如果您总是想通过VPN运行,然后运行nm-connection-editor并编辑您的网络连接的设置(而不是您的VPN) (常规选项卡),以自动连接到您选择的VPN。
发布于 2021-10-24 01:14:18
联系了他们的支持。NordVPN需要更新他们的网站内容
cd /etc/apt/sources.list.d
echo "deb https://repo.nord-apps.net/deb/nordvpn/debian stable main" > nordvpn.list
sudo apt-get update
sudo apt-get install nordvpnhttps://askubuntu.com/questions/1310369
复制相似问题