similar to: rsync error: error in rsync protocol data stream (code 12) at io.c(463)

Displaying 20 results from an estimated 600 matches similar to: "rsync error: error in rsync protocol data stream (code 12) at io.c(463)"

2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch? Thanks for the reminder. I've just committed Jos's rsync+ patch onto the "branch_mbp_rsyncplus_merge" branch. If it works OK and nobody screams I will move it across onto the main tree tomorrow or Wednesday. I see the patch doesn't add documentation about the new options to the man page, so we should fix that in the future.
2002 Aug 05
5
[patch] read-devices
Greetings, I'd like to propose a new option to rsync, which causes it to read device files as if they were regular files. This includes pipes, character devices and block devices (I'm not sure about sockets). The main motivation is cases where you need to synchronize a large amount of data that is not available as regular files, as in the following scenarios: * Keep a copy of a block
2004 Aug 02
4
reducing memmoves
Attached is a patch that makes window strides constant when files are walked with a constant block size. In these cases, it completely avoids all memmoves. In my simple local test of rsyncing 57MB of 10 local files, memmoved bytes went from 18MB to zero. I haven't tested this for a big variety of file cases. I think that this will always reduce the memmoves involved with walking a large
2001 Nov 13
2
direct write patch
I have attached a patch that supports a new "--direct-write" option. The result of using this option is to write directly to the destination files, instead of a temporary file first. The reason this patch is needed is for rsyncing to a device where the device is full or nearly full. Say that I am writing to a device that has 1 Meg free, and a 2 meg file on that device is out of date.
2002 Feb 01
0
rsync Warning: unexpected read size of 0 in map_ptr
On Wed, Jan 30, 2002 at 06:03:10PM -0500, Bill Nottingham wrote: > Dave Dykstra (dwd@bell-labs.com) said: > > I stumbled across the bug report > > http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58878 > > > > which shows that you made a bug fix to rsync on Sunday. What exactly did > > you do? > > Attached. It's the same thing as yours, I just
2003 Jun 10
1
Red Hat rsync - 'sign' patch
I recently became the new rsync maintainer for Red Hat, and I just completed a review of the current patches that we (Red Hat) maintain for 'rsync'. After removing three unnecessary patches (either already incorporated into rsync-2.5.6, or were outdated and couldn't be applied), we are left with one patch - rsync-2.5.6-sign.patch - which I have attached.
2003 Oct 05
2
Possible security hole
Maybe security related mails should be sent elsewhere? I didn't notice any so here it goes: sender.c:receive_sums() s->count = read_int(f); .. s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count); if (!s->sums) out_of_memory("receive_sums"); for (i=0; i < (int) s->count;i++) { s->sums[i].sum1 = read_int(f);
2003 Mar 30
1
[RFC][patch] dynamic rolling block and sum sizes II
Mark II of the patch set. The first patch (dynsumlen2.patch) increments the protocol version to support per-file dynamic block checksum sizes. It is a prerequisite for varsumlen2.patch. varsumlen2.patch implements per-file dynamic block and checksum sizes. The current block size calculation only applies to files between 7MB and 160MB setting the block size to 1/10,0000 of the file length for a
2005 Oct 01
3
Compilation errors while building wine-20050930
Hi list, I've justed patched my wine-20050830 source tree to compile the new version, but I get the following errors: avifile.spec.o(.data.rel.ro+0x600): In function `__wine_avifile_dll_CallFrom16_p_long_lllpllpp': /home/phil/Quelltexte/wine-20050830/dlls/avifil32/avifile.spec.c:84: undefined reference to `__wine_call_from_16_long'
2008 May 02
12
Carrara 6 on wine in Ubuntu Hardy...
I am new and trying to get Daz Carrara 6 Pro going on Ubuntu Hardy. I am on a Core 2 Quad Q6600 Dell Inspiron 530 using an ATI X1650 pro card. I am using the Ubuntu Add/Remove ATI drivers and Wines. Carrara 6 pro 6.1. and I just updated to 6.1.1. I did not load the C++ and I have turned off windows management in WINE. If I change the interactive rendering settings and click OK, Carrara
2005 Feb 26
1
[patch] fixes for avi2vp3
here is a patch that fixes various bugs/problems with avi2vp3: 1. open() is not called with O_BINARY , this causes the program to crash or give undesired results on win32 (and maybe other platforms?), as binary mode is not default. 2. win32 does not understand chmod flags, ie: (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) 3. buffer = malloc(AVI_max_video_chunk(avifile)); for some reason,
2002 Nov 22
2
[Windows Media Player]
Greetings winers, I have resorted to wine for one reason, I found an ASF stream avifile will not play. I still believe it is a problem with the streams format but since it does work on Windows Media Player on a Windows box, I thought to give it a try. I installed wine as fake_windows and downloaded mpfull.exe from M$. It installed fine. I set the debugger and ran different incantations of the
2003 Feb 24
1
exit status 12 when transferring a large file
--- Erhalten von ZBM.ZARBR 089/32000-545 24-02-03 12.07 Hi, I mirror a server installation using rsync 2.5.6 (on both sides) with these options: -a -x --numeric-ids -H --delete --stats -e ssh -z --exclude-from ... This happens every night. In about 80% of the cases rsync returns exit status 12 when trying to transfer a certain file. In the other 20% the file is
2003 Nov 19
2
need SWAT for samba 3.0.0-14.3E.i386
I have installed RedHat ES 3.0 It came with samba 3.0.0-14.3E.i386 I have no SWAT. Which one can I use? I downloaded samba-swat-3.0.0-1.test.rh90.i386.rpm and an rpm -i said it needs: samba 3.0.0-1.test.rh90 I downloaded samba-swat-2.2.7a-8.9.0.i386.rpm and an rpm -i said it needs: samba 2.2.7a Which SWAT do I need and where can I download it? thanks, in advance. Dean
2002 Mar 23
1
why variable last_i is needed in match.c rsync source ?
Hi all I see the rsync source and rsync makes hashing table and search hashing table tag_table to find the index of array struct sum_buf , which is a element of struct sum_struct. According to the source code, variable last_i is used to encourage adjacent matches allowing the RLL coding of the output to work more efficiently. Why last_i makes more efficiency? I can't understanding what
2003 Sep 30
2
problem with batch mode:
Hi! I try to use batch mode to send only the difference between two packed CDs by email over a slow line. I create the diff with: rsync -avvv --write-batch=rs CD-ROM-V6.6.32.zip CD-ROM-V6.6.31.zip where alfred:/Auslieferung/CD # l -n -rw-r--r-- 1 0 0 453248121 Sep 2 16:22 CD-ROM-V6.6.31.zip -rw-r--r-- 1 0 0 407416499 Sep 29 13:39 CD-ROM-V6.6.32.zip resulting
2004 Dec 28
2
Best RH/FC version for dvd rip?
Greetings: I'd like to bring up a CentOS-3.3 system to use for multi-media purposes. One of the packages I'm installing is dvdrip and all it's dependant packages (libdv, libdvdcss, libdvdread, avifile, & transcode). I'm hunting down the packages on freshrpms.net and I notice that there are packages available for FC1, FC2 & FC3. Question: Which FC version should I use
2005 Apr 25
2
How about a --min-size option, next to --max-size
There's a rather old bug report in Debian's bug tracking system (see http://bugs.debian.org/27126) about wanting to be able to specify the maximum file size, as well as the minimum file size. Here's the text: Sometimes, it's useful to specify a file size range one is interested in. For example, I'd like to keep an up-to-date mirror of Debian, but I currently
2007 Mar 19
2
wine WM8EUTIL
Hello, i've got a little problem that begins to drive me mad. FOr usage on my xbox360, i need to convert Videos to WMV. After a long search, i found MS WM8EUTIL which seems to be perfect. The Problem is, it doesnt work. 1. It begins to install, but never seems to register in the system (is there a way to manually register setup.inf ? ) 2. Though, suprsingly, all works well for audo only
2004 Jan 23
6
rc.local dont works
Hi All I have a problem with initialization of asterisk using my rc.local file. when i call asterisk from the prompt it works well but don?t in the initialization... I have in my file that comands: touch /var/lock/subsys/local modprobe zaptel modprobe wcfxo safe_asterisk I read in somewere that it can be an interrup problem and i use the cat proc/interrupt to see what is happening Somebody