3

With parameter --limit-rate=80k, downloading speed with wget can be limited in 80k/s.

url="http://caesar.acc.umu.se/debian-cd/current/amd64/iso-cd/debian-8.7.1-amd64-CD-1.iso";
wget --limit-rate=80k -c $url -O /tmp/debian.iso

Now I want to control the download speed within 80k/s too in firefox. How to set a limit?

enter image description here

Can iptable or tc do the task?

200_success
  • 5,496
  • 1
  • 26
  • 34
showkey
  • 79
  • 23
  • 67
  • 128

1 Answers1

3

use trickle

trickle -d 80 firefox

or use flashgot, which can download files with wget.

Ipor Sircer
  • 14,376
  • 1
  • 27
  • 34