Download speed of updates #4743
|
How do I limit the download speed of updates on Blufin? It's taking up too much of my line. |
Replies: 2 comments
|
I do not know of a single Bluefin setting that reliably caps update downloads to "X MB/s" across every update path. Because Bluefin updates can involve both the OS image and apps, it helps to split the problem into two likely sources: the system image update path ( If you are not sure which one is filling the line, these checks should separate them: bootc status
systemctl list-timers | grep -Ei 'update|bootc|rpm|flatpak|ublue'
flatpak remotesIf the system image update is the heavy one, the practical workaround is usually to schedule it rather than throttle it: turn off the automatic update timer you find in If Flatpak/Bazaar updates are the heavy part, handle those separately with manual A local Linux traffic-shaping tool can work, but it will usually cap the whole interface or require more fragile per-process rules. For most Bluefin installs, scheduling updates or applying a router-side limit is the cleaner path. If that distinction points you in the right direction, please mark the reply as answered so others looking for update bandwidth limits can find it. |
|
AI advised setting the connection as "Metered Connection". Updates will then not be downloaded automatically. |
I do not know of a single Bluefin setting that reliably caps update downloads to "X MB/s" across every update path. Because Bluefin updates can involve both the OS image and apps, it helps to split the problem into two likely sources: the system image update path (
ujust update/bootc upgrade) and Flatpak app updates (flatpak updateor Bazaar).If you are not sure which one is filling the line, these checks should separate them:
If the system image update is the heavy one, the practical workaround is usually to schedule it rather than throttle it: turn off the automatic update timer you find in
s…