Displaying 13 results from an estimated 13 matches for "axkibe".
2017 Feb 07
12
[Bug 12569] New: Missing directory errors not ignored
...: Missing directory errors not ignored
Product: rsync
Version: 3.1.2
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: core
Assignee: wayned at samba.org
Reporter: axkibe at gmail.com
QA Contact: rsync-qa at samba.org
When using --delete-missing-args and --ignore-errors with a a file list it
terminates anyway if one directory, that is not a sub of root, is not existing.
See:
~$ mkdir -p src/a trg/a
~$ echo "/a/b/c" > list
~$ /usr/local/bin/rs...
2017 May 10
1
[Bug 12781] New: rsync library
https://bugzilla.samba.org/show_bug.cgi?id=12781
Bug ID: 12781
Summary: rsync library
Product: rsync
Version: 3.1.3
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: core
Assignee: wayned at samba.org
Reporter: ildar at altlinux.ru
2010 Nov 20
4
How to sync an exact list of files, Including deletes!?
Hello,
I'm author of Lsyncd - the live syncing deamon -
http://code.google.com/p/lsyncd/ - a daemon that uses Linux` inotify
to watch for filesystem changes - aggregates them for a few seconds
and then periodically calls rsync to transfer the changes to
target(s). Version 1 was simply aware of directories only, and it
called rsync once with --delete -d for every directory in which
anything
2015 Jan 21
4
recreating domain with existing gid and uid
Okay, I gave up fixing that raspberry and going to use some conventional
legacy PC instead and reinstall it all.
Is there a way I can use the group, user and domain controller IDs from the
backups I created to reinstall a new Samba4 DC without the clients noticing?
I don't like to rejoin everything yet another time.
- Axel
2017 Feb 09
2
Huge directory tree: Get files to sync via tools like sysdig
On Thu, 9 Feb 2017 10:55:51 +0100
Axel Kittenberger <axkibe at gmail.com> wrote:
> > Has someone experience with collecting the changed files
> > with a third party tool which detects which files were changed?
>
> I don't know of sysdig but am the developer of Lsyncd which does
> exactly that, collect file changes via inotify...
2020 Feb 04
1
[Bug 14262] New: add continuous sync mode using inotify/fanotify/etc
https://bugzilla.samba.org/show_bug.cgi?id=14262
Bug ID: 14262
Summary: add continuous sync mode using inotify/fanotify/etc
Product: rsync
Version: 3.1.3
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: core
Assignee: wayne at opencoder.net
2011 Nov 17
1
What kind of error is 13?
I never figured out how I should tread error 13 from rsync, "Problem
with diagnostics". My question is, is this a transient or permanent
error? Or how seriously did something go wrong when rsync returns 13?
I don't get much smarter reading the rsync source either.
For reference this is for Lsyncd, which watches files with inotify and
uses rsync to transmit changes to a slave. It
2017 Feb 09
1
Huge directory tree: Get files to sync via tools like sysdig
On Thu, 9 Feb 2017 14:43:57 +0100
Axel Kittenberger <axkibe at gmail.com> wrote:
> >
> > Not only that, but inotify is not guaranteed. (At least not on
> > 3.16.0. Can't say regards later versions.) So you might miss some
> > changes.
> >
>
> Got any info on that?
>
> I noted that MOVE_FROM and MOVE_T...
2017 Feb 09
4
Huge directory tree: Get files to sync via tools like sysdig
Hi,
we have a huge directory tree.
* 17M files (number of files)
* 2.2TBytes of data.
* Only 0.1% changes per day
Current pain: rsyncs directory tree traversal needs to long to discover the changed files. Only few files change.
I discovered the tool sysdig which could be used to monitor the files which were changed.
Then we could feed the list of changed files to rsync and avoid the
2015 Jan 21
0
Restore from broken ext4
Hello,
I'm using a Rasperry:Pi as Samba4 DC for a small computer lab (9 clients).
Unfortunally I just had a crash with a broken ext4 filesystem. However, I
got a full image of the SD card just after I finished installation and
connected all domain clients a few days ago. I can simply dd that over a
new SD card and be running again.
However, that image has not all the users I created since
2017 Feb 06
0
Missing directory errors not ignored
Dear rsync-list,
I got following issue demonstrated by this script:
-----
$ mkdir -p src/a trg/a
$ echo "/a/b/c" > list
$ /usr/bin/rsync -slt --ignore-errors --force --ignore-missing-args
--delete-missing-args --files-from=list src localhost:`pwd`/trg
file has vanished: "/home/axel/src/a/b"
ABORTING due to invalid path from sender: a/b/c
rsync error: protocol
2017 Feb 09
0
Huge directory tree: Get files to sync via tools like sysdig
> Has someone experience with collecting the changed files
> with a third party tool which detects which files were changed?
I don't know of sysdig but am the developer of Lsyncd which does exactly
that, collect file changes via inotify event mechanism and then calls rsync
with a matching filter mask.
However, since you say, your directory tree is hugh, the main issue is that
for every
2017 Apr 07
0
rsync 3.1.1: --ignore-missing-args / --delete-missing args problem
With this two options on a very live system you may need to take into
account this bug as well I reported a while ago:
https://bugzilla.samba.org/show_bug.cgi?id=12569
Due to this I'm currently not using --ignore-missing-args /
--delete-missing but rather -exclude=* -include=- and a autocreated
hierachical filter rule list on stdin.
PS: Yes to simply ignore code 24 would be correct.