How to slow down internet connection?
I have a very large download to perform which is low priority.
Can I throttle back the networking speed of my Ubuntu 18.10 so this download does not bog down my connection which is shared with other computers?
I am on a home wifi connection.
I can use a browser to perform this download or wget, etc... yet do not see such a setting.
networking wireless bandwidth download-speed
add a comment |
I have a very large download to perform which is low priority.
Can I throttle back the networking speed of my Ubuntu 18.10 so this download does not bog down my connection which is shared with other computers?
I am on a home wifi connection.
I can use a browser to perform this download or wget, etc... yet do not see such a setting.
networking wireless bandwidth download-speed
add a comment |
I have a very large download to perform which is low priority.
Can I throttle back the networking speed of my Ubuntu 18.10 so this download does not bog down my connection which is shared with other computers?
I am on a home wifi connection.
I can use a browser to perform this download or wget, etc... yet do not see such a setting.
networking wireless bandwidth download-speed
I have a very large download to perform which is low priority.
Can I throttle back the networking speed of my Ubuntu 18.10 so this download does not bog down my connection which is shared with other computers?
I am on a home wifi connection.
I can use a browser to perform this download or wget, etc... yet do not see such a setting.
networking wireless bandwidth download-speed
networking wireless bandwidth download-speed
edited Jan 10 at 5:56
guiverc
4,32611522
4,32611522
asked Jan 10 at 4:31
Scott StenslandScott Stensland
4,81242242
4,81242242
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
wget
has --limit-rate
option for limiting the download speed; from man wget
:
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with
the m suffix. For example, --limit-rate=20k will limit the retrieval
rate to 20KB/s. This is useful when, for whatever reason, you don't
want Wget to consume the entire available bandwidth.
This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a
legal value.
Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified
by the rate. Eventually this strategy causes the TCP transfer to slow
down to approximately the specified rate. However, it may take some
time for this balance to be achieved, so don't be surprised if
limiting the rate doesn't work well with very small files.
FWIW, curl
also has a similar --limit-rate
option for controlling both upload and download speeds. Check man curl
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1108471%2fhow-to-slow-down-internet-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
wget
has --limit-rate
option for limiting the download speed; from man wget
:
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with
the m suffix. For example, --limit-rate=20k will limit the retrieval
rate to 20KB/s. This is useful when, for whatever reason, you don't
want Wget to consume the entire available bandwidth.
This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a
legal value.
Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified
by the rate. Eventually this strategy causes the TCP transfer to slow
down to approximately the specified rate. However, it may take some
time for this balance to be achieved, so don't be surprised if
limiting the rate doesn't work well with very small files.
FWIW, curl
also has a similar --limit-rate
option for controlling both upload and download speeds. Check man curl
.
add a comment |
wget
has --limit-rate
option for limiting the download speed; from man wget
:
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with
the m suffix. For example, --limit-rate=20k will limit the retrieval
rate to 20KB/s. This is useful when, for whatever reason, you don't
want Wget to consume the entire available bandwidth.
This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a
legal value.
Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified
by the rate. Eventually this strategy causes the TCP transfer to slow
down to approximately the specified rate. However, it may take some
time for this balance to be achieved, so don't be surprised if
limiting the rate doesn't work well with very small files.
FWIW, curl
also has a similar --limit-rate
option for controlling both upload and download speeds. Check man curl
.
add a comment |
wget
has --limit-rate
option for limiting the download speed; from man wget
:
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with
the m suffix. For example, --limit-rate=20k will limit the retrieval
rate to 20KB/s. This is useful when, for whatever reason, you don't
want Wget to consume the entire available bandwidth.
This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a
legal value.
Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified
by the rate. Eventually this strategy causes the TCP transfer to slow
down to approximately the specified rate. However, it may take some
time for this balance to be achieved, so don't be surprised if
limiting the rate doesn't work well with very small files.
FWIW, curl
also has a similar --limit-rate
option for controlling both upload and download speeds. Check man curl
.
wget
has --limit-rate
option for limiting the download speed; from man wget
:
--limit-rate=amount
Limit the download speed to amount bytes per second. Amount may be expressed in bytes, kilobytes with the k suffix, or megabytes with
the m suffix. For example, --limit-rate=20k will limit the retrieval
rate to 20KB/s. This is useful when, for whatever reason, you don't
want Wget to consume the entire available bandwidth.
This option allows the use of decimal numbers, usually in conjunction with power suffixes; for example, --limit-rate=2.5k is a
legal value.
Note that Wget implements the limiting by sleeping the appropriate amount of time after a network read that took less time than specified
by the rate. Eventually this strategy causes the TCP transfer to slow
down to approximately the specified rate. However, it may take some
time for this balance to be achieved, so don't be surprised if
limiting the rate doesn't work well with very small files.
FWIW, curl
also has a similar --limit-rate
option for controlling both upload and download speeds. Check man curl
.
answered Jan 10 at 5:22
heemaylheemayl
66.4k8139212
66.4k8139212
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1108471%2fhow-to-slow-down-internet-connection%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown