1.Hyperspeed 三网测速:
bash <(curl -Lso- https://bench.im/hyperspeed)
2. 综合测速脚本 nws.sh:
curl -sL nws.sh | bash
3. 多功能 自更新 测速脚本:
三网,含多线程,单线程等测速
bash <(curl -sL bash.icu/speedtest)
4.DD 磁盘测试 生成 5G 文件,顺序
dd if=/dev/zero of=5gb bs=1M count=5120
生成 5G 文件,随机
dd if=/dev/urandom of=5gb bs=1M count=5120
5,HTTP 单线程下载测试
服务端
启动简易 http 服务
python3 -m http.server
客户端
直接用浏览器下载或其他工具下载
建议用 edge 等浏览器
也可以试试 IDM 下载
替换下方 yourip 为你的 ip 地址
wget http://yourip:8000/5gb
删除测试文件
服务端删除文件:
rm 5gb