Good morning all, I?m using rsync v3.0.0 on both ends. The source is Fedora Core 4 and the destination is MacOS 10.5.2. I?m trying to sync a file system with roughly 5,000,000 files checking in about 1.2TB. I use the command rsync ?avP ?e shh root@mustang:/filevault . From my MacOS machine and I get the following after about 400GB has been copied: filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/MySQL.H -> ../../../4.7.2_fedora-LINUX/include/libinc/MySQL.H filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/libRTM.h -> ../../../4.7.2_fedora-LINUX/include/libinc/libRTM.h filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/librtm.h -> ../../../4.7.2_fedora-LINUX/include/libinc/librtm.h filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc/mysql.h -> ../../../4.7.2_fedora-LINUX/include/libinc/mysql.h overflow: linkname_len=2751 ERROR: buffer overflow in recv_file_entry [receiver] rsync error: error allocating core memory buffers (code 22) at util.c(123) [receiver=3.0.0] rsync: writefd_unbuffered failed to write 5 bytes [generator]: Broken pipe (32) rsync error: error in rsync protocol data stream (code 12) at io.c(1500) [generator=3.0.0] hotlap:Source brian$ What am I missing? -brian -------------- next part -------------- HTML attachment scrubbed and removed
On Thu, Mar 27, 2008 at 07:32:30AM -0700, Brian D. McGrew wrote:> overflow: linkname_len=2751Is there a symlink with a really long path in that filevault/visionpro/release/4.7.2_fedora-LINUX-g/include/libinc dir? The name must fit inside the system's MAXPATHLEN, and a link of 2751 bytes is apparently too long for the receiving system. ..wayne..