欢迎光临
我们一直在努力

scp和rsyc限速传输


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。

赞(0)
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。