Displaying 20 results from an estimated 200 matches similar to: "preserve ctimes of *unchanged* directories on receiver"
2005 Apr 06
2
backup option
Hi,
	I have question about the behavior  of --backup-dir with
--delete-after option.
	In my testing with version 2.6.4, it appears that the backup
option only backups altered files. Files that will be deleted on the
destination system will NOT be placed in --backup-dir location. I would
like to back up deleted files. Is there a way to do this?
Thanks
2005 May 12
2
help me understand keepalive..
I'm not sure keepalive is working the way I think it's supposed to.
Here's my test.  I've got a large file (approx 1 gig) on the rsync
server, and I append a character on the end to make it slightly
different.  I fire up rsync on the client side and everything
works fine until I hit the timeout value.  I have this
problems when I have a timeout of below 90 seconds.  I've tried
2004 May 06
2
rsync-2.6.2: NFS clients confused after an rsync
We use rsync to update an nfs server.  After an update, we noticed that
a large number of clients didn't see the updated data.
It took me a while to be able to reliably reproduce this problem, but it
happens on old and new versions of rysnc.  It also happens across all
the platforms we use here (sun/linux/netapp).
This shows the problem: [Note my home directory is NFS mounted]
2008 Jan 05
1
OT: ctimes
I am going to convert my 32-bit Debian system to a 64-bit Debian system 
today.  But, after I move my maildir files over to the new hard drive 
the ctimes are going to get modified to current time and mess up my 
automatic purge scripts for the Deleted Items folders.  Is it possible 
for me to either keep the existing ctimes or is it possible for me to 
modify the ctimes to the date headers of the
2020 Mar 16
0
atimes+ctimes patch
schilytools star has the ability to restore ctimes from tarfiles. This
is useful when restoring filesystems as root in single user mode, and
I thought I'd like rsync to do the same.
I started working off the rsync-patches/atimes.diff patch but noticed
that this patch is buggy and presently does not work. (It fails to set
the atime and it fails to set the mtime too).  Even if this is fixed
2013 Oct 25
2
btrfs send/receive do not keep inode ctimes
Hello insiders
is there low level support to change inode ctimes somehow?
(on ext[234] it can be done using debugfs)
It would be nice to make received snapshots as similar as
possible to their send source. (I am not talking about
uuids and such, just ls -lc output)
creative ideas are welcome,
Karl
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body
2006 May 04
6
DO NOT REPLY [Bug 3752] New: rsync unusable with EncFS filesystem
https://bugzilla.samba.org/show_bug.cgi?id=3752
           Summary: rsync unusable with EncFS filesystem
           Product: rsync
           Version: 2.6.8
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: critical
          Priority: P3
         Component: core
        AssignedTo: wayned@samba.org
        ReportedBy: micheala@jacey.org
        
2006 Nov 12
1
Superfluous error msgs: "failed to set times ..."
When rsync'ing to an Ext2 file system (via SSH), then I frequently get
error messages such as "failed to set times ...".  AFAICS, these error
messages are caused by rsync trying to change the time (and permissions,
ownership) of symbolic links, which according to my knowledge is not
possible on Ext2.
Is there any way to get rid of these supposedly superfluous error
messages?
rsync
2005 Jul 26
2
[Bug 2913] rsync of symlinks on >=bsd needs lutimes(2) and lchmod(2)
https://bugzilla.samba.org/show_bug.cgi?id=2913
------- Additional Comments From wayned@samba.org  2005-07-26 09:27 -------
Created an attachment (id=1336)
 --> (https://bugzilla.samba.org/attachment.cgi?id=1336&action=view)
Use lchmod and lutimes, if present
Please test this patch and see if it works for you.  You will need to run
"autoconf; autoheader; make proto" (or
2008 May 31
5
DO NOT REPLY [Bug 5506] New: support utime differences at runtime, not configure/build time
https://bugzilla.samba.org/show_bug.cgi?id=5506
           Summary: support utime differences at runtime, not
                    configure/build time
           Product: rsync
           Version: 3.0.3
          Platform: All
               URL: http://thread.gmane.org/gmane.network.rsync.general/1794
                    8
        OS/Version: Linux
            Status: NEW
          Severity:
2008 Mar 19
0
[PATCH] Unsnarl missing_below/dry_run logic.
The generator can skip a directory's contents altogether due to
--ignore-non-existing, a daemon exclude, or a mkdir failure.  On a --dry-run,
the generator can also note the missingness of a directory while still scanning
its contents.  These two scenarios were conflated using a single set of
missing_below/missing_dir variables in combination with transient increments in
dry_run; this caused
2004 Feb 17
1
[patch] Make robust_rename() handle EXDEV.
All callers of robust_rename() call copy_file() if EXDEV is received.  This
patch moves the copy_file() call into robust_rename().
Patch Summary:
    -12  +1    backup.c
    -15  +2    rsync.c
    -9   +33   util.c
-------------- next part --------------
patchwork diff util.c
--- util.c	2004-02-17 09:58:44.000000000 -0500
+++ util.c	2004-02-17 10:21:22.000000000 -0500
@@ -355,16 +355,40 @@
 
2010 Jun 24
5
Best way to compute a sum
> a <- 0 ; for(i in (1:200000000)) a <- a + 1/i
  > b <- 0 ; for(i in (200000000:1)) b <- b + 1/i
  > c <- sum(1/(1:200000000))
  > d <- sum(1/(200000000:1))
  > order(c(a,b,c,d))
  [1] 1 2 4 3
  > b<c
  [1] TRUE
  > c==d
  [1] FALSE
I'd expected b being the largest, since we sum up the smallest 
numbers first. Instead, c is the largest, which is
2004 May 10
2
read error produces null-byte-filled destination file
I've run into a bug in the IO handling when reading a file.  Suppose I
have a file that lives on an NFS filesystem.  That filesystem is NOT
being exported with auth=0 permissions.  So, if I try to access a file
as root, it successfully opens the file, but subsequent reads fail with
EACCES.  This produces a destination file full of null bytes.  I
noticed this with 2.5.7, but checked 2.6.2 as
2002 Sep 10
0
[PATCH] Add --preserve-atime switch to rsync
In the past there have been discussions about adding a switch to rsync to
preserve the atime on files being copied by rsync. I needed this function
for a project I'm working on and decided to invent it. I've attached the
diffs. Note that this has the limitations describe in previous emails,
namely that preserving atime causes ctime to not be preserved.
*** Patch follows ***
***
2011 Mar 25
2
[Bug 8039] New: rsync won't link unchanged files
https://bugzilla.samba.org/show_bug.cgi?id=8039
           Summary: rsync won't link unchanged files
           Product: rsync
           Version: 3.0.7
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P5
         Component: core
        AssignedTo: wayned at samba.org
        ReportedBy: asciencegeek at yahoo.com
        
2010 Jul 17
0
CELT_GET_BITSTREAM_VERSION unchanged from 0.7.1 to 0.8.1
#define CELT_GET_BITSTREAM_VERSION 2000
Is there a reason this stayed the same or did someone just forget to change
it?
-torg
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/opus/attachments/20100716/d45c084e/attachment-0002.htm
2005 May 13
0
Unchanged sound through Asterisk
Hi!
To me, it seems like Asterisk are involved in alternating the sound/voice running through it.
One thing is that it mutes DTMF digits.
I also got an Adit 600 channel bank connected via MGCP, which _might_ have something to do with it,
but I can't find any settings in it, regarding DTMF mutes.
How can I make sure Asterisk is _not_ "changing"/"transforming" the sound (as
2004 Jul 22
1
writing a file keep the group unchanged
Hi, via samba, I write a file. However, after I write a file, the file 
is owned by my primary group. The file is used to be owned by a group 
whom I belong to, but that group is not my primary group. Is there any 
way I can write that file but still keep the group ownership? Thanks
2016 Jan 20
2
[PATCH] Consider nanoseconds when quick-checking for unchanged files
I wrote on Fri, 02 Jan 2015 16:02:27 +0100:
> --- a/generator.c       2014-06-14 01:05:08.000000000 +0200
> +++ b/generator.c       2015-01-02 15:50:30.000000000 +0100
> @@ -588,7 +588,14 @@
>         if (ignore_times)
>                 return 0;
> -       return cmp_time(st->st_mtime, file->modtime) == 0;
> +       return cmp_time(st->st_mtime, file->modtime) ==