1、scp限速1M url
#scp -l 1000 文件名 帳號@遠程機器IP orm
此時的傳輸速率就是1M/8=100K左右 ci
2、rsync是(限制爲 100k Bytes/s): get
#rsync -auvzP--bwlimit=100 本地的文件 遠程的文件 it
參數說明: www.2cto.com form
v:詳細提示 百度
a:以archive模式操做,複製目錄、符號鏈接,等價於 -rlptgoD 。 sed
z:壓縮 軟件
u:只進行更新,防止本地新文件被重寫,注意二者機器的時鐘的同時 date
P:是綜合了--partial --progress兩個參數,
因此此時的rsync支持了斷點續傳
機房之間傳文件通常都擔憂帶寬佔用太多,特別是在共用帶寬的狀況下。經常使用的兩個軟件均可以限速:
www.2cto.com
scp能夠加上 -l 參數:
引用
-l limit
Limits the used bandwidth, specified in Kbit/s.
www.2cto.com
rsync能夠加上 --bwlimit 參數
引用
-i, --itemize-changes output a change-summary for all updates
--log-format=FORMAT output filenames using the specified format
--password-file=FILE read password from FILE
--list-only list the files instead of copying them
--bwlimit=KBPS limit I/O bandwidth; KBytes per second
--write-batch=FILE write a batched update to FILE
--only-write-batch=FILE like --write-batch but w/o updating dest
rsync 百度百科