甲骨文云VPS利用
sunshj Lv4

V2ray搭建教程


以Oracle Cloud为例

Oracle 的云主机自带了不少的监控进程,有时会造成主机卡顿的情况,我们可以通过以下方法卸载它们

Centos7

1
2
3
4
systemctl stop oracle-cloud-agent
systemctl disable oracle-cloud-agent
systemctl stop oracle-cloud-agent-updater
systemctl disable oracle-cloud-agent-updater

关闭防火墙

1
systemctl disable firewalld.service

unbuntu

关闭无用进程及防火墙

1
2
3
4
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -F
1
2
apt-get purge netfilter-persistent
reboot

一键安装脚本


一键安装Vless/Vmess

1
bash <(curl -sL https://s.hijk.art/v2ray.sh)

或者

1
wget -N --no-check-certificate -q -O install.sh "https://raw.githubusercontent.com/wulabing/V2Ray_ws-tls_bash_onekey/dev/install.sh" && chmod +x install.sh && bash install.sh

参照:

 评论