时间:2015-02-28 08:25:00 作者:qipeng 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150227/39303.html 手机查看 评论 反馈
从输出可以看到,下载速度大约是381 KB/s。我想限制下载速度到13 K/s,这样我就可以用我的带宽做其他的事情了。下面的命令用来限制wget速度到13 K/s。
ravisaive@ravisaive-OptiPlex-380:~$ trickle -d 13 wget https://sourceforge.net/projects/pearoslinux/files/Pear%20OS%208/pearos8-i386.iso/download
--2013-11-20 12:01:19-- https://sourceforge.net/projects/pearoslinux/files/Pear%20OS%208/pearos8-i386.iso/download
Resolving sourceforge.net (sourceforge.net)。。。 216.34.181.60
Connecting to sourceforge.net (sourceforge.net)|216.34.181.60|:80.。。 connected.
HTTP request sent, awaiting response.。。 302 Found
Location: https://downloads.sourceforge.net/project/pearoslinux/Pear%20OS%208/pearos8-i386.iso?r=&ts=1384929129&use_mirror=kaz [following]
--2013-11-20 12:01:19-- https://downloads.sourceforge.net/project/pearoslinux/Pear%20OS%208/pearos8-i386.iso?r=&ts=1384929129&use_mirror=kaz
Resolving downloads.sourceforge.net (downloads.sourceforge.net)。。。 216.34.181.59
Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.34.181.59|:80.。。 connected.
HTTP request sent, awaiting response.。。 302 Found
Location: https://kaz.dl.sourceforge.net/project/pearoslinux/Pear%20OS%208/pearos8-i386.iso [following]
--2013-11-20 12:01:20-- https://kaz.dl.sourceforge.net/project/pearoslinux/Pear%20OS%208/pearos8-i386.iso
Resolving kaz.dl.sourceforge.net (kaz.dl.sourceforge.net)。。。 88.204.157.163
Connecting to kaz.dl.sourceforge.net (kaz.dl.sourceforge.net)|88.204.157.163|:80.。。 connected.
HTTP request sent, awaiting response.。。 200 OK
Length: 1093664768 (1.0G) [application/octet-stream]
Saving to: ‘download.1’
0% [ ] 2,01,550 13.1KB/s eta 21h 5m
从输出可以看到,下载速度被限制到了13K/s。下载将会持续21小时5分钟。上面的“-d”选项表示下载,还可以结合使用 “-d”选项和上传选项(-u),如下例所示。
# trickle -u 100 -d 50 ftp
上面的命令限制ftp 客户端的上传速度为100K/s,下载速度为50K/s。还可以使用下面的命令,限制在一个shell里运行的所有命令的带宽。
trickle -d 130 -u 13 bash
每个命令行工具都对用户提供了帮助,使用“trickle -h”命令来找出更多trickle工具的用法。
root@oltjano-X55CR:/usr/bin# trickle -h
Usage: trickle [-hvVs] [-d 《rate》] [-u 《rate》] [-w 《length》] [-t 《seconds》]
[-l 《length》] [-n 《path》] command 。。。
-h Help (this)
-v Increase verbosity level
-V Print trickle version
-s Run trickle in standalone mode independent of trickled
-d 《rate》 Set maximum cumulative download rate to 《rate》 KB/s
-u 《rate》 Set maximum cumulative upload rate to 《rate》 KB/s
-w 《length》 Set window length to 《length》 KB
-t 《seconds》 Set default smoothing time to 《seconds》 s
-l 《length》 Set default smoothing length to 《length》 KB
-n 《path》 Use trickled socket name 《path》
-L 《ms》 Set latency to 《ms》 milliseconds
-P 《path》 Preload the specified .so instead of the default one
总结
上面就是Linux安装使用Trickle的方法介绍了,可以看出,通过Trickle限制下载上传速度后,下载东西就不会影响你浏览网页了,但Trickle不能限制使用UDP协议的宽带。
发表评论
共0条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场