您好,登錄后才能下訂單哦!
http://blog.chinaunix.net/uid-23544240-id-3488256.html
一、scp限速1M
scp -l 1000 文件名 賬號@遠程機器IP
此時的傳輸速率就是1M/8=100K左右
二、rsync是(限制為 100k Bytes/s):
rsync -auvzP--bwlimit=100 本地的文件 遠程的文件
參數說明:
v:詳細提示
a:以archive模式操作,復制目錄、符號連接,等價于 -rlptgoD 。
z:壓縮
u:只進行更新,防止本地新文件被重寫,注意兩者機器的時鐘的同時
P:是綜合了--partial --progress兩個參數,
所以此時的rsync支持了斷點續傳
機房之間傳文件一般都擔心帶寬占用太多,特別是在共用帶寬的情況下。常用的兩個軟件都可以限速:
scp可以加上 -l 參數:
引用
-l limit
Limits the used bandwidth, specified in Kbit/s.
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
--like --write-batch but w/o updating dest
KBs是KByte/s的縮寫,Kbit/s應該是Kbps(縮寫為KB/s)。KB/s通常用于傳輸速度,例如在復制文件時。Kb/s通常用
于寬帶速度,如512Kb/s.
寬帶通常以每秒千字節為單位安裝,但實際下載速度與通常的千字節完全不同。例如:512kbps寬帶,下載速度每秒
512 / 8=64KB/s。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。