求甲骨文arm开机后的常用脚本博客地址,之前忘收藏了

100次阅读

共计 3296 个字符,预计需要花费 9 分钟才能阅读完成。

找了很久没找到

网友回复:

注册 炖一个

geeklemon 用 v 老 D 成 debain,然后随便玩

log d 了会增加封的几率吗

poly dd

geeklemon 同问

geeklemon 开机了之后,第一件事情: 允许 root 登录,改密码。经历过的 ssh key 死活不对只能删鸡重建的,懂的都懂

shitou Root 权限:sudo -i Root 密码修改:bash <(curl -Ls https://github.com/baoqihui/script/raw/main/root.sh) 或 sudo -i wget -N https://cdn.jsdelivr.net/gh/Misaka-blog/[email protected]/root.sh && chmod -R 777 root.sh && bash root.sh 更新系统,开放端口 bash <(curl -Ls https://github.com/baoqihui/script/raw/main/init.sh) 1. 安装相关依赖 centos 系统下 yum update -y                                                                                                 apt-get update -y && apt-get install curl -y ubuntu 系统下 apt update -y apt-get update -y && apt-get install curl -y 2: Ubuntu 系统依赖升级 apt-get update apt-get upgrade apt-get dist-upgrade 3:删除、关闭、打开各自系统的无用附件、防火墙、端口及规则 注意 Centos 系统下:删除多余附件 systemctl stop oracle-cloud-agent systemctl disable oracle-cloud-agent systemctl stop oracle-cloud-agent-updater systemctl disable oracle-cloud-agent-updater 停止 firewall systemctl stop firewalld.service 禁止 firewall 开机启动 systemctl stop firewalld.service systemctl disable firewalld.service 注意 Centos 和 Ubuntu 系统下:开放所有端口 iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -F Ubuntu 镜像默认设置了 Iptable 规则,关闭它 apt-get purge netfilter-persistent reboot 或者强制删除 rm -rf /etc/iptables && reboot 关闭防火墙: systemctl stop firewalld.service && systemctl disable firewalld.service 甲骨文云开启 IPV6 参考 https://51.ruyo.net/17105.html V2ray 搭建:sudo apt install -y curl wget -N –no-check-certificate -q -O install.sh “https://raw.githubusercontent.com/wulabing/V2Ray_ws-tls_bash_onekey/master/install.sh” && chmod +x install.sh && bash install.sh 八合一脚本 wget -P /root -N –no-check-certificate “https://raw.githubusercontent.com/mack-a/v2ray-agent/master/install.sh” && chmod 700 /root/install.sh && /root/install.sh Xray 搭建 wget -N https://raw.githubusercontents.com/Misaka-blog/Xray-script/master/xray.sh && bash xray.sh Misaka 工具箱 wget -N https://cdn.jsdelivr.net/gh/Misaka-blog/[email protected]/MisakaToolbox.sh && chmod -R 777 MisakaToolbox.sh && bash MisakaToolbox.sh x-ui 搭建 bash <(curl -Ls https://raw.githubusercontents.com/vaxilu/x-ui/master/install.sh) BBR 加速(系统自带 BBR):参考 https://www.qiuvps.com/699.html 或 #首先先更新下系统,然后安装依赖组建:apt-get update apt-get update && apt-get install -y wget curl #之后开启原生 BBR:echo “net.core.default_qdisc=fq” >> /etc/sysctl.conf echo “net.ipv4.tcp_congestion_control=bbr” >> /etc/sysctl.conf sysctl -p #检测是否正常开启 BBR:sysctl net.ipv4.tcp_available_congestion_control lsmod | grep bbr tcp 优化加速脚本 wget http://sh.nekoneko.cloud/tools.sh -O tools.sh && bash tools.sh VPS 内存日志自动清理 bash <(curl -Lso- https://vmshell.com/adpic/vmshellvps.sh) MTPorxy 参考 https://github.com/seriyps/mtproto_proxy 或 https://github.com/HirbodBehnam/MTProtoProxyInstaller netfilx 检测:参考 https://github.com/CoiaPrant/MediaUnlock_Test 或  https://github.com/lmc999/RegionRestrictionCheck Warp: 参考 https://github.com/kkkyg/CFwarp 或 https://github.com/fscarmen/warp SuperSpeed 全面测速版 bash <(curl -Lso- https://git.io/Jlkmw) SuperBench 测试脚本 wget -qO- –no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash #或者 curl -Lso- -no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superb 检测 VPS 回程国内三网路由:curl https://raw.githubusercontent.com/zhucaidan/mtr_trace/main/mtr_trace.sh|bash 支持的线路为:电信 CN2 GT,电信 CN2 GIA,联通 169,电信 163,联通 9929,联通 4837,移动 CMI Speedtest 测速 apt install speedtest-cli speedtest

笑花落半世琉璃 感谢大佬,爱你哟

zscontinent 记得 oracle 填了密匙以后,ubuntu 默认登录的用户名是 ubuntu 之前没发现,如果 ssh [email protected] 是肯定登录不了的,用户名改成 ubuntu 就行了

注册 嗯嗯 已经登录上了,用户名输错 ssh 会提示使用“ubuntu”的

正文完
 0