- 查看IP以及连接数
netstat -an|awk -F: '{print $2}'|sort|uniq -c|sort -nr|head
- Linux查配置与测速(IO,系统,硬件配置,网络测速)
wget -qO- bench.sh | bash
- BBR一键脚本(生产环境慎用)
wget --no-check-certificate -O tcp.sh https://github.com/cx9208/Linux-NetSpeed/raw/master/tcp.sh && chmod +x tcp.sh && ./tcp.sh
- Docker一键安装
curl -fsSL https://get.docker.com | bash
- 一键DD系统为Debian 11
默认密码为MoeClub.org
,支持KVM/XEN,不支持OpenVZ。
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a
- TCP窗口调优,可提升单线程速度
wget -N "http://sh.nekoneko.cloud/tools.sh" -O tools.sh && chmod +x tools.sh && ./tools.sh
- Docker快速开启socks5代理并设置临时代理加速下载
#国外机器
docker run -d --name=tinyproxy -p 7777:8888 endoffight/tinyproxy ANY
#国内机器
export http_proxy=http://国外机器ip:7777
export https_proxy=http://国外机器ip:7777
1 条评论
555