侧边栏壁纸
  • 累计撰写 99 篇文章
  • 累计创建 54 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

Debian 常用一键脚本

FlyingEagle
2022-06-30 / 0 评论 / 0 点赞 / 21 阅读 / 872 字
  • 更新当前的软件包核安全补丁到最新版本
apt update && apt upgrade -y
  • 流媒体测试
bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)
  • 懒人专用 小鸡一键管理脚本 [v2.0.13]
wget -N --no-check-certificate https://raw.githubusercontent.com/veip007/hj/master/hj.sh && chmod +x hj.sh && bash hj.sh
  • 三网测速
bash <(curl -Lso- https://git.io/superspeed_uxh)
  • Debian原生BBR
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p
lsmod | grep bbr
  • Xui安装升级一键代码
bash <(curl -Ls https://raw.githubusercontent.com/vaxilu/x-ui/master/install.sh)
  • BlueSkyXN 综合工具箱
wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh

查看磁盘

df -h

yabs 测试脚本

curl -sL yabs.sh | bash

superbench

bash <(wget -qO- https://down.vpsaff.net/linux/speedtest/superbench.sh)
0

评论区