下载 V2Ray
- Github Release: github.com/v2ray/v2ray-core
- Github 分流: github.com/v2ray/dist
- Homebrew: github.com/v2ray/homebrew-v2ray
- Arch Linux: packages/community/x86_64/v2ray
- Snapcraft: snapcraft.io/v2ray-core
- 原安装脚本已被弃置,由 fhs-install-v2ray替换。
老版本安装
1 | bash <(curl -L -s https://install.direct/go.sh) |
此脚本会自动安装以下文件:
1 | /usr/bin/v2ray/v2ray:V2Ray 程序; |
此脚本会配置自动运行脚本。自动运行脚本会在系统重启之后,自动运行 V2Ray。目前自动运行脚本只支持带有 Systemd 的系统,以及 Debian / Ubuntu 全系列。
运行脚本位于系统的以下位置:
1 | /etc/systemd/system/v2ray.service: Systemd |
脚本运行完成后,你需要:
编辑 /etc/v2ray/config.json
文件来配置你需要的代理方式;
运行 service v2ray start
来启动 V2Ray 进程;
之后可以使用 service v2ray start|stop|status|reload|restart|force-reload
控制 V2Ray 的运行。
新版本安装
debian
安装依赖
1 | apt update |
centos7
安装依赖
1 | yum makecache |
centos或者debian安装完毕依赖执行下面代码
1 | curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh |
安装和更新V2Ray
1 | bash install-release.sh |
文件路径
1 | info: unzip is installed. |
安裝最新發行的 geoip.dat 和 geosite.dat
1 | bash install-dat-release.sh |
创建编辑配置文件
1 | cd /usr/local/etc/v2ray |
在/usr/local/etc/v2ray下面创建一个新的config.json配置文件
复制以下代码到config.json
1 | { |
v2ray调试
1 | sudo systemctl restart v2ray |
设置v2ray开机启动
1 | systemctl enable v2ray |
BBr安装
1 | wget "https://raw.githubusercontent.com/ComeBey/rootfw-bbr/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh |
如果想卸载V2Ray执行下面代码
1 | bash install-release.sh --remove |