DO NOT REPLY [Bug 5221] rsync error: partial transfer (code 23) at main.c(576)

2008-01-26 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=5221


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID




--- Comment #2 from [EMAIL PROTECTED]  2008-01-26 16:25 CST ---
As Matt mentioned, the reason for the partial transfer is mentioned in an
earlier message.


-- 
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug, or are watching the QA contact.
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


DO NOT REPLY [Bug 5221] New: rsync error: partial transfer (code 23) at main.c(576)

2008-01-22 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=5221

   Summary: rsync error: partial transfer (code 23) at main.c(576)
   Product: rsync
   Version: 2.6.3
  Platform: Sparc
OS/Version: SunOS
Status: NEW
  Severity: major
  Priority: P3
 Component: core
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: [EMAIL PROTECTED]


we get rsync error: partial transfer (code 23) at main.c(576)
please let us know the resolution for the same or this can be ignorable


-- 
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug, or are watching the QA contact.
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


DO NOT REPLY [Bug 5221] rsync error: partial transfer (code 23) at main.c(576)

2008-01-22 Thread samba-bugs
https://bugzilla.samba.org/show_bug.cgi?id=5221





--- Comment #1 from [EMAIL PROTECTED]  2008-01-23 01:03 CST ---
Rsync prints the code 23 message at the end of the run when at least one
non-fatal error occurred that may have affected the correctness of the run. 
Rsync should have printed another message to stderr stating the specific
problem; what was that message?

BTW, consider upgrading to a modern version of rsync.  The latest stable
version is 2.6.9.


-- 
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the QA contact for the bug, or are watching the QA contact.
-- 
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html


rsync error: partial transfer (code 23) at main.c(576)

2002-02-06 Thread MICHAEL R. LEFEBVRE

I want to rsync my home directory from interd1 to interp1.  interd1 is
the server, so I enter:

rsync -vraz --delete ./ interp1::test

rsync: building file list ...
rsync: 6 files to consider.
delete_one: unlinek .rhosts: Permission denied
./
.profile
rsync: failed to open .sh_history, continuing : Permission denied
.sh_history
a.a
rsync.tst
test
mkstemp ..profile.KIa00D failed
mkstemp ..sh_history.LIa00D failed
mkstemp .a.a.MIa00D failed
mkstemp .rsync.test.NIa00d failed
mkstemp .test.OIa00D failed
wrote 1959 bytes read 126 bytes 1930.00 bytes/sec
total size is 6173 speedup is 2.96
rsync error: patrial transfer (code 23) at main.c(576)

Do you know why this is only partialy transfering?

Regards,

Mike Lefebvre





Re: rsync error: partial transfer (code 23) at main.c(576)

2002-02-06 Thread tim . conway

Well, Mike.  I'd guess it's a permission problem.  Either on the 
destination itself or teh module defined in rsyncd.conf.  Let's 
concentrate on that second one.  It's documented that by default, if you 
do not specify a uid for a module (in rsyncd.conf), it will use -2 
(usually corresponds to nobody.  same for gid.  I suspect that's 
probably all you need to hear.
(see rsyncd.conf.5)

Tim Conway
[EMAIL PROTECTED]
303.682.4917
Philips Semiconductor - Longmont TC
1880 Industrial Circle, Suite D
Longmont, CO 80501
Available via SameTime Connect within Philips, n9hmg on AIM
perl -e 'print pack(, 
19061,29556,8289,28271,29800,25970,8304,25970,27680,26721,25451,25970), 
.\n '
There are some who call me Tim?




MICHAEL R. LEFEBVRE [EMAIL PROTECTED]
Sent by: [EMAIL PROTECTED]
02/06/2002 01:14 PM

 
To: [EMAIL PROTECTED]
cc: (bcc: Tim Conway/LMT/SC/PHILIPS)
Subject:rsync error: partial transfer (code 23) at main.c(576)
Classification: 



I want to rsync my home directory from interd1 to interp1.  interd1 is
the server, so I enter:

rsync -vraz --delete ./ interp1::test

rsync: building file list ...
rsync: 6 files to consider.
delete_one: unlinek .rhosts: Permission denied
./
.profile
rsync: failed to open .sh_history, continuing : Permission denied
.sh_history
a.a
rsync.tst
test
mkstemp ..profile.KIa00D failed
mkstemp ..sh_history.LIa00D failed
mkstemp .a.a.MIa00D failed
mkstemp .rsync.test.NIa00d failed
mkstemp .test.OIa00D failed
wrote 1959 bytes read 126 bytes 1930.00 bytes/sec
total size is 6173 speedup is 2.96
rsync error: patrial transfer (code 23) at main.c(576)

Do you know why this is only partialy transfering?

Regards,

Mike Lefebvre









Re: rsync error: partial transfer (code 23) at main.c(576)

2002-02-06 Thread Dave Dykstra

Probably Mike needs to use read only = false in his rsyncd.conf.
The default is read only = true.

- Dave Dykstra

On Wed, Feb 06, 2002 at 02:16:55PM -0700, [EMAIL PROTECTED] wrote:
 Well, Mike.  I'd guess it's a permission problem.  Either on the 
 destination itself or teh module defined in rsyncd.conf.  Let's 
 concentrate on that second one.  It's documented that by default, if you 
 do not specify a uid for a module (in rsyncd.conf), it will use -2 
 (usually corresponds to nobody.  same for gid.  I suspect that's 
 probably all you need to hear.
 (see rsyncd.conf.5)
 
 Tim Conway
 [EMAIL PROTECTED]
 303.682.4917
 Philips Semiconductor - Longmont TC
 1880 Industrial Circle, Suite D
 Longmont, CO 80501
 Available via SameTime Connect within Philips, n9hmg on AIM
 perl -e 'print pack(, 
 19061,29556,8289,28271,29800,25970,8304,25970,27680,26721,25451,25970), 
 .\n '
 There are some who call me Tim?
 
 
 
 
 MICHAEL R. LEFEBVRE [EMAIL PROTECTED]
 Sent by: [EMAIL PROTECTED]
 02/06/2002 01:14 PM
 
  
 To: [EMAIL PROTECTED]
 cc: (bcc: Tim Conway/LMT/SC/PHILIPS)
 Subject:rsync error: partial transfer (code 23) at main.c(576)
 Classification: 
 
 
 
 I want to rsync my home directory from interd1 to interp1.  interd1 is
 the server, so I enter:
 
 rsync -vraz --delete ./ interp1::test
 
 rsync: building file list ...
 rsync: 6 files to consider.
 delete_one: unlinek .rhosts: Permission denied
 ./
 .profile
 rsync: failed to open .sh_history, continuing : Permission denied
 .sh_history
 a.a
 rsync.tst
 test
 mkstemp ..profile.KIa00D failed
 mkstemp ..sh_history.LIa00D failed
 mkstemp .a.a.MIa00D failed
 mkstemp .rsync.test.NIa00d failed
 mkstemp .test.OIa00D failed
 wrote 1959 bytes read 126 bytes 1930.00 bytes/sec
 total size is 6173 speedup is 2.96
 rsync error: patrial transfer (code 23) at main.c(576)
 
 Do you know why this is only partialy transfering?
 
 Regards,
 
 Mike Lefebvre