Re: Help install rsync on SCO Unix

2007-01-30 Thread Paul Slootman
On Tue 30 Jan 2007, Paul Slootman wrote: anyone encounter this or know where I can get a bianry that runs with minimum fuss SCO used to have prebuilt open source software available for download, search for Skunkware or something like that. OTOH, don't bother, according to http

Re: Question on --backup --backup-dir Switches For Incremental Backs

2007-01-29 Thread Paul Slootman
: rsynz -az --stats --delete --exclude stuff --link-dest=../something.monday / [EMAIL PROTECTED]:/home/user/something.tuesday/ You may want to also use -H in addition to -a to preserve hardlinks from the source. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman

Re: using rsync 3.0.0 CVS version

2007-01-29 Thread Paul Slootman
\0kX\206\r\0\4\0\0kY\206\r\0\4\0\0..., 8184) = 96 select(5, [4], [], NULL, {60, 0}) = 0 (Timeout) select(5, [4], [], NULL, {60, 0}) = 0 (Timeout) ... and then remained waiting in select(). Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo

Re: rsync with a single big file (100M)

2007-01-24 Thread Paul Slootman
the whole file which will be faster in that case than finding and transferring the differences, and merging those differences into the destination file. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr

Re: using rsync 3.0.0 CVS version

2007-01-23 Thread Paul Slootman
On Mon 22 Jan 2007, Paul Slootman wrote: It's the same binary, compiled from rsync-HEAD-20070120-2211GMT. I tried again with current cvs (with the 1.194 version of receiver.c), and it still hangs when transferring an empty directory (it is created on the receiver though). A local transfer

Re: using rsync 3.0.0 CVS version

2007-01-22 Thread Paul Slootman
start_daemon) at socket.c:540 #12 0x0042a238 in daemon_main () at clientserver.c:874 #13 0x00416685 in main (argc=0, argv=0x0) at main.c:1392 Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org

Re: using rsync 3.0.0 CVS version

2007-01-22 Thread Paul Slootman
] receiving file list Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: using rsync 3.0.0 CVS version

2007-01-22 Thread Paul Slootman
On Mon 22 Jan 2007, Wayne Davison wrote: On Mon, Jan 22, 2007 at 10:04:10PM +0100, Paul Slootman wrote: This was to another system, over Gbit ethernet; both sides are amd64, running in 64 bits mode. Make sure that both sides are running the exact same code for protocol 30 (because

Re: Replicating a tree with root permissions

2007-01-19 Thread Paul Slootman
with no_root_squash or whatever the option on Solaris might be, so that root can actually access all files as root? Usually root it mapped to nobody over NFS... It may help if you give some real (not obfuscated) examples, commands with the output, and stat (or ls -l) output of the concerned files. Paul

Re: How to improve speed of a single file transfer over an unstable link?

2006-12-30 Thread Paul Slootman
... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: How to improve speed of a single file transfer over an unstable link?

2006-12-29 Thread Paul Slootman
to experiment on the transfer in progress. the --append option will assume that the partial data there is correct, only too short. This is a good idea, as it saves reading the already transported data, saving time. And --append implies --inplace. Paul Slootman -- To unsubscribe or change

Re: _exit_cleanup(code=12, file=token.c, line=419): about to call exit(12)

2006-12-16 Thread Paul Slootman
it then not bothering to decompress a compressed file chunk... I could not, however, understand why the failure to uncompress would result in an EPERM errno. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: _exit_cleanup(code=12, file=token.c, line=419): about to call exit(12)

2006-12-15 Thread Paul Slootman
failed: Permission denied (13) I don't understand why i get Permission Denied error destination folders is owned by nobody:nobody You're running rsync as rsyncuser, not as nobody... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting

Re: 1 file of 16000 always being updated

2006-12-08 Thread Paul Slootman
size, date/time and checksum, is there some other attribute rsync looks for to sync two files? Use multiple -v options and use -i to see why rsync is transferring a file. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http

Re: 1 file of 16000 always being updated

2006-12-08 Thread Paul Slootman
on in the --files-from content... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: 1 file of 16000 always being updated

2006-12-08 Thread Paul Slootman
On Fri 08 Dec 2006, Fabiano Bonin wrote: File rsync.incluir /share/soapy/home /share/soapy/svnroot /share/wiki/ On 12/8/06, Paul Slootman [EMAIL PROTECTED] wrote: On Fri 08 Dec 2006, Fabiano Bonin wrote: rsync -Cravvzi --bwlimit=4 --progress --partial --delete-excluded --files-from

Re: 1 file of 16000 always being updated

2006-12-08 Thread Paul Slootman
On Fri 08 Dec 2006, Paul Slootman wrote: If you're not excluding anything, why are you passing the --delete-excluded option? Oops, the -C option of course... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http

--no- usage

2006-12-08 Thread Paul Slootman
: rsync: --no-checksum: unknown option So apparently not all options can cope with the --no- thing. Perhaps this should be made clear in the manpage? (Or is it an error?) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http

Re: Bug#401189: rsync: using rltvz options spews sys_acl_get_file messages

2006-12-01 Thread Paul Slootman
... */ + break; case ENOTSUP: /* ACLs are disabled. We could yell at the user to turn them on, but... */ break; Any comments? Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before

Re: rsync - file gathering

2006-11-27 Thread Paul Slootman
. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync resource consumption, whilst building a large file list

2006-11-15 Thread Paul Slootman
On Wed 15 Nov 2006, Forrest Aldrich wrote: Does rsync build a file tree to a temp file, or is it doing this in memory? It does it in memory. However, for less than a few hunderd thousand files it's nothing to worry about, unless you're doing it on an embedded device or such :-) Paul Slootman

Re: Which rsync is considered modern?

2006-11-08 Thread Paul Slootman
On Wed 08 Nov 2006, Amit Dor-Shifer wrote: Manpage states the following: QUOTE For remote transfers, a modern rsync uses ssh for its communications UNQUOTE Indeed I see rsync invoking ssh, yet I wonder what is considered modern? The default changed from rsh to ssh in 2.6.0. Paul

Re: Rsync 2.6.9pre3 released

2006-10-27 Thread Paul Slootman
instances of behaviour in the sources :) I have just uploaded rsync_2.6.9~pre3-1 to Debian's experimental archive; it may take a day or so before it's available to everyone. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read

Re: -i inhibits --progress

2006-10-09 Thread Paul Slootman
On Sun 08 Oct 2006, Wayne Davison wrote: On Sun, Oct 08, 2006 at 02:03:28PM +0200, Paul Slootman wrote: BTW, is there an ETA on 2.6.9? I'm working on it now and hope to have a prerelease soon. So, I'd guess that it could release later this month. Great! I'll make a Debian package

Re: -i inhibits --progress

2006-10-08 Thread Paul Slootman
of rsync in. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

-i inhibits --progress

2006-10-06 Thread Paul Slootman
it seems fine... This is the reason for the --checksum runs.) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Strange file locking behaviour

2006-09-30 Thread Paul Slootman
up to date with everything, and there have never been complaints of files not being accessable. What errors does apache give? It's always helpful to give as much info as possible (you don't even mention what version rsync is used on both ends, for example, or the command lines used). Paul Slootman

Re: incoming chmod on daemon fails on subdirectories

2006-09-22 Thread Paul Slootman
] default_perms_for_dir: sys_acl_get_file(linux/documentation/perl/perl_networking/ch17, SMB_ACL_TYPE_DEFAULT): Permission denied, falling back on umask Are you rsyncing to a smbfs filesystem? I'm never surprised by very unexpected results in the mode bits on such filesystems... Paul Slootman

Re: incoming chmod on daemon fails on subdirectories

2006-09-22 Thread Paul Slootman
that should only apply to a file by prefixing it with a 'F'. For example: --chmod=Dg+s,ug+w,Fo-w,+X Regarding the filesystem, it's ext3 on an LVM logical volume on a software raid mirror. Then I wonder where the sys_acl_get_file(..., SMB_ACL_TYPE_DEFAULT) message came from... Paul

Re: Rsync order of maginitude slower with twice as large directory

2006-09-21 Thread Paul Slootman
in recent versions, would you be happy knowing that, while you can't actually use the fixed version? Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Exclude usage question

2006-09-12 Thread Paul Slootman
, it really obfuscates stuff. I don't see anything glaringly obvious. It looks like you need to double up on the verbose flag; use -vv Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: error in rsync protocol data stream (code 12) at io.c(463) on HP-UX 11.23

2006-09-11 Thread Paul Slootman
the interesting thing is the SIGSEGV, which causes the process to die, which results in the prococol error. It would be interesting to see where the SIGSEGV occurs; this probably entails getting a core dump and using a debugger to see what goes wrong. Paul Slootman -- To unsubscribe or change options

Re: Time problem

2006-08-25 Thread Paul Slootman
can use that to show the timestamp of the files. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync freezes when copying several million files

2006-08-22 Thread Paul Slootman
rsync is highly recommended... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync freezes when copying several million files

2006-08-21 Thread Paul Slootman
how much difference is between 2.6.6 and 2.6.8 in that respect. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Saving ownership as non-root

2006-08-16 Thread Paul Slootman
. - It took me a day to find that out. And am still looking for alternatives... Anyone? the mention in the manual would have to be pretty explicit about the caveats. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http

Re: copying mailboxes

2006-08-03 Thread Paul Slootman
is actually stored, in this case the NFS server; otherwise the transfer involves two network steps: rsync to the NFS client, and then from the NFS client to the NFS server. Of course, if the NFS server is a NetApp Filer, then you don't have much choice... Paul Slootman -- To unsubscribe or change

Re: Behaviour that I don't understand

2006-08-03 Thread Paul Slootman
. However maybe there's some bug :-) BTW: you don't mention what version you're using. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: code 12 error when specifying files

2006-08-03 Thread Paul Slootman
of the containing directory are transferred to the containing directory on the destination. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: code 12 error when specifying files

2006-08-03 Thread Paul Slootman
that host and module references don't require a trailing slash to copy the contents of the default directory. So in this case the trailing slash wouldn't make a difference. You don't mention what versions of rsync are involved... Paul Slootman -- To unsubscribe or change options: https

Re: code 12 error when specifying files

2006-08-03 Thread Paul Slootman
, see without: local# rsync --exclude='*' --include='.*' remote:/tmp/test Password: (nothing) The problem is with the excludes and includes; unfortunately I can never get it when those two are combined :-/ Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman

Re: code 12 error when specifying files

2006-08-03 Thread Paul Slootman
localdir total 0 -rw-r--r--1 root root0 Aug 3 15:31 1 -rw-r--r--1 root root0 Aug 3 15:31 2 -rw-r--r--1 root root0 Aug 3 15:31 3 No x directory created... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman

Re: code 12 error when specifying files

2006-08-03 Thread Paul Slootman
2005/11/12 11:57:37 public_html local# rsync remote::users/grp012/12/nhruby/public_html/ www skipping directory grp012/12/nhruby/public_html Don't you want at least an -r option? The skipping can be found in the manpage. Paul Slootman -- To unsubscribe or change options: https

Re: does partial option work over ssh?

2006-07-14 Thread Paul Slootman
, and he could get it to work for an rsync daemon, but not over ssh. The underlying transport is not relevant. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync - does it really do an *exact* copy?

2006-05-29 Thread Paul Slootman
multiple times with rsync, without any such problems whatsoever, so at least for me rsync works just fine for that task. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync - does it really do an *exact* copy?

2006-05-29 Thread Paul Slootman
complications? In other words, something's probably involved that's not old school unix. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Problem with rsync-2.6.8 and -c (checksum)

2006-05-23 Thread Paul Slootman
will be fooled into thinking it's the same as the version in the --link-dest tree, and will link to that. With --checksum rsync will see that it is in fact different, and will create a new file instead of linking. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo

Re: ignoring file times - but still examining content

2006-05-23 Thread Paul Slootman
On Tue 23 May 2006, tyko brown wrote: I'd like to ignore timestamps but still examine content. Use the --checksum option. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync --exclude-from fileesclusi.txt

2006-05-18 Thread Paul Slootman
the list of the source. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: switch to not backup a file of size X Mb

2006-05-16 Thread Paul Slootman
) RFTM: --max-size=SIZE don't transfer any file larger than SIZE hence use --max-size=200M Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: crontab doesn't start

2006-05-16 Thread Paul Slootman
the password,I enter it,and then is all ok) Perhaps it wants to ask the password when run from cron also; but how is it supposed to get an answer? You need to get ssh running without needing a password / passphrase; that's an ssh problem. Paul Slootman -- To unsubscribe or change options: https

Re: RSYNC unidirectional connection

2006-05-16 Thread Paul Slootman
On Tue 16 May 2006, [EMAIL PROTECTED] wrote: Connection in both directions: == Server A --- Server B I expect that a tool such as unison will be more appropriate for the problem. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman

Re: Issue with hard links, please help!

2006-05-13 Thread Paul Slootman
.) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Usage of a telnet client instead of ssh or rsh

2006-05-13 Thread Paul Slootman
telnet to do unexpected things instead of passing the data on transparently. Is there no way of using rsh in your kerberos-ized situation? Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: New option: --progress-newline

2006-05-11 Thread Paul Slootman
reading stdout. A bigger issue may be that output is buffered when writing into a pipe, which means you only get rsync's output when the buffer is full. This is referred to in (long-standing) Debian bug #48108 (see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=48108). Paul Slootman

Re: Issue with hard links, please help!

2006-05-11 Thread Paul Slootman
all the data in 'Latest' consistently after using the cp -al command? May I suggest the dirvish package, which is a sort of wrapper around rsync to implement incremental changes? It sounds like what you're trying to do. http://www.dirvish.org/ Paul Slootman -- To unsubscribe or change options

Re: Upgrade from 2.3.1 to 2.6.6 fail

2006-05-09 Thread Paul Slootman
/05/09 16:18:40 [5332] rsync denied on module autoupdate from unknown (:::merlin's IP address) Please show your rsyncd.conf. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: Problems with rsync, large files and partial.

2006-04-24 Thread Paul Slootman
politely... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync 2.6.8pre1 released

2006-04-13 Thread Paul Slootman
of this has been uploaded to Debian's experimental archive, rsync_2.6.7-2.6.8pre1_i386.deb Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync 4TB datafiles...?

2006-03-23 Thread Paul Slootman
On Wed 22 Mar 2006, Linus Hicks wrote: Paul Slootman wrote: I'd recommend doing --inplace, as chances are that data won't move within a file with oracle data files (so it's not useful to try to find moved data), and copying the 4TB to temp. files every time could become a big timewaster

Re: Rsync 4TB datafiles...?

2006-03-21 Thread Paul Slootman
with oracle data files (so it's not useful to try to find moved data), and copying the 4TB to temp. files every time could become a big timewaster. Also the -t option could be handy, not all files change all the time IIRC. As always, get the latest version. Paul Slootman -- To unsubscribe

Re: rsync 2.6.7 not excluding whole directories

2006-03-17 Thread Paul Slootman
a wider audience. OK, I've just uploaded a patched 2.6.7 to the Debian archive, should show up for most people in a day or so. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: rsync 2.6.7 not excluding whole directories

2006-03-16 Thread Paul Slootman
this. This is big enough that 2.6.8 will appear shortly, but until then, this one-line Is there an ETA known on 2.6.8? I'm deciding whether it's worth to wait for that, or to release a 2.6.7 Debian package in the meantime (with the patch). Paul Slootman -- To unsubscribe or change options: https

Re: installing/updating rsync 2.6.7 on os x

2006-03-15 Thread Paul Slootman
file... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Backing up two trees with corresponding files hard linked

2006-02-27 Thread Paul Slootman
On Fri 24 Feb 2006, Wayne Davison wrote: So, these days -H should be nice and fast. So, perhaps it should be moved into the -a collection? Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs

Re: Rsync 2.6.7pre2 released

2006-02-27 Thread Paul Slootman
fine AFAICS. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync files with certain mtime

2006-02-17 Thread Paul Slootman
of older :-) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync updating time on every file everytime

2006-02-16 Thread Paul Slootman
On Wed 15 Feb 2006, Paul Slootman wrote: On Wed 15 Feb 2006, Rich Stanton wrote: rsync -r -t --delete -i --modify-window=10 --exclude=/**/.* Try --modify-window=1 if that's the problem. Argh, I missed that you already were using it :-( Paul Slootman -- To unsubscribe or change options

Re: checksum

2006-02-16 Thread Paul Slootman
! Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync updating time on every file everytime

2006-02-15 Thread Paul Slootman
why this is? I wouldn't be surprised if NetWare doesn't have one-second time resolution, just like windows. Use the 'stat' command to show exactly what the contents of the inodes are of two files that should be the same. Try --modify-window=1 if that's the problem. Paul Slootman

Re: information on identifying hard links to a file

2006-02-09 Thread Paul Slootman
some more info on this please inform me. It does it the same way any application does: compare inode and device number. When those are the same, the two files must be hardlinked. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting

Re: Rsync 2.6.7pre1 is now available

2006-02-09 Thread Paul Slootman
On Wed 08 Feb 2006, Wayne Davison wrote: Rsync version 2.6.7pre1 is now available for release testing. Please give it a try and send email to the regular mailing list with any questions, comments, bug reports, etc. A couple of text improvements / typos that were sent to me... Paul Slootman

Re: Problems with high load

2006-02-09 Thread Paul Slootman
files are changed, --files-from might be useful. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync 2.6.7pre1 is now available

2006-02-09 Thread Paul Slootman
Is the --ipv4, --ipv6 description twice in the manpage? The description is quite different, so I'm wondering whether it should be in a different context :-) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http

Re: High volume problem: stat: no such file or directory

2006-01-20 Thread Paul Slootman
On Thu 19 Jan 2006, Bob Robison wrote: I'm running rysnc version 2.5.7. Client-machines are linux (2.6.12 That's pretty ancient; I don't think anyone can/wants to help before you try it with the latest (2.6.6). You've upgraded the kernel, so upgrading rsync shouldn't be a problem :) Paul

Re: double / on --exclude flag cuse the path not to be excluded

2005-12-29 Thread Paul Slootman
$ That won't find anything either, simply because find will never find a path with a double slash in it. Just fix your script Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart

Re: Permissions problem I don't understand

2005-11-21 Thread Paul Slootman
to the module definition; it's listed as a module directive, not as a global option. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: why each time I do a file sync, it showed me that a file trasnfers is occured

2005-10-31 Thread Paul Slootman
On Sun 30 Oct 2005, Harry Putnam wrote: Paul Slootman [EMAIL PROTECTED] writes: --itemize-changes What is this? My rsync doesn't know about it. rsync version 2.6.0 protocol version 27 This was added in 2.6.4, 30 March 2005. If you're going to ask questions on the mailing list, it's

Re: Rsync with OCFS (RAC)

2005-10-31 Thread Paul Slootman
the O_DIRECT option on OCFS? Reads are safe as-is. Check the archive. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Rsync over NFS mount sending whole files

2005-10-28 Thread Paul Slootman
as it would on disk? As far as rsync is concerned (and most of all the other utilities you have at your disposal on a Unix / linux system) an NFS-mounted filesystem _is_ local, after all it's just a part of the filesystem space. That's the point of NFS mounts, isn't it? Paul Slootman

Re: how to change owner of dest.

2005-10-26 Thread Paul Slootman
On Wed 26 Oct 2005, Stuart Halliday wrote: Paul Slootman wrote: You could setup an rsync server on the receiver, and set uid = mary in the appropriate module. Oh that's where I've been going wrong in my Rsync server. I placed the uid= line at the very top of the file. I

Re: why each time I do a file sync, it showed me that a file trasnfers is occured

2005-10-24 Thread Paul Slootman
output. Please do. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: why each time I do a file sync, it showed me that a file trasnfers is occured

2005-10-24 Thread Paul Slootman
was transmitted, so the data was not copied from the source to the receiver. Matched data: 56 bytes 56 bytes were matched, i.e. all the data was already there, nothing was transferred. Perhaps you should use the --itemize-changes option to show what is different. Paul Slootman -- To unsubscribe

Re: -signs in rsync as well as in embedded ssh command

2005-10-21 Thread Paul Slootman
On Fri 21 Oct 2005, Peter van der Meer wrote: Does anybody here has another suggestion? Yes: rsync -e ssh -o 'ProxyCommand corkscrew myhttpProxy 8080 targetcomputer.domain 22' testfile.txt targetcomputer.domain:receive Paul Slootman -- To unsubscribe or change options: https

Re: -signs in rsync as well as in embedded ssh command

2005-10-21 Thread Paul Slootman
perhaps also work (in addition to the wrapper script)? Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: -signs in rsync as well as in embedded ssh command

2005-10-21 Thread Paul Slootman
? :-) Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Update: Re: Help with synchronizing two directories on remoteservers

2005-10-14 Thread Paul Slootman
a. That doesn't matter, you can do ssh serverX:path path on one server, or ssh path serverY:path on the other server, and get the same direction. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs

Re: Update: Re: Help with synchronizing two directories on remote servers

2005-10-12 Thread Paul Slootman
is, but this sounds like perhaps serverb has two interfaces, and ssh is only listening to one of them. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Help with synchronizing two directories on remote servers

2005-10-10 Thread Paul Slootman
80.81.131.173 port 22: Connection refused This simply means that ssh is not running as a daemon on the remote system (serverb). Ensure that you can login as username via ssh on that system before trying rsync over ssh. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org

Re: Rsync - slow performance problem...

2005-10-04 Thread Paul Slootman
disclaimer] These are useless if writing to a mailing list... and probably useless anyway. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rync killing the machine

2005-09-29 Thread Paul Slootman
. 40GB of mail would suggest a lot of little files... In that case, see if it's possible to run rsync on subdirectories of the tree (hardlinks outside such a subdir is a showstopper for that approach, assuming you're using -H). Paul Slootman -- To unsubscribe or change options: https

Re: Noob help with backup command syntax

2005-09-23 Thread Paul Slootman
the --files-from option, the list could be generated with e.g. find. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: rsync client example about list=yes

2005-09-20 Thread Paul Slootman
is set. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: Bug#314473: rsync still fails badly with an ! in .cvsignore

2005-09-16 Thread Paul Slootman
{,~} rsync -avbu --cvs-exclude --delete /tmp/tester remotehost:/tmp/ I've found that when ! was scanned, the pointer was not advanced, hence there appeared to be trailing chars... The following patch seems to fix it. Paul Slootman --- rsync-2.6.6.orig/exclude.c +++ rsync-2.6.6/exclude.c @@ -665,8

Re: Bug#324200: rsync: man page contradictory on use of ssh

2005-09-15 Thread Paul Slootman
Hi, I got the following report from a Debian user: On Sat 20 Aug 2005, Ross Boylan wrote: The man page says a modern rsync uses ssh for its communications (while noting it may have been configure otherwise, but then goes on to say (about remote shells) One common substitute is to use ssh,

Re: Is there any option to check the synchronization is going on ?

2005-09-12 Thread Paul Slootman
On Mon 12 Sep 2005, Lakshminarayanan Radhakrishnan wrote: Is there any option to check whether the synchronization is going on between machine A and machine B ? Use netmask and see if there's a port 873 TCP connection established... Paul Slootman -- To unsubscribe or change options

Re: File Corruption

2005-09-12 Thread Paul Slootman
violations, and now and then the system hung. It turned out the memory was bad (even though a 24-hour run of memtest86 showed no problems). Such single bit errors sound like random memory corruptions. Try copying such files many times with cp and running md5sums of the copies. Paul Slootman

Re: performance problem of using parallel rsync to stage data from 1 source to multiple destination

2005-09-02 Thread Paul Slootman
be the cause. The buffer cache you mentioned refers to the cache on the data source, right? Yes. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Re: performance problem of using parallel rsync to stage data from 1 source to multiple destination

2005-09-01 Thread Paul Slootman
, then the data of the files being handled may still be in the buffer cache so that it doesn't need to get read in from disk again. This will save time... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org

Re: rsync problem

2005-09-01 Thread Paul Slootman
On Mon 29 Aug 2005, Zhang, Shu wrote: Thanks for your reply. Here is the info. [snip] I don't see anything that would cause the output you gave... Please upgrade to the newest rsync (2.6.6) and try again. Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman

<    1   2   3   4   5   6   7   >