What is the maximum transfer rate allowed for rsync? I mean the limitations? I can't get more than 50Mbit speed in my gigabit lan, with rsync server or with ssh. ftp transfers reach >400Mbit , so it is not a lan or nic problem. Maybe it has something to do with my cpu limitations? or the limitations for rsync is the 50Mb/s? Here is my rsyncd.conf if it helps> # by gourgi > max connections = 100 > log file = /var/log/rsync.log > timeout = 300 > [disks] > comment = rsync disks > path = /disks > read only = no > list = yes > uid = nobody > gid = nogroup > #auth users = gourgi > list = yes > #hosts allow = 127.0.0.0/8 192.168.0.0/24 > #secrets file = /etc/rsyncd.secretsand here is how i sync> rsync -avz rsync://192.168.0.X/disks/4backup /disks/mybackupor>here is rsync version on both systems> Version: 2.6.9-6ubuntu2
Tue, 18 Nov 2008 20:30:15 +0200, gourgi wrote:> rsync -avz rsync://192.168.0.X/disks/4backup /disks/mybackupWhat happens if you use only -a? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://lists.samba.org/archive/rsync/attachments/20081118/27b9168b/attachment.bin
2008/11/18 Sven Hartrumpf <Sven.Hartrumpf@fernuni-hagen.de>:> Tue, 18 Nov 2008 20:30:15 +0200, gourgi wrote: >> rsync -avz rsync://192.168.0.X/disks/4backup /disks/mybackup > > What happens if you use only -a? > > -- > Please use reply-all for most replies to avoid omitting the mailing list. > To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync > Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html >you are right! that did the trick, problem solved. i should tried without compression before posting here thanks Sven BTW the speed now reaches 250-300 Mbit which is pretty cool. thanks again. gourgi