概述
V2rayA是一个跨平台的 V2Ray 客户端,关于v2ray的内容不再过多介绍,下面介绍安装过程。
官网:https://v2raya.org/
安装
Debian/Ubuntu
方法一:通过软件源安装
添加公钥
1
|
wget -qO - https://apt.v2raya.org/key/public-key.asc | sudo tee /etc/apt/keyrings/v2raya.asc
|
添加 V2RayA 软件源
1
2
|
echo "deb [signed-by=/etc/apt/keyrings/v2raya.asc] https://apt.v2raya.org/ v2raya main" | sudo tee /etc/apt/sources.list.d/v2raya.list
sudo apt update
|
安装 V2RayA
1
|
sudo apt install v2raya v2ray ## 也可以使用 xray 包
|
安装完成之后请看 启动v2raya
方法二:手动安装 deb 包
下载地址:
v2raya: https://github.com/v2rayA/v2raya-apt/tree/master/pool/main/v/v2ray
v2ray: https://github.com/v2rayA/v2raya-apt/tree/master/pool/main/v/v2raya
使用国内网盘:
123: https://www.123pan.com/s/4MOKVv-52Ppd.html提取码:7F4p
下载之后可以使用 Gdebi、QApt 等图形化工具来安装,也可以使用命令行:
1
|
sudo apt install ****.deb ### 自行替换 deb 包所在的实际路径
|
安装完成之后请看 启动v2raya
启动v2raya
从 1.5 版开始将不再默认为用户启动 v2rayA 及设置开机自动。
启动 v2rayA
1
|
sudo systemctl start v2raya.service v2ray.service
|
设置开机自动启动
1
|
sudo systemctl enable v2raya.service v2ray.service
|
web访问
Docker
Docker 镜像内集成了 V2Ray 内核,因此内核无需额外被安装。
docker
1)拉取镜像
1
|
docker pull mzz2017/v2raya
|
2)启动容器
1
2
3
4
5
6
7
8
9
10
11
|
# run v2raya
docker run -d \
--restart=always \
--privileged \
--network=host \
--name v2raya \
-e V2RAYA_LOG_FILE=/tmp/v2raya.log \
-v /lib/modules:/lib/modules:ro \
-v /etc/resolv.conf:/etc/resolv.conf \
-v /etc/v2raya:/etc/v2raya \
mzz2017/v2raya
|
如果你使用 MacOSX 或其他不支持 host 模式的环境,在该情况下无法使用全局透明代理,或者你不希望使用全局透明代理,docker 命令会略有不同:
1
2
3
4
5
6
7
8
9
|
# run v2raya
docker run -d \
-p 2017:2017 \
-p 20170-20172:20170-20172 \
--restart=always \
--name v2raya \
-e V2RAYA_LOG_FILE=/tmp/v2raya.log \
-v /etc/v2raya:/etc/v2raya \
mzz2017/v2raya
|
docker-compose
1)新建目录
1
2
|
mkdir -p ~/opt/v2raya
cd ~/opt/v2raya
|
2)在新建的目录下继续新建 docker-compose.yml
文件,粘贴以下内容
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
version: '3.9'
services:
v2raya:
image: mzz2017/v2raya
volumes:
- '/etc/v2raya:/etc/v2raya'
- '/etc/resolv.conf:/etc/resolv.conf'
- '/lib/modules:/lib/modules:ro'
environment:
- V2RAYA_LOG_FILE=/tmp/v2raya.log
container_name: v2raya
networks:
host: {}
privileged: true
restart: always
networks:
host: {}
|
保存退出 :wq
启动 容器(在docker-compose.yml所在的目录运行)
1
2
3
4
|
sudo docker compose up
# 后台启动
sudo docker compose up -d
|
停止容器
查看 容器
web访问
localhost:2017
Windows
目前在 Windows 上仅支持一键配置系统代理而非透明代理
通过 WinGet 自动安装
WinGet 是微软推出的软件包管理器,适用于 Windows 10 以及更新版本的操作系统。
1
|
winget install --id v2rayA.v2rayA
|
手动运行安装包
从 GitHub Releases 下载适用于 Windows 的安装包,例如
installer_windows_inno_x64_2.0.1.exe
,按照指示安装完毕即可。
使用方式
通过安装包安装 v2rayA 后,v2rayA 将以服务的形式运行,默认情况下将开机自启,你也可以在任务管理器中的“服务”选项卡管理 v2rayA 的启动与停止。
通过运行桌面快捷方式或直接访问 http://127.0.0.1:2017 打开管理页面。
免费节点
警告
订阅节点仅作学习交流使用,用于查找资料,学习知识,不做任何违法行为。所有资源均来自互联网,仅供大家交流学习使用,出现违法问题概不负责。
订阅地址
1
|
https://mirror.ghproxy.com/https://raw.githubusercontent.com/Barabama/FreeNodes/master/nodes/yudou66.txt
|
1
|
https://mirror.ghproxy.com/https://raw.githubusercontent.com/Barabama/FreeNodes/master/nodes/blues.txt
|
1
|
https://mirror.ghproxy.com/https://raw.githubusercontent.com/Barabama/FreeNodes/master/nodes/zyfxs.txt
|
合集
1
|
https://mirror.ghproxy.com/https://raw.githubusercontent.com/Barabama/FreeNodes/master/nodes/merged.txt
|