关于Linux最常用的几个脚本
巡检测速
首先第一个就是关于Linux系统基本信息和网速的测试脚本,它可以进行一些Linux系统的基本巡检,比如 CPU个数 内存大小等:
1 | wget -qO- sb.oldking.net | bash |
Gost转发
第二个脚本就是Gost加密的一键脚本:1
wget --no-check-certificate -O gost.sh https://cdn.jsdelivr.net/gh/surplus23333/cdn@latest/download/gost.sh && chmod +x gost.sh && ./gost.sh
Brook转发
第三个脚本是Brook转发的一键脚本:1
wget -N --no-check-certificate https://cdn.jsdelivr.net/gh/surplus23333/cdn@latest/download/brook-pf-mod.sh && bash brook-pf-mod.sh
Socat转发
第四个脚本是轻量级转发程序 Socat的一键脚本:1
wget https://www.moerats.com/usr/shell/socat.sh && bash socat.sh
BBR加速脚本合集
第五个 最常用的加速脚本合集[适用于kvm架构]:
四合一
1 | wget -N --no-check-certificate "https://ghproxy.com/https://raw.githubusercontent.com/xiaoyiya/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh |
六合一
六合一不卸载内核,不会出现丢失内核情况《推荐》:1
wget -N --no-check-certificate "https://github.com/ylx2016/Linux-NetSpeed/raw/master/tcpx.sh" && chmod +x tcpx.sh && ./tcpx.sh
Docker
第六个脚本 Docker一键安装:1
curl -sSL https://get.docker.com/ | sh && systemctl start docker && systemctl enable docker
系统重装DD
第七个脚本 系统重装DD脚本合集:1
wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/dd/master/dd-gd.sh && chmod +x dd-gd.sh && ./dd-gd.sh
TCP优化加速
第八个脚本 由neko提供的tcp优化加速脚本[听说很好用]:1
wget http://sh.nekoneko.cloud/tools.sh -O tools.sh && bash tools.sh
X-ui
第九个脚本 X-ui一键安装脚本[不详细介绍懂得都懂]:1
bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)
Mtproto 一键搭建
第十个脚本 一键搭建 Telegram 的Mtproto代理 (懂得都懂)1
bash <(curl -sL https://s.hijk.art/mtproto.sh)
一键同步北京时间
第十一个脚本 一键同步北京时间,适用于国外的vps1
bash <(curl -sL https://d.wcnmd.fun/updatatime.sh)
后续想起好的脚本也会继续添加&