Displaying 20 results from an estimated 400 matches similar to: "[PATCH] prevent negative "time left" values with --progress when file grows"
2004 Jan 13
3
Progress reporting: N more to check
A recent posting here got me thinking about having the --progress
output tell the user about how many files were left to go in the
transfer. I submit the attached patch which outputs an extra suffix
onto the progress line at the end of each file's transfer (so it
only appears once per file, not on every status update). The output
would look like this:
[...]
flist.c
35671 100%
2007 Feb 07
3
Redirect --stats to STDERR.
Hello,
I have written a little script that's would email me all errors.
rsync -vah --delete --stats <sources> <destination> >
/var/log/sauvegarde/listoffile.log 2> /var/log/sauvegarde/errors.log
My problem is i want to have the stats in my mail. Is it possible to
redirect --stats to STDERR.
I have tryed to do this :
/---
2002 Mar 14
2
PATCH: better progress reporting
I've been looking at the --progress reporting, which is somewhat
improved these days. But look at this output of this evening rawhide
mirror update:
[...]
perl-DB_File-1.75-27.i386.rpm
73430 100% 519.63kB/s 0:00:00
perl-DB_File-1.75-28.99.3.i386.rpm
61783 100% 533.94kB/s 0:00:00
[...]
Now, while it's good to have the ETA ticking down as something is fetched,
2004 Feb 27
2
patch: better progress meter
Skipped content of type multipart/mixed-------------- next part --------------
A non-text attachment was scrubbed...
Name: PGP.sig
Type: application/pgp-signature
Size: 186 bytes
Desc: This is a digitally signed message part
Url : http://lists.samba.org/archive/rsync/attachments/20040227/923b87ee/PGP.bin
2001 Nov 29
1
patch from faith@alephnull to add rate indicator to --progress
Any votes for/against?
----- Forwarded message from Rik Faith <faith@alephnull.com> -----
Date: Wed, 28 Nov 2001 12:55:29 -0500
From: Rik Faith <faith@alephnull.com>
To: mbp@samba.org
Subject: rsync patch
X-Mailer: VM 6.96; XEmacs 21.1; Linux 2.4.16 (light)
Here is a patch that adds rate information (e.g., kB/s) to the
--progress display. I just noticed that 2.4.7pre4 is coming
2023 Jul 03
0
[PATCH] Add option --log-after to log after moving file into place
This mode is useful when a process is monitoring the log for
post-processing of transferred files.
With --log-after in local mode, both sender and receiver log to
the same log file, so it require --log-file with absolute path.
We add %o to the default log format, so it will be easy to tell
the logs of the sender from the logs of the receiver:
2023/02/14 14:40:25 [559755] building file list
2005 Jun 09
0
[Bug 2780] New: fix acl patch
https://bugzilla.samba.org/show_bug.cgi?id=2780
Summary: fix acl patch
Product: rsync
Version: 2.6.5
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: flepied@mandriva.com
QAContact: rsync-qa@samba.org
2010 Nov 23
0
[PATCH 2/3] Inform kernel of FADV_DONTNEED hint in sender
Use the FADV_DONTNEED fadvise hint after finishing reading an origin fd
in the sender.
---
sender.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/sender.c b/sender.c
index 59dae7d..a934bfe 100644
--- a/sender.c
+++ b/sender.c
@@ -338,6 +338,12 @@ void send_files(int f_in, int f_out)
if (do_progress)
end_progress(st.st_size);
+ if
2010 Feb 12
1
[RFC] add support for fallocate()
fallocate() is linux specific and will preallocate the space on disk for
the entire file. FALLOC_FL_KEEP_SIZE does not change the filesize as
reported by stat(). An aborted transfer will have preallocated disk space
which is not "visible" via stat(). This shouldn't matter unless the user
does complet his transfer.
An alternative would be to use ftruncate() and shorten the file to the
2003 Nov 17
0
[PATCH] --source-filter && --dest-filter for rsync 2.5.6
Hi,
I needed to filter content of files (encrypt), before they are sent over the network to backup server.
The easiest way to do this was modifying Kyle Jones's "--dest-filter" patch.
Somebody was asking there this feature in the past, so I'm sending this patch to list.
Implementation details:
-filtering disables rsync alogrithm
-source filter makes temporary files in /tmp
2009 Nov 04
0
PATCH: fast copy of files in local server mode
Dear List,
the attached patch makes rsync of local folders almost as fast as cp.
when rsync client and server has detected that they are working in
local_server mode,
they use local_socket, a unix domain socket pair, to pass the file
descriptors of the synced files.
the server uses the file descriptor it receives from the client to fast copy
from src to dst file.
on completion of every file fast
2004 Apr 27
1
[PATCH] Inplace option for rsync
Hi,
I have written a 'smallish' patch to implement the --inplace option
as discussed on this mailing list at various points in the past. It
makes a small modification to the sender algorithm so that it won't ask
the receiver to relocate blocks from earlier in the file when running
with the --inplace option.
I would appreciate any testing and feedback people can provide! I
2005 Sep 09
0
RTP ports in use grows and grows...
We've been seeing a pattern over the last couple of weeks with our
Asterisk servers (1.0.9). The number of ports in use (RTP) seems to grow
by two every minute or so. Eventually the server will run out of
allowable files open and crash. We are resetting the server once per day
to prevent this from occurring.
Running "lsof" shows the end of the list like this:
asterisk 26733 astx
2008 Oct 22
1
[PATCH] Make progress output show "done" instead of "to-chk".
In incremental recursion mode, the number of files "to check" can increase (when
new file-list chunks are built) as well as decrease, which I found confusing to
watch. This patch makes the progress line show the number of files "done"
(which increases monotonically) instead.
I did notice that the last progress line shows "done=N-1/N" instead of
"done=N/N";
2008 Jun 09
4
DO NOT REPLY [Bug 5529] New: Use commas in displayed numbers
https://bugzilla.samba.org/show_bug.cgi?id=5529
Summary: Use commas in displayed numbers
Product: rsync
Version: 3.0.2
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: Dave@Yost.com
QAContact:
2001 Oct 18
0
Security Update: [CSSA-2001-036.0] Linux - Several Linux Kernel Security Problems
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
______________________________________________________________________________
Caldera International, Inc. Security Advisory
Subject: Linux - several linux kernel security problems
Advisory number: CSSA-2001-036.0
Issue date: 2001, October 18
Cross reference:
______________________________________________________________________________
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
Le 21/08/2013 12:20, maximilian attems a ?crit :
> On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote:
>> Find attached two patches I have in order to build klibc 2.0.2
>> against kernel 3.8.13
>> We had to introduce those patches when going from kernel 3.6 to kernel 3.7
>> Hope it helps.
>>
> those patches are wrong and again very brittle.
>
2006 Dec 10
1
Rsync 2.6.9 Develops Conflict Between --stats, I think --delete-after and Local Filesystem Replication
Hi all,
Well, yeah, that's it, really. :-) Try it. Works consistently, on Doze
and Linux here ...
# rsync -vvrlHSPtiypogD --stats --numeric-ids --delete-after --force --
partial-dir=.partial /tmp/ /var/tmp/
[...show stats...]
unknown message 4:1 [generator]
rsync error: error in rsync protocol data stream (code 12) at io.c(307)
[generator=2.6.9]
rsync: connection unexpectedly closed (26
2002 Dec 09
2
Rsync performance increase through buffering
I've been studying the read and write buffering in rsync and it turns
out most I/O is done just a couple of bytes at a time. This means there
are lots of system calls, and also most network traffic comprises lots
of small packets. The behavior is most extreme when sending/receiving
file deltas of identical files.
The main case where I/O is buffered is writes from the server (when
io
2002 Jan 30
2
buffered memory grows
Hi.
I have shifted from redhat 7.1 to 7.2, and have several machines running
both versions now. I have noticed, that the memory usage patern is very
different on machines using ext2 and ext3 - the ones using ext2 usually use
5-10 MB of "buff" memory, but the ones with ext3 grow to 50MB on machines
with 128MB, and to 250MB with on machine with 512 MB. I have conducted a
test, and changed