sudo apt-get install trickle php -S 127.0.0.1:8080 -t ./ 生成一個1MB的文件test: dd if=/dev/zero of=test bs=1M count=1 以256KB/s的速度wget下載1MB的test,耗時3.8秒: time trickle -s -d 256 wget http://127.0.0.1:8080/test -O /dev/null 以256KB/s的速度curl下載1MB的test,耗時5.8秒: time trickle -s -d 256 curl http://127.0.0.1:8080/test -o /dev/null time trickle -s -d 256 curl http://127.0.0.1:8080/test -o test2 -s 表示獨立運行,由於trickle還有一個trickled管理端能夠用 -d 表示下載方向,單位都是KB/s -u 表示上傳方向,單位都是KB/s