需要提前准备好:能使用的sock代理。
1.在这里 https://nordvpn.com/zh/download/linux/ 下载初始安装包,这包不是真正的软件,而是会给你添加一个源,大概为了安全。
2.安装这个源:
sudo apt-get install ./nordvpn-release_1.0.0_all.deb
3.这个源被墙了,所以这就是需要代理的原因,参照我这个帖子 https://www.cnblogs.com/cnnnnnn/p/9813647.html,让apt走代理安装:
(一定要看完参考的帖子,不然下面没办法进行)
sudo tsocks apt-get update
4.从源里下载真正的包:
tsocks apt-get install nordvpn
5.如果出现
正在设置 nord××× (1.2.0) ...
Nord××× for Linux successfully installed!
To get started, type 'nord××× login' and enter your Nord××× account details. Then type 'nord××× connect' and you’re all set! If you need help using the app, use the command 'nord××× --help'.
这就表示成功了。
6. 有个比较重要的事情别忘了,就是那个源还在,以后apt update 的时候也必须挂梯子,不然就卡在那里不会完成的。为了以后方便使用,建议把它卸掉。
但卸载命令不可以用apt remove ,这只是卸了软件,配置还在。所以要连着配置也删掉:
apt-get purge nordvpn-release
好了。