|

楼主 |
发表于 2024-10-23 10:44:24
|
显示全部楼层
3.下载xray-core/sing-box核心失败
一般在IP被滥用的情况下会出现(NAT机器尤为严重)
最快的解决方法是手动下载内核,下方的命令执行完毕后,重新执行脚本搭建。
查看CPU架构
uname -m
Bash
Xray-core
# 执行下面的命令,v1.8.16可以替换成自己想要的版本
# x86_64/amd64
wget -c -q -P /etc/v2ray-agent/xray/ https://github.com/XTLS/Xray-core/releases/download/v1.8.16/Xray-linux-64.zip && unzip -o "/etc/v2ray-agent/xray/Xray-linux-64.zip" -d /etc/v2ray-agent/xray
# armv8/aarch64
wget -c -q -P /etc/v2ray-agent/xray/ https://github.com/XTLS/Xray-core/releases/download/v1.8.16/Xray-linux-arm64-v8a.zip && unzip -o "/etc/v2ray-agent/xray/Xray-linux-arm64-v8a.zip" -d /etc/v2ray-agent/xray
Bash
sing-box
# 执行下面的命令,v1.9.3可以替换成自己想要的版本
# x86_64/amd64
wget -c -q -P /etc/v2ray-agent/sing-box/ https://github.com/SagerNet/sing-box/releases/download/v1.9.3/sing-box-1.9.3-linux-amd64.tar.gz && tar zxvf "/etc/v2ray-agent/sing-box/sing-box-1.9.3-linux-amd64.tar.gz" -C "/etc/v2ray-agent/sing-box/" && mv "/etc/v2ray-agent/sing-box/sing-box-1.9.3-linux-amd64/sing-box" /etc/v2ray-agent/sing-box/sing-box
# armv8/aarch64
wget -c -q -P /etc/v2ray-agent/sing-box/ https://github.com/SagerNet/sing-box/releases/download/v1.9.3/sing-b |
|