r2v has to be replaced..
1. 官网下载zip版本,下载安装脚本
https://www.r2v.com/chapter_00/install.html
https://install.direct/go.sh
2. 使用安装脚本本地安装模式进行安装
sudo ./go.sh -l <r2v安装zip文件路径>
go.sh 参数
go.sh 支持如下参数,可在手动安装时根据实际情况调整:
-p
或--proxy
: 使用代理服务器来下载 r2v 的文件,格式与 curl 接受的参数一致,比如"socks5://127.0.0.1:1080"
或"http://127.0.0.1:3128"
。-f
或--force
: 强制安装。在默认情况下,如果当前系统中已有最新版本的 r2v,go.sh 会在检测之后就退出。如果需要强制重装一遍,则需要指定该参数。--version
: 指定需要安装的版本,比如"v1.13"
。默认值为最新版本。--local
: 使用一个本地文件进行安装。如果你已经下载了某个版本的 r2v,则可通过这个参数指定一个文件路径来进行安装。示例:
使用地址为 127.0.0.1:1080 的 SOCKS 代理下载并安装最新版本:
./go.sh -p socks5://127.0.0.1:1080
安装本地的 v1.13 版本:
./go.sh --version v1.13 --local /path/to/r2v.zip
3. 按以下网页配置:
https://huifeng.me/2018/10/12/The-Right-Way-Make-Linux-Desktop-Use-r2v-Service/
https://huifeng.me/2015/08/23/ProxyChains-NG-4-OSX-Setting/
脚本运行完成后,你需要:
编辑 /etc/r2v/config.json 文件来配置你需要的代理方式;
运行 service r2v start 来启动 r2v 进程;
之后可以使用 service r2v start|stop|status|reload|restart|force-reload 控制 r2v 的运行。
4. 自动启动配置:
#enable auto startup
systemctl enable r2v
#start | stop | restart r2v service
systemctl start | stop | restart r2v
Thats pretty much for server side now.