输入下面命令回车,你可以复制过去,然后在 Xshell 界面按 Shift + Insert 即可粘贴,不能按 Ctrl + V 的。。
bash <(curl -s -L https://git.io/v2ray.sh)
如果提示 curl: command not found ,那是因为你的 VPS 没装 Curl
ubuntu/debian 系统安装 Curl 方法: apt-get update -y && apt-get install curl -y
centos 系统安装 Curl 方法: yum update -y && yum install curl -y
安装好 curl 之后就能安装脚本了
============================================================================
附vir 一键dd 第三方脚本的方法:
#进去面板重装默认选“AlmaLinux 8.3 (64-Bit)”
#然后进入SSH后更新下
yum update
#DD网络重装个Debian 9,端口22,密码password
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password password --version 9
sudo shutdown -r now
#DD网络重装个Debian 10,端口22,密码password
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password password --version 10
sudo shutdown -r now
#DD网络重装个Debian 11,端口22,密码password
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password password --version 11
sudo shutdown -r now |
文章评论