How to set rsync speed limit from eating all bandwidth with ‐‐bwlimit option

The --bwlimit option in rsync allows you to limit the bandwidth used by the transfer. You can specify the bandwidth limit in kilobytes per second.

For example, to limit the transfer speed to 128 kilobytes per second, use the following command:

rsync --bwlimit=128 <source> <destination>

where <source> and <destination> are the paths to the source and destination directories.

Note that the --bwlimit option is only available in rsync version 3.0 or later.

Leave a Comment