Displaying 12 results from an estimated 12 matches for "rsync_argvs".
2003 Sep 30
2
problem with batch mode:
...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 in:
-rwx------ 1 0 0 53 Sep 29 16:29 rs.rsync_argvs*
-rw------- 1 0 0 90 Sep 29 16:29 rs.rsync_flist
-rw------- 1 0 0 165998 Sep 29 16:29 rs.rsync_csums
-rw------- 1 0 0 26634899 Sep 29 16:30 rs.rsync_delta
dr-xr-xr-x 4 0 0 453 Sep 29 16:30 ./
Trying to do a test fails. I...
2002 Jun 02
1
batch diffs
I needed a tool to produce diffs of binary volumes, and to apply them as
patches accordingly. So I tried the 'batch mode' that was added to rsync,
but it invariably segfaulted on reading the batches...
$ sh foo.rsync_argvs
foo.rsync_argvs: line 1: 8971 Segmentation fault rsync -a -v --stats --read-batch=foo ${1:-FOO}
rsync: error writing 64 unbuffered bytes - exiting: Broken pipe
rsync error: error in rsync protocol data stream (code 12) at io.c(463)
$ rsync --version
rsync version 2.5.5 protocol versio...
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...9:46 -0000 1.12
+++ batch.c 6 Feb 2002 19:47:57 -0000
@@ -8,55 +8,38 @@
#include "rsync.h"
#include <time.h>
-char rsync_flist_file[27] = "rsync_flist.";
-char rsync_csums_file[27] = "rsync_csums.";
-char rsync_delta_file[27] = "rsync_delta.";
-char rsync_argvs_file[27] = "rsync_argvs.";
-
-char batch_file_ext[15];
-
-int fdb;
-int fdb_delta;
-int fdb_open;
-int fdb_close;
+extern char *batch_prefix;
struct file_list *batch_flist;
-void create_batch_file_ext()
-{
- struct tm *timeptr;
- time_t elapsed_seconds;
-
- /* Save run date and time...
2002 Oct 26
0
How to prevent batch rsync to write rsync_argvs files in the home directory
Hi,
Whenever i am using the command
rsync --write-batch -av --stats `cat $1` -e ssh user@remote machine:/destination/
This is writing rsync_argvs files in the home directory as well as to the destination directory.
Can anyone give me any idea as how to prevent the writing of rsync_argvs files in the home directory which is of no use.
Regards,
Surabhi.
> ----------
> From: rsync-request@lists.samba.org
> Reply To: rsync@list...
2002 Jan 15
1
batch mode maintainability
I'm having second thoughts about merging the rsync+ / batch mode patch
into the main rsync release. It adds a lot of extra paths to the
code. I can see it will be useful for a few people, but I'm not sure
it's sufficiently general to justify being there. Dave?
--
Martin
2004 Jun 21
2
problems with --read-batch and --write-batch with --files-from
...iles-from option with --write-batch and the given
prefix is relative 3 of 4 files will be written to the src/ dir. The find in
the shell script [2] gives the following:
.
./src
./src/file1
./src/data.rsync_flist
./src/data.rsync_csums
./src/data.rsync_delta
./dest
./dest/file1
./data.tar.gz
./data.rsync_argvs
--[2]--
#!/bin/bash
DIR="testdir-$(date '+%Y%m%d%H%M%S')"
mkdir "$DIR" &&
cd "$DIR" &&
mkdir src dest &&
(cd src && dd if=/dev/zero of=file1 bs=1024 count=1024) &&
(cd dest && dd if=/dev/zero of=file1 bs=1024 co...
2001 Aug 13
1
rsync+ patch
rsync+ is ready to go onto HEAD.
Could Jos or somebody else who's used the feature before please
prepare a few paragraphs for the manpage explaining how they work?
Either send a patch to the .yo files or just plain text.
Thanks,
--
Martin
2004 Apr 30
1
--write-batch just hangs?
...pdate, with the --write-batch=mytest argument, rsync just hangs.
I've looked at the issue with strace and ethereal.
What rsync _does_ do, in the --write-batch case, is:
1) connect to the server
2) find the directory
3) print the MOTD
4) exchange protcol versions (26)
5) create mytest.rsync_argvs, containing only "rsync --read-batch=mytest ${1:-./temp}", in the current working dir
6) calls brk successfully
7) calls select with a timeout of 60 sec, which times-out every time, indefinitely.
Any ideas?
-Chris
2004 Jun 18
2
possible writefd_unbuffered error; what am I screwing up this time
...t;remote" rsync --read-batch ...... so I opened a telnet session
on the remote system and did the following command
rsync --backup --read-batch=brf --block-size=1000 /test/miki_briefcase
result was rsync:writefd_unbuffered failed to write 64 bytes: phase "unknown": Broken Pipe
brf.rsync_argvs contains the following
rsync -acvv --rsh=rsh --backup --stats --read-batch=brf --block-size=1000 ${1:-/test/miki_briefcase}
I have tried the command with and without -acvv --rsh --stats and it always fails with the same message
I would appreciate any pointers as to what I am screwing up. I have c...
2003 Oct 01
0
AW: problem with batch mode:
...larms=0 data=0
recv_files finished
wrote 85535 bytes read 3784 bytes 178638.00 bytes/sec
total size is 0 speedup is 0.00
_exit_cleanup(code=0, file=../rsync/main.c, line=625): about to call exit(0)
lizzy:~/src/rsync-cvs/obj/test/rs% ls -l
total 91
-rwx------ 1 jos staff 51 Sep 29 12:38 rs.rsync_argvs
-rw------- 1 jos staff 3752 Sep 29 12:38 rs.rsync_csums
-rw------- 1 jos staff 85507 Sep 29 12:38 rs.rsync_delta
-rw------- 1 jos staff 79 Sep 29 12:38 rs.rsync_flist
-rw-r--r-- 1 jos staff 180 Sep 29 12:37 x
lizzy:~/src/rsync-cvs/obj/test/rs% ls -l ..
total 1433
-rw-r--r-- 1 jos...
2006 Feb 08
2
RSYNC via pipe/socket ?
Hello !
I`m trying to find a way to use lzo compression for the data being transferred by rsync.
rsync only supports gzip (or maybe ssh -c, which is also zlib), which gives cpu intensive workload - and
this cannot be exchanged by a commandline param like we have with tar (--use-compress-program=....)
i like to use lzo because it does much faster compression than gzip.
I read the following in
2003 Oct 08
2
2.5.6: a number of minor issues
...the final component of the filename\&. Again, remember
+against only the final component of the filename\&. Again, remember
that the algorithm is applied recursively so "full filename" can
actually be any portion of a path\&.
.IP
@@ -1072,7 +1072,7 @@
.PP
The \&.rsync_argvs file contains a command-line suitable for updating a
destination tree using that batch update fileset\&. It can be executed
-using a Bourne(-like) shell, optionally passing in an alternate
+using a Bourne(-like) shell, optionally passing in an alternative
destination tree pathname which is th...