Re: mirror whole hard disk with rsync

2004-02-19 Thread Dick Streefland
uot;clone" drives. rsync seems ideal for this task, but | | How do I do that with rsync!? Why don't you use RAID-1? -- Dick Streefland Altium BV [EMAIL PROTECTED] (@ @) http://www.altium.com ---

Re: Feature Request - Load Throttling

2004-02-18 Thread Dick Streefland
On Wednesday 2004-02-18 13:05, Edward Grace wrote: | How about using the --bwlimit option to start with? Not quite a hands free | solution I know, but it will avoid you hammering the disks to oblivion. Wow, that option is already available. I wasn't aware of that. -- Dick Stree

Re: Feature Request - Load Throttling

2004-02-18 Thread Dick Streefland
isions for that, e.g. traffic shaping. -- Dick Streefland Altium BV [EMAIL PROTECTED] (@ @) http://www.altium.com oOO--(_)--OOo--- -- To unsubscribe or change options: http://

Re: [patch] Add `--link-by-hash' option (rev 2).

2004-02-17 Thread Dick Streefland
links instead of hardlinks when the metadata is different. It requires an extra inode, but when the symlink is short enough to fit in the inode, you don't need an additional disk block. -- Dick Streefland Altium BV [EMAIL PROTECTED]

Re: [PATCH] --one-file-system and automounter

2004-02-03 Thread Dick Streefland
e a filter that eliminates duplicates (based on Message-ID)? I also found the message in the archive, so it looks like a problem on my side. I don't have a filter for duplicate messages on my machine, but maybe there is one on the mail server for altium.nl. I will c

Re: [PATCH] --one-file-system and automounter

2004-02-03 Thread Dick Streefland
his. BTW: Your message contained a "Cc: [EMAIL PROTECTED]", but I only received it directly from you, not via de mailing list. -- Dick Streefland Altium BV [EMAIL PROTECTED] (@ @) http://www.altium.com --

[PATCH] --one-file-system and automounter

2004-02-02 Thread Dick Streefland
matches=0 tag_hits=0 false_alarms=0 data=0 The attached patch for rsync-2.6.0 moves the cross-filesystem check to just before a directory is traversed. This obsoletes the function skip_filesystem() to test the parent directory. The mount point itself is still included,

Re: [patch] making rsync less verbose

2004-01-08 Thread Dick Streefland
option, the verbose level is forced to 1, which means that you get the extra lines, including the speedup report, although that is not particulary useful in this case. So, -n should implicitely set this new "show me the file names" option, instead of ena

[patch] making rsync less verbose

2004-01-06 Thread Dick Streefland
ort, which is now disabled by default. What do you think? Would you consider something like this for future versions of rsync? -- Dick Streefland Altium BV [EMAIL PROTECTED] (@ @) http://www.altium.com -

Re: -c Option

2002-05-31 Thread Dick Streefland
ption on the second rsync, which is not a problem, because the number of files is very limited. BTW: I previously used NFS with find/cpio to clone Linux installations, but rsync is *way* faster, 2-3 times faster on a 10 Mb network. -- Dick Streefland

Re: rsync: race condition can cause loss of diagnostic output

2002-05-28 Thread Dick Streefland
eep(20); + continue; + } + break; + } if (n > 0) { el->written += n; } -- Dick Streefland Altium Software BV [EMAIL PR

Re: rsync: race condition can cause loss of diagnostic output

2002-05-28 Thread Dick Streefland
el->written += n; } -- Dick Streefland Altium Software BV [EMAIL PROTECTED] (@ @) http://www.altium.com oOO--(_)--OOo--- -- To unsubscribe or change options:

Re: [patch] suggestions for -v option

2002-05-17 Thread Dick Streefland
bility, a new option to suppress the unwanted messages could be added, e.g. --no-stats. The attached patch implements this. For completeness, I've attached a separate patch for the second proposed change. -- Dick Streefland Altium Software

[patch] suggestions for -v option

2002-05-16 Thread Dick Streefland
o report newer files when you use a single -v option. It is also consistent with the warning messages generated by "rdist -y". -- Dick Streefland Altium Software BV [EMAIL PROTECTED] (@ @) http://www.altium.com ---

[patch] output of rsync -n truncated

2002-05-16 Thread Dick Streefland
As you can see, the output of the last command is truncated. The problem is that the output is written in non-blocking mode, and that when the write() returns EAGAIN, the output may be discarded. The attached patch adds a check for EAGAIN, and retries the write() after 20 msec, which