From 36e57c4a47a8b3d3cd376254ad1b0f6c5cdea142 Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Sat, 16 Aug 2025 00:53:47 +0200 Subject: [PATCH] Fix Rsync/SSH transfert speed --- tools/sync_data.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/sync_data.sh b/tools/sync_data.sh index 0027c61..2e240bd 100755 --- a/tools/sync_data.sh +++ b/tools/sync_data.sh @@ -10,4 +10,8 @@ fi SOURCE="${1}" DEST="${2}" -rsync -e 'ssh -p 2222' --progress --human-readable --archive --verbose --compress --acls --xattrs --bwlimit=30000 --stats --delete-during "${SOURCE}" "${DEST}" +# --bwlimit=30000 --whole-file + +rsync -e "ssh -p 2222 -o Compression=no" \ + --progress --human-readable --archive --stats --verbose --acls --xattrs --stats --delete-during \ + "${SOURCE}" "${DEST}"