侧边栏壁纸
博主头像
MenTer博主等级

燃烧生命去过每一天!

  • 累计撰写 8 篇文章
  • 累计创建 7 个标签
  • 累计收到 2 条评论

目 录CONTENT

文章目录

Linux一些常用脚本——持续更新

MenTer
2022-11-01 / 0 评论 / 0 点赞 / 170 阅读 / 300 字 / 正在检测是否收录...

综合工具箱(集合很多脚本)

wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh

测试相关

机器测试

单线程测试

bash <(curl -Lso- https://bench.im/hyperspeed)

最全测速版本

curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast

superbench

wget -qO- git.io/superbench.sh | bash

Bench.sh

wget -qO- bench.sh | bash

速度测试

直接显示回程线路

curl https://raw.githubusercontent.com/zhucaidan/mtr_trace/main/mtr_trace.sh|bash
wget -q route.f2k.pub -O route && bash route
# 第一个
wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh
bash testrace.sh

# 第二个
wget -qO- git.io/besttrace | bash

四网测速

wget -O jcnf.sh https://raw.githubusercontent.com/Netflixxp/jcnfbesttrace/main/jcnf.sh

bash jcnf.sh

三网测速

bash <(curl -Lso- https://git.io/superspeed_uxh)

带快速四网测试版本:

bash <(curl -Lso- https://dl.233.mba/d/sh/speedtest.sh)
bash <(curl -Lso- https://git.io/J1SEh)

带综合测试的版本(CPU信息、Geekbench等):

bash <(wget --no-check-certificate -O- https://dl.233.mba/d/sh/superbenchpro.sh)

来源:https://www.wrnxr.cn/163.html

服务器同步时间

Centos 同步时间

yum -y install ntpdate
timedatectl set-timezone Asia/Shanghai
ntpdate ntp1.aliyun.com

防火墙

Centos 关闭防火墙

systemctl start supervisord
systemctl disable firewalld
systemctl stop firewalld
0

评论区