[Bug 11578] Rsync does start with an error directly connecting an USB drive to a port

2015-10-28 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=11578 --- Comment #5 from Armin Mohring <armin_mohr...@web.de> --- I think I have found the error: the usb 3.0 Hdd must be mounted first and then it can be acessed. -- You are receiving this mail because: You are the QA Contact for t

Re: large rsync fails with assertion error - bug #11506 was #6542 not fixed

2015-09-14 Thread Ken Chase
> >rsync: writefd_unbuffered failed to write 8 bytes to message fd [receiver]: Broken pipe > >(32) > >rsync error: error in rsync protocol data stream (code 12) at io.c(1532) [receiver=3.0.9] > >

Re: large rsync fails with assertion error

2015-09-08 Thread Ken Chase
receiver]: Broken pipe >(32) >rsync error: error in rsync protocol data stream (code 12) at io.c(1532) [receiver=3.0.9] > >

large rsync fails with assertion error

2015-09-08 Thread Ken Chase
rite 8 bytes to message fd [receiver]: Broken pipe (32) rsync error: error in rsync protocol data stream (code 12) at io.c(1532) [receiver

[Bug 11215] compression/zlib errors discard the zlib error message

2015-08-22 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=11215 --- Comment #1 from Shevek bugzi...@anarres.org --- I think this bug is affecting us too, over multi-gigabyte files. There's one specific file which is killing rsync, but it doesn't always kill it in the same place. -- You are receiving this mail

Re: Error with paths with ()'s

2015-08-18 Thread @lbutlr
On Aug 17, 2015, at 5:03 PM, Wayne Davison way...@samba.org wrote: The use of {} on the receiving (remote) side is superfluous -- just specifying a destination dir (your .../Drive5/ path) is enough for rsync to use the same name as the source file on the destination. That is the case if

Re: Error with paths with ()'s

2015-08-17 Thread @lbutlr
of syntactically meaningful things. That does not explain why bash is perfectly happy with the command line if it is a locally mounted disk (the same disk, in fact). Despite the error, this is not a bash problem. So, at a minimum, you need to escape/quote *both* of your file references {} - not just

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
to another drive and ran across an error I haven’t seen before. Normally I do this sync via a mounted file system, but this time I tried to do it over ssh: find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} \; bash: -c: line 0: syntax error near unexpected token

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It is true that you don't need the {} in the remote arg but due to the syntax you probably want --relative instead. On 08/17/2015 07:03 PM, Wayne Davison wrote: On Sun, Aug 16, 2015 at 11:13 PM, @lbutlr krem...@kreme.com mailto:krem...@kreme.com

Re: Error with paths with ()'s

2015-08-17 Thread Kevin Korb
the error, this is not a bash problem. So, at a minimum, you need to escape/quote *both* of your file references {} - not just the one. Find’s {} is escaped, just doesn’t seem to be escaped properly via ssh/rysnc. As I said, this works: find . -type f -atime -1 -exec rsync -aP

Re: Error with paths with ()'s

2015-08-17 Thread Wayne Davison
On Sun, Aug 16, 2015 at 11:13 PM, @lbutlr krem...@kreme.com wrote: find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} \; The use of {} on the receiving (remote) side is superfluous -- just specifying a destination dir (your .../Drive5/ path) is enough for rsync to use

Re: Error with paths with ()'s

2015-08-17 Thread @lbutlr
On Aug 17, 2015, at 4:05 AM, Kevin Korb k...@sanitarium.net wrote: If you want find to generate your list use --files-from: find . -type f -atime -1 -print0 | rsync -aP --files-from=- --from0 . 10.0.0.11:/Volumes/Drive5/ This works: find . -type f -atime -1 -exec rsync -aP {} /Drive5/{}

Re: Error with paths with ()'s

2015-08-17 Thread Joe
- as the file name so it uses the output of the find command as input to rsync. Once you get that sorted, any remaining errors should be a lot easier to fix. Joe On 08/17/2015 02:13 AM, @lbutlr wrote: I was trying to process a bunch of folders to sync them to another drive and ran across an error I

Error with paths with ()'s

2015-08-17 Thread @lbutlr
I was trying to process a bunch of folders to sync them to another drive and ran across an error I haven’t seen before. Normally I do this sync via a mounted file system, but this time I tried to do it over ssh: find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} \; bash

add rsync -A -X to Backuppc RsyncArgs get 'Got fatal error during xfer (fileListReceive failed)'

2015-06-25 Thread Bob of Donelson Trophy
. Backuppc uses RsyncArgs and RsyncRestoreArgs to create the rsync 'string' of commands to backup files. By adding the -A and -X to the RsyncArgs list. When backups are run the log files contains: Got fatal error during xfer (fileListReceive failed). Removing the -A and the -X allows the backup

Re: add rsync -A -X to Backuppc RsyncArgs get 'Got fatal error during xfer (fileListReceive failed)'

2015-06-25 Thread Kevin Korb
. When backups are run the log files contains: Got fatal error during xfer (fileListReceive failed). Removing the -A and the -X allows the backup to proceed without errors. Is there another 'switch' that needs to be added to allow the -A and -X to function without error? Anyone familiar

Re: add rsync -A -X to Backuppc RsyncArgs get 'Got fatal error during xfer (fileListReceive failed)'

2015-06-25 Thread Bob of Donelson Trophy
contains: Got fatal error during xfer (fileListReceive failed). Removing the -A and the -X allows the backup to proceed without errors. Is there another 'switch' that needs to be added to allow the -A and -X to function without error? Anyone familiar with including acl and attr file permissions

Re: add rsync -A -X to Backuppc RsyncArgs get 'Got fatal error during xfer (fileListReceive failed)'

2015-06-25 Thread Kevin Korb
. When backups are run the log files contains: Got fatal error during xfer (fileListReceive failed). Removing the -A and the -X allows the backup to proceed without errors. Is there another 'switch' that needs to be added to allow the -A and -X to function without error? Anyone familiar

Re: add rsync -A -X to Backuppc RsyncArgs get 'Got fatal error during xfer (fileListReceive failed)'

2015-06-25 Thread Bob of Donelson Trophy
the -A and -X to the RsyncArgs list. When backups are run the log files contains: Got fatal error during xfer (fileListReceive failed). Removing the -A and the -X allows the backup to proceed without errors. Is there another 'switch' that needs to be added to allow the -A and -X to function without

[Bug 11215] New: compression/zlib errors discard the zlib error message

2015-04-14 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=11215 Bug ID: 11215 Summary: compression/zlib errors discard the zlib error message Product: rsync Version: 3.1.0 Hardware: All OS: All Status: NEW Severity

Aw: Re: rsync error: error allocating core memory buffers

2015-04-09 Thread devzero
: rsync error: error allocating core memory buffers -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You should not be using rsync's --checksum during routine backups. It is only for very rare use cases not every backup run. On 04/09/2015 04:43 AM, Hans Kraus wrote: Hi, I've configured

Re: rsync error: error allocating core memory buffers

2015-04-09 Thread Kevin Korb
checksums. Whith one of the shares I get the error (in syslog): - robbe rsyncd[2183]: ERROR: out of memory in receive_sums [sender] robbe rsyncd[2183]: rsync error: error allocating core memory buffers (code 22) at util2.c(106

rsync error: error allocating core memory buffers

2015-04-09 Thread Hans Kraus
Hi, I've configured 'backuppc' to transfer files via rsyncd, with enabled checksums. Whith one of the shares I get the error (in syslog): - robbe rsyncd[2183]: ERROR: out of memory in receive_sums [sender] robbe rsyncd[2183

Possible Error in rsync 3.0.9

2015-03-04 Thread Robert
message. --- Desktop/OSme/Web-Site-Backups/backup-5.4.2014_15-11-43_linux014.tar.gz 4288446464 78% 32.15MB/s0:00:36 rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32) rsync: connection unexpectedly closed (1964386 bytes received so far) [sender] rsync error

Re: Possible Error in rsync 3.0.9

2015-03-04 Thread Kevin Korb
4288446464 78% 32.15MB/s0:00:36 rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32) rsync: connection unexpectedly closed (1964386 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(605) [sender=3.0.9

[Bug 10989] copying unsafe symlink warning treated as error, prevents --delete from working

2015-01-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10989 --- Comment #2 from Jim Avera jim.av...@gmail.com --- A much more serious problem is that when unsafe symlinks are copied pursuant to the --copy-unsafe-links option, they are all treated as I/O ERRORS. This prevents --delete from ever working. --

Re: Modification time error

2014-12-31 Thread Ingo Brückl
/tmp was actually on a tmpfs and no idea why this happens, but it doesn't seem to be a rsync issue (though it's kinda scary). This fixes it: diff -Nur a/testsuite/compare-dest.test b/testsuite/compare-dest.test --- a/testsuite/compare-dest.test 2007-09-03 22:43:58.0 +0200 +++

Re: Modification time error

2014-12-31 Thread Wayne Davison
On Wed, Dec 31, 2014 at 2:34 AM, Ingo Brückl i...@wupperonline.de wrote: /tmp was actually on a tmpfs and no idea why this happens Thanks for pointing that out. I couldn't reproduce the issue until I ran the tests on a tmpfs mount, and discovered that rsync is optimizing away a utimensat()

Modification time error

2014-12-30 Thread Ingo Brückl
# The script would have aborted on error, so getting here means we've won. -exit 0 +exit 99 in order to examine and preserve the data, I found: 2014-12-30 19:29:01.806934641 +0100 2014-12-30 19:29:01.820267972 +0100 in the test.log, e.g. the created file's mtime differs! Surprisingly, the same

[Bug 10951] Emtpy parameter triggers unwanted behavior, but no error message

2014-11-27 Thread samba-bugs
Resolution|--- |INVALID --- Comment #2 from Wayne Davison way...@samba.org --- Since the command-line you mentioned is completely valid, there's no error for rsync to complain about. Your args specified --exclude --exclude (so that it won't transfer a file named --exclude

[Bug 10951] Emtpy parameter triggers unwanted behavior, but no error message

2014-11-27 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10951 --- Comment #3 from Wayne Davison way...@samba.org --- Let me also add that if the cause was a bash shell variable that ended up being empty, then you should note that it is a bash-ism to require parameters to be double-quoted in order for them to

Re: [Bug 10951] New: Emtpy parameter triggers unwanted behavior, but no error message

2014-11-21 Thread Joe
, but no error message Product: rsync Version: 3.1.0 Hardware: x64 OS: Linux Status: NEW Severity: major Priority: P5 Component: core Assignee: way...@samba.org Reporter: st...@wis.no

[Bug 10951] New: Emtpy parameter triggers unwanted behavior, but no error message

2014-11-20 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10951 Bug ID: 10951 Summary: Emtpy parameter triggers unwanted behavior, but no error message Product: rsync Version: 3.1.0 Hardware: x64 OS: Linux

[Bug 10951] Emtpy parameter triggers unwanted behavior, but no error message

2014-11-20 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10951 --- Comment #1 from Stian Ertvåg st...@wis.no --- The --exclude without a value was of course a punshing error in our system, but we think this should trigger an error instead of syncing to the folder defined as excluded. The lack of output may

how to get the rsync remote error code at client side

2014-08-26 Thread wangtuma2
Hi, I'm trying to use rsync to sync files between my desktop and a file server, using my desktop as the client, and the file server as the remote side (or the server side, of course), and I'm wondering how I can get the error code of the remote/server side at the client side. For example

rsync error: unexplained error (code 255) at rsync.c(541) [sender=3.0.4]

2014-08-10 Thread jerrycwwong
Does anyone know what this message is about? I keep getting this message once in a while after my rsync command is run for some time. rsync error: unexplained error (code 255) at rsync.c(541) [sender=3.0.4] Regards Jerry HSBC Global

Re: rsync error: unexplained error (code 255) at rsync.c(541) [sender=3.0.4]

2014-08-10 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I don't know what that error means as it is non-specific. However 3.0.4 is very old. Try upgrading your rsync and see if the problem goes away. On 08/10/2014 07:08 AM, jerrycww...@hsbc.com.hk wrote: Does anyone know what this message is about? I

Fw: rsync permission error

2014-07-22 Thread jerrycwwong
. It may also be legally privileged. If you are not the addressee you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return e-mail. Internet communications cannot

Re: Fw: rsync permission error

2014-07-22 Thread Kevin Korb
, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return e-mail. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does

Re: Fw: rsync permission error

2014-07-22 Thread jerrycwwong
Thanks Kevin, I'll test it out. From the man page I saw -A implies -p, that's why I thought I don't have to put -p. From: Kevin Korb k...@sanitarium.net To: rsync@lists.samba.org Date: 07/23/2014 09:52 AM Subject: Re: Fw: rsync permission error Sent by: rsync-boun...@lists.samba.org

Re: Fw: rsync permission error

2014-07-22 Thread Kevin Korb
the man page I saw -A implies -p, that's why I thought I don't have to put -p. From: Kevin Korb k...@sanitarium.net To:rsync@lists.samba.org Date: 07/23/2014 09:52 AM Subject:Re: Fw: rsync permission error Sent by:rsync-boun...@lists.samba.org

[Bug 10719] New: Error with cached effective process gid

2014-07-16 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10719 Summary: Error with cached effective process gid Product: rsync Version: 3.1.1 Platform: x64 OS/Version: FreeBSD Status: NEW Severity: major Priority: P5

[Bug 10679] New: readlink_stat error results in deletion of mountpoints

2014-06-27 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10679 Summary: readlink_stat error results in deletion of mountpoints Product: rsync Version: 3.1.0 Platform: Sparc OS/Version: Solaris Status: NEW Severity: normal

[Bug 9594] Error transferring user and non-user xattr using --fake-super under Linux

2014-05-26 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9594 Wayne Davison way...@samba.org changed: What|Removed |Added Status|NEW |RESOLVED

[Bug 10611] No error code returned when removing source file failed

2014-05-25 Thread samba-bugs
Resolution||FIXED --- Comment #1 from Wayne Davison way...@samba.org 2014-05-25 23:02:03 UTC --- I'm making rsync exit with the standard partial-transfer error code (which always means that someone needs to check the error messages to see what actually went wrong

[Bug 10611] New: No error code returned when removing source file failed

2014-05-16 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10611 Summary: No error code returned when removing source file failed Product: rsync Version: 3.1.1 Platform: All OS/Version: All Status: NEW Severity: minor

[Bug 10579] New: --xattr internal abbrev error

2014-04-30 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10579 Summary: --xattr internal abbrev error Product: rsync Version: 3.1.0 Platform: All OS/Version: Mac OS X Status: NEW Severity: major Priority: P5 Component

[Bug 9594] Error transferring user and non-user xattr using --fake-super under Linux

2014-04-29 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9594 --- Comment #1 from Kuba Ober k...@mareimbrium.org 2014-04-30 01:20:39 UTC --- I can reproduce under 3.1.1pre1. The cause of the problem is as follows: Note that the rsync_xa list items contain the xattr name and value *but also* an attribute

[Bug 10567] New: --abort option to halt transfer on error(s)

2014-04-26 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10567 Summary: --abort option to halt transfer on error(s) Product: rsync Version: 3.1.0 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-04-19 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 Wayne Davison way...@samba.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-04-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #13 from mlus...@redhat.com 2014-04-15 15:11:51 UTC --- I can confirm that this issue is caused by compiling rsync with system provided zlib in F20. Archlinux package doesn't contain zlib in dependencies,and therefore I suppose the

rsync not completing with error

2014-04-03 Thread Smith, Gina C. (MSFC-IS40)[NICS]
Has anyone ever seen this error with an rsync rsync error: unexplained error (code 255) at rsync.c(543) [sender=3.0.7] Gina Smith NICS/System Administrator Desk 256-961-9382 Cell 256-655-6531 You know, all that really matters is that the people you love are happy and healthy. Everything else

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-18 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #10 from Orion Poplawski or...@cora.nwra.com 2014-03-18 15:01:33 UTC --- I get the same failure using the provided zlib in 3.1.1pre1. -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email --- You are receiving

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-18 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #11 from Orion Poplawski or...@cora.nwra.com 2014-03-18 15:51:41 UTC --- I take that back, this is caused by using the system zlib in Fedora 20. Still poking around. -- Configure bugmail:

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-18 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 Orion Poplawski or...@cora.nwra.com changed: What|Removed |Added CC||mlus...@redhat.com

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #7 from rudy.metz...@xs4all.nl 2014-03-15 08:22:31 UTC --- (In reply to comment #5) Please check if the version you're testing links against zlib or includes the zlib that ships with rsync. I'd imagine that it is trying to use the

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #8 from Harvey h...@gmx.de 2014-03-15 12:03:16 UTC --- I don't know how to test that either. I am on archlinux, the PKGBUILD is here: https://projects.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/rsync The

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #9 from Harvey h...@gmx.de 2014-03-15 12:05:23 UTC --- Additional comment: Archlinux uses zlib 1.2.8 https://www.archlinux.org/packages/core/x86_64/zlib/ -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ---

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-14 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #4 from Harvey h...@gmx.de 2014-03-14 17:33:15 UTC --- I can confirm that the error only raises if compression is invoked. Doing the same file transfer without -z in the commandline runs without errors. -- Configure bugmail: https

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-14 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 --- Comment #5 from Wayne Davison way...@samba.org 2014-03-14 23:25:27 UTC --- Please check if the version you're testing links against zlib or includes the zlib that ships with rsync. I'd imagine that it is trying to use the system's zlib, and

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-03-14 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 Wayne Davison way...@samba.org changed: What|Removed |Added CC||or...@cora.nwra.com ---

[Bug 10445] New: flag to suppress link_stat error messages

2014-02-13 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10445 Summary: flag to suppress link_stat error messages Product: rsync Version: 3.1.1 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5

[Bug 10445] flag to suppress link_stat error messages

2014-02-13 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10445 michele m...@bitchx.it changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-01-20 Thread samba-bugs
115440 at 28513680 offset=28513680 [sender] _exit_cleanup(code=10, file=io.c, line=837): entered rsync error: error in rsync protocol data stream (code 12) at io.c(837) [sender=3.1.0] [sender] _exit_cleanup(code=10, file=io.c, line=837): about to call exit(12) Does this help in any way? -- Configure

[Bug 10372] rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-01-19 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 Wayne Davison way...@samba.org changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #1

[Bug 10372] New: rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through

2014-01-12 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=10372 Summary: rsync 3.10 error in protocol data stream while rsync 3.0.9 runs through Product: rsync Version: 3.1.0 Platform: x64 OS/Version: Linux Status: NEW

Strangely fast run without error

2014-01-06 Thread Fabian Cenedese
what it was that rsync finished so quickly without an error. Thanks bye Fabi -- 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

Re: Strangely fast run without error

2014-01-06 Thread John Van Essen
On Jan 06, 2014, at 04:14, Fabian Cenedese wrote: sent 63 bytes received 2425 bytes ,')* bytes/sec A! Squinty Blackbeard approves of this transfer speed, mateys! John -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options:

Re: Strangely fast run without error

2014-01-06 Thread Joe
might be interesting to know what it was that rsync finished so quickly without an error. Thanks bye Fabi -- 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

rsync over ssh hang on error

2013-08-16 Thread Volker Kuhlmann
rsync has correctly terminated, but the shell has not. On the lost host, rsync is still waiting for the remote to finish. The local ssh client process (a subprocess of the local rsync) is still running too. What's going on here? I'd be expecting the local rsync to report some error and exit on-zero

Re: rsync over ssh hang on error

2013-08-16 Thread Volker Kuhlmann
On Sat 17 Aug 2013 13:20:12 NZST +1200, Justin Pryzby wrote: I saw something similar on a solaris machine. Do you know what kind of redirection of file descriptors is going on ? I worked around my problem by using tempfiles rather than sophisticated redirections [0]. The script snippet is

rsync: unpack_smb_acl: sys_acl_get_info(): Unknown error: 0 (0)

2013-06-08 Thread Robert DuToit
that Matt was going to post a patch. I haven't been able to find the patch and wonder if one exists or anyone can point me to the code where I can perhaps add at least the file path to the error thrown. Also I would probably opt myself for keeping the file without the acls, knowing the possible

[Bug 9877] target file deleted in error

2013-05-26 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9877 Wayne Davison way...@samba.org changed: What|Removed |Added Status|NEW |NEEDINFO --- Comment #2

[Bug 9877] New: target file deleted in error

2013-05-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9877 Summary: target file deleted in error Product: rsync Version: 3.0.6 Platform: x64 OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: core

[Bug 9877] target file deleted in error

2013-05-10 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9877 --- Comment #1 from Jack Savage ja...@mid.org 2013-05-10 21:01:57 UTC --- I meant to include this information in the original post. [oracle@rh5-appsrvr99 oracle cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.7 (Tikanga)

Re: Compilation error during rsync-3.0.9

2013-05-02 Thread Paul Slootman
, which file is referred for checking the values of variable “ac_cv_sizeof_uint32_t/checking size of uint16_t” ? As far as my study during this error debugging it seems the value is looked from the cache file. There should be no cache file present the first time you run configure

Compilation error during rsync-3.0.9

2013-04-30 Thread Gauri Senad
to compilation error which I am facing with latest version of rsync. I am compiling rsync-3.0.9 in my build system (which is for 2.6.10 linux kernel. I am using windriver build system), compilation is failing due to size of “uint32” and “uint16” was computed wrongly during configuration. Output during

Error 28 and exclusion

2013-02-11 Thread scott . george
and examples well enough, but obviously not. Secondly, I am receiving an error 28 (ENOSPC) on the transfer of a large file. I make sure the destination file system is double what the source for the possibility of needing to keep copies of both during transfer, but I assumed --delete-before would

Re: Error 28 and exclusion

2013-02-11 Thread Kevin Korb
, it appears that files were transferred within the /gcse1/infor tree after all. I naturally assumed that I followed documentation and examples well enough, but obviously not. Secondly, I am receiving an error 28 (ENOSPC) on the transfer of a large file. I make sure the destination file system

Re: Error 28 and exclusion

2013-02-11 Thread Paul Slootman
On Mon 11 Feb 2013, scott.geo...@parker.com wrote: Secondly, I am receiving an error 28 (ENOSPC) on the transfer of a large file. I make sure the destination file system is double what the source for the possibility of needing to keep copies of both during transfer, but I assumed

[Bug 9594] New: Error transferring user and non-user xattr using --fake-super under Linux

2013-01-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=9594 Summary: Error transferring user and non-user xattr using --fake-super under Linux Product: rsync Version: 3.1.0 Platform: All OS/Version: Linux Status: NEW

Error #24 masks error #23?

2013-01-22 Thread Ken Preslan
Hi all, I have a script that rsyncs files from one machine to another as part of a periodic backup. The source file system can be changing as the backup happens and sometimes, I get 24 - Partial transfer due to vanished source files errors. That error doesn't really bug me, so I mask it out

[Bug 5811] rsync error: error allocating core memory buffers (code 22) at io.c(635)

2012-12-11 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=5811 --- Comment #10 from Stuart Longland stua...@longlandclan.yi.org 2012-12-11 20:47:47 UTC --- Not sure if this is related, but I get more or less the same error message out of rsync 3.0.9 on AMD64 Linux rsyncing from an internal XFS-formatted HDD

Re: Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error

2012-07-25 Thread daitheflu
@lists.samba.org Envoyé: Mardi 17 Juillet 2012 16:48:34 Objet: Re: Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error Hi, Sorry for re-opening this thread but I'm still trying to get rid of these errors. I tried to remove the -A and the -X options but it doesn't make

Re: Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error

2012-07-17 Thread daitheflu
@lists.samba.org Envoyé: Lundi 16 Janvier 2012 11:22:56 Objet: Re: Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error Hi Henri, hi list, Thanks a lot for your answer. I did some testing during my spare time those last weeks and ended up compiling rsync 3.0.9 (with additionnal

Error 23 with hard links and 3.0.9 patched

2012-07-13 Thread Olaf Marzocchi
not to be required with 3.0.9. Concerning the hard links error, however, I don't know what to do, since I'm not good enough with programming to tinker with the rsync internals. More specifically, backup bouncer test suite performs these actions: echo testing 1 2 3 some-file ln ./some-file link1 ln

Re: rsync returns unexplained error (code 129)

2012-06-07 Thread Bill Iglesias
Joris Korbeeck korbeeck at hotmail.com writes: ... rsync error: unexplained error (code 129) at rsync.c(541) [sender=3.0.3] Could anyone explain this error or suggest a solution? Thanks in advance, Joris I received this error when using an Expect script to call a bash script

Re: link(2) EMLINK error behavior with --link-dest and --hard-links

2012-04-02 Thread Karl O. Pinc
Should I submit a bug? Will you take a patch? On 03/24/2012 11:11:47 PM, Karl O. Pinc wrote: Hi, I'm having a problem using --link-dest and --hard-links when the fs hits the hard link limit (link(2) returns EMLINK). Using rsync 3.0.7 an error is thrown and the target file is not created

link(2) EMLINK error behavior with --link-dest and --hard-links

2012-03-24 Thread Karl O. Pinc
Hi, I'm having a problem using --link-dest and --hard-links when the fs hits the hard link limit (link(2) returns EMLINK). Using rsync 3.0.7 an error is thrown and the target file is not created. Glancing at git head it _looks_ like things could now be a little nicer. Perhaps the target file

rsync batch mode produce code 23 error

2012-03-14 Thread Blank
. the rsync update process on web server, always return code 23 error, the complete error output like this: (No batched update for /pictureShower/wallpaper/_info.php) (No batched update for comm/js/log/cbaae969d4e258a9d6815a350d135982.txt) (No batched update for /images/wallpaper/data.js

Error recovery

2012-03-12 Thread Jack Tavares
I am trying to figure out what happens in the following scenario: I use rsync to copy files from hostA:/dir1 to hostB:/dir1 with the command (from hostB) rsync -abvt --delete-after --suffix=~ hostA:/dir1 /dir1 So if fileA exists already on both boxes (it has previously been rsynce-d) and

Re: Error recovery

2012-03-12 Thread Kevin Korb
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 While a file is being updated it is stored as a temporary name (.filename.string). When the file is complete the old version is deleted and the temp file is renamed into place. If rsync aborts during this process the temp file is deleted to ensure

[Bug 7124] Error exit causes I/O error

2011-12-24 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=7124 Wayne Davison way...@samba.org changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #1

Raise an error if file exists on destination

2011-12-15 Thread Rémi Delmas
/bar.txt - is that from Origin1 or origin2? I know I can use the `--ignore-existing` option to make sure only the first version is kept, or I could remove this option to keep the last one. But I would like to be notified when this happens, either with a warning or an error. Is that possible with rsync

Re: Raise an error if file exists on destination

2011-12-15 Thread Henri Shustak
: foo/bar.txt - is that from Origin1 or origin2? I know I can use the `--ignore-existing` option to make sure only the first version is kept, or I could remove this option to keep the last one. But I would like to be notified when this happens, either with a warning or an error

[Bug 8659] link-by-hash.diff: Fix error when running without --link-by-hash

2011-12-15 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8659 Wayne Davison way...@samba.org changed: What|Removed |Added Status|NEW |RESOLVED

Re: Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error

2011-12-14 Thread Henri Shustak
read some doc about this error but it doesn't seem to fit my case and I'm kinda stuck with it. It doesn't seem to be a serious issue but I'd like to be sure about it and know if there is a way to get rid of them. Do you guys have any clue of what's going wrong or what I may doing wrong

Mac OS X : get_xattr_names: llistxattr(some/path/here, 1024) failed error

2011-12-13 Thread daitheflu
this error but it doesn't seem to fit my case and I'm kinda stuck with it. It doesn't seem to be a serious issue but I'd like to be sure about it and know if there is a way to get rid of them. Do you guys have any clue of what's going wrong or what I may doing wrong ? Thanks a lot ! -- Please use reply

[Bug 8659] New: link-by-hash.diff: Fix error when running without --link-by-hash

2011-12-13 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8659 Summary: link-by-hash.diff: Fix error when running without --link-by-hash Product: rsync Version: 3.1.0 Platform: All OS/Version: All Status: NEW Severity

[Bug 8090] full_fname out of memory error on missing file SunOS 5.8

2011-11-23 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=8090 Wayne Davison way...@samba.org changed: What|Removed |Added Status|ASSIGNED|RESOLVED

<    1   2   3   4   5   6   7   8   9   10   >