0

I want to slow down internet connection for some apps, so that other apps can have more MB/s. Is there any way to control the flow of internet between apps?

Thanks for response!

McDuck
  • 105

1 Answers1

1

I think trickle is what you're looking for. https://askubuntu.com/a/181411/452485

sudo apt install trickle

Limit the upload and/or download speeds for a specific application using the following command.

trickle -u (upload limit in KB/s) -d (download limit in KB/s) application-name

Robby1212
  • 880