Displaying 8 results from an estimated 8 matches for "rsync_".
Did you mean:
rsync
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
2002 Jul 25
0
Problems compiling on RH 5.2.
...quot;fake out" the compiler and linker.
This probably needs to be fixed as the replacement approach to the C
library doesn't work right.
To probably compile somewhat portably, all of the #define's must be
preceeded with #undef's and all of the symbols should include a prefix
like rsync_ to avoid conflicts (including the structure tags).
Thanks,
Mark G.
2009 Jun 12
1
--compare-dest= dir list ?
...directory list in
--compare-dest= but I don't know how to specify this list. If a have
only one dir it's ok, but if I have 2 or more dir I have an error ?
Here is my script:
#!/bin/bash
SSH_USER=
SSH_HOST=
TOBCK=/
EXCLUDES=/root/bckscript/ns200176/excludes
LOG=/root/bckscript/ns200176/rsync_$(date +'%Y-%m-%d_%H.%M.S').log
mount /dev/sda1 /mnt/bckhd01
BACKUPDIR=/mnt/bckhd01/ns200176/$(date +'%A')
COMPAREDIR=""
LIST=$(ls /mnt/bckhd01/ns200176/)
for i in $LIST; do
COMPAREDIR="$COMPAREDIR/mnt/bckhd01/ns200176.ovh.net/$i "
done
OPTS="--ver...
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...=====================================================
RCS file: /cvsroot/rsync/batch.c,v
retrieving revision 1.12
diff -u -r1.12 batch.c
--- batch.c 24 Jan 2002 08:09: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;
+exte...
2006 Sep 18
1
daemon excludes all my files
...ith D:\process) for which you will have to
escape the backslashes with \\. Also cwRsyncServer has no sh.exe
installed by default, I had to visit the web site to find out I have
to copy the installed bash.exe as sh.exe :(
And I have another question: can the post-xfer proess know, by looking
at the RSYNC_ environment variables, if the transfer was a read or a
write ?
Thank you
Timothy Madden
Romania
-------------- next part --------------
A non-text attachment was scrubbed...
Name: rsyncd.conf
Type: application/octet-stream
Size: 1356 bytes
Desc: not available
Url : http://lists.samba.org/archive/r...
2008 Jul 12
1
DO NOT REPLY [Bug 4621] "-p" option to simulate "mkdir -p" for rsync
https://bugzilla.samba.org/show_bug.cgi?id=4621
tkessler@ucdavis.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tkessler@ucdavis.edu
------- Comment #2 from tkessler@ucdavis.edu 2008-07-12 12:01 CST -------
This would be an EXCEPTIONALLY useful
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
2008 May 31
1
rsync 3.0.2 with --fileflags on FreeBSD: cannot rsync hardlinked immutable files
...s rsync with --fileflags isn't able to work on (already)
hardlinked and immutable ("schg") files on FreeBSD. The following
scripts will create a simple example for this behaviour:
--------------------------------------------------------------
#! /bin/sh
#
#
set -x
DIR="/var/tmp/rsync_$(date +%s)/"
mkdir "${DIR}/"
# Preparing dir_A
mkdir "${DIR}/dir_A/"
touch "${DIR}/dir_A/file_A"
ln "${DIR}/dir_A/file_A" "${DIR}/dir_A/file_B"
chflags schg "${DIR}/dir_A/file_A"
ls -laio "${DIR}/dir_A/"
# Try rsync: will...