Displaying 1 result from an estimated 1 matches for "014623".
Did you mean:
01423
2013 Mar 06
1
[Bug 7120] Variable bandwidth limit .. bwlimit
mhh - interesting question......
what about combining the power of throttle ( http://linux.die.net/man/1/throttle ) or similar tools (there are some more like this) with rsync ?
via this hint: http://lists.samba.org/archive/rsync/2006-February/014623.html i got a clue how to combine rsync and throttle and gave it a try :
cat throttle-wrap
#!/bin/bash
throttle -k 1 -s 1| "$@"
rsync --rsh='/tmp/throttle-wrap ssh' -avz /src user at host:/dest
seems to work fine for me, but mind that throttle needs -s 1 as this seems to circu...