1
YonionY 2015-02-05 20:29:10 +08:00 1
wget
|
2
paw 2015-02-05 20:31:45 +08:00 1
开nginx
dd if=/dev/zero of=test.file bs=1M count=500 然后本地多线程下载 这样可以把~~? |
3
halczy 2015-02-05 20:33:49 +08:00 via iPhone 1
Iperf
|
4
sandtears 2015-02-05 20:44:31 +08:00 1
随便弄个大点的文件,可以用 dd 弄,然后
python -m SimpleHTTPServer 然后本机连接 http://my_vps_ip:8000/ 并下载 |
5
pandada8 2015-02-05 20:48:01 +08:00 1
iperf 正解
|
6
DearTanker 2015-02-05 20:48:27 +08:00 1
yum install httpd
chkconfig httpd on cd /etc/httpd/conf.d rm -f ./* cd /var/www/html wget http://speedtest.tokyo.linode.com/100MB-tokyo.bin service httpd start 然后访问IP,点一下100MB-tokyo.bin文件进行下载,就知道到本地的速度了? |
7
KyonLi 2015-02-05 21:07:32 +08:00 4
|
11
Exin OP |