- Hyperspeed Network Speed Test:
bash <(curl -Lso- https://bench.im/hyperspeed)
- Comprehensive Speed Test Script nws.sh:
curl -sL nws.sh | bash
- Multi-functional Self-updating Speed Test Script:
Three networks, including multi-threaded, single-threaded speed tests
bash <(curl -sL bash.icu/speedtest)
- DD Disk Test Generate 5G File, Sequential:
dd if=/dev/zero of=5gb bs=1M count=5120
Generate 5G File, Random:
dd if=/dev/urandom of=5gb bs=1M count=5120
- HTTP Single Thread Download Test
Server
Start simple http service
python3 -m http.server
Client
Download directly using a browser or other tools
It is recommended to use browsers like Edge
You can also try IDM for downloading
Replace yourip below with your IP address
wget http://yourip:8000/5gb
Delete test file
Server delete file:
rm 5gb