V2rayA在linux下安装使用教程
一.安装 v2rayA
下载 deb 包
sudo apt install /root/installer_debian_xxx_vxxx.deb
### 自行替换 deb 包所在的实际路径
启动 v2rayA
sudo systemctl start v2raya.service
设置开机自动启动
sudo systemctl enable v2raya.service
通过 2017 端口访问 UI 界面。
二.安装 V2Ray 内核:
下载核心
wget -o /tmp/v2ray-linux-64.zip http://down.freenn.com/gz/v2ray-linux-64.zip
将其解压到
unzip /tmp/v2ray-linux-64.zip -d /usr/local/v2ray-core
修改配置让v2raya 使用v2ray-core
vi /etc/default/v2raya
添加配置
V2RAYA_V2RAY_BIN=/usr/local/v2ray-core/v2ray
V2RAYA_V2RAY_ASSETSDIR=/usr/local/v2ray-core
重启服务
systemctl restart v2raya