Displaying 20 results from an estimated 5000 matches similar to: "[Bug 12569] New: Missing directory errors not ignored"
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 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
2018 Oct 10
0
[Bug 12569] Missing directory errors not ignored
?
(https://mail.edison.tech/chat-invite.html?invitorName=Chris%20Goodman&invitorEmail=cgoody2376 at gmail.com&message=?&mid=572b82e3c44e452eab297ad5de8726d6&inviteeName=Rsync-Qa&inviteeEmail=rsync-qa at samba.org)
Sent With Edison Mail
>
> On Oct 9, 2018 at 4:17 PM, <just subscribed for rsync-qa from bugzilla via
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 event mechanism and
> then calls
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
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
2008 Oct 16
3
Alternatives to programmatically calling the rsync binary a lot
Dear list, I'd like to have your expertise opinion on following issue.
Out of a concrete need we developed an application that will rsync any
changes on a local directory structure to a remove system the moment they
happen using the linux kernel watch feature. This is in our opinion much
more elegant compared to invoking rsync every x seconds/minutes from cron,
or having to use a special
2017 Apr 07
5
rsync 3.1.1: --ignore-missing-args / --delete-missing args problem
Dear All,
We sometimes have to replicate large "live" filesystems with many (
sometimes millions, up to few hundred millions ) files on them. (
Copying actively used files is of course a bad idea, but it really helps
to keep the delta small, so one final transfer can later save the day. )
The problem, as one may guess, is that some files may disappear during
the process, so rsync
2017 Feb 10
1
Alternatives to rsync. Was: Huge directory tree: Get files to sync via tools like sysdig
Am 09.02.2017 um 16:21 schrieb Ben RUBSON:
>
>> On 09 Feb 2017, at 16:10, Thomas Güttler <guettliml at thomas-guettler.de> wrote:
>>
>> Am 09.02.2017 um 11:05 schrieb Ben RUBSON:
>>>> On 09 Feb 2017, at 10:05, Thomas Güttler <guettliml at thomas-guettler.de> wrote:
>>>>
>>>> Hi,
>>>>
>>>> we have a huge
2006 Jul 26
2
Branching on 'grep' returns...
Greetings, all.
I'm fiddling with some text manipulation in R, and I've found
something which feels counterintuitive to my PERL-trained senses; I'm
hoping that I can glean new R intuition about the situation.
Here's an example, as concise as I could make it.
trg<-c("this","that")
# these two work as I'd expected.
if ( grep("this",trg) ) {
2017 Aug 22
4
boot.stepAIC fails with computed formula
I'm trying to use boot.stepAIC for feature selection; I need to be able to specify the name of the dependent variable programmatically, but this appear to fail:
In R-Studio with MS R Open 3.4:
library(bootStepAIC)
#Fake data
n<-200
x1 <- runif(n, -3, 3)
x2 <- runif(n, -3, 3)
x3 <- runif(n, -3, 3)
x4 <- runif(n, -3, 3)
x5 <- runif(n, -3, 3)
x6 <- runif(n, -3, 3)
x7
2017 Aug 23
3
boot.stepAIC fails with computed formula
Until I get a fix that works, a work-around would be to rename the 'y1' column, used a fixed formula, and rename it back afterwards.
Thanks for your help.
SGO.
-----Original Message-----
From: Bert Gunter [mailto:bgunter.4567 at gmail.com]
Sent: 22 August 2017 20:38
To: Stephen O'hagan <SOhagan at manchester.ac.uk>
Cc: r-help at r-project.org
Subject: Re: [R] boot.stepAIC
2017 Aug 23
0
boot.stepAIC fails with computed formula
It seems that if you build the formula as a character string, and
postpone the "as.formula" into the lm call, it works.
instead of
frm1 <- as.formula(paste(trg,"~1"))
use
frm1a <- paste(trg,"~1")
and then
strt <- lm(as.formula(frm1a),dat)
regards,
Heinz
Stephen O'hagan wrote/hat geschrieben on/am 23.08.2017 12:07:
> Until I get a fix that works, a
2017 Aug 22
1
boot.stepAIC fails with computed formula
Failed? What was the error message?
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Tue, Aug 22, 2017 at 8:17 AM, Stephen O'hagan
<SOhagan at manchester.ac.uk> wrote:
> I'm trying to use boot.stepAIC for
2017 Aug 22
0
boot.stepAIC fails with computed formula
The error is "the model fit failed in 50 bootstrap samples
Error: non-character argument"
Cheers,
SOH.
On 22/08/2017 17:52, Bert Gunter wrote:
> Failed? What was the error message?
>
> Cheers,
>
> Bert
>
>
> Bert Gunter
>
> "The trouble with having an open mind is that people keep coming along
> and sticking things into it."
> -- Opus (aka
2013 Dec 09
3
Gluster infrastructure question
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Heyho guys,
I'm running since years glusterfs in a small environment without big
problems.
Now I'm going to use glusterFS for a bigger cluster but I've some
questions :)
Environment:
* 4 Servers
* 20 x 2TB HDD, each
* Raidcontroller
* Raid 10
* 4x bricks => Replicated, Distributed volume
* Gluster 3.4
1)
I'm asking me, if I can
2017 Aug 22
1
boot.stepAIC fails with computed formula
SImplify your call to lm using the "." argument instead of
manipulating formulas.
> strt <- lm(y1 ~ ., data = dat)
and you do not need to explicitly specify the "1+" on the rhs for lm, so
> frm2<-as.formula(paste(trg," ~ ", paste(xvars,collapse = "+")))
works fine, too.
Anyway, doing this gives (but see end of output)"
bst <-
2017 Aug 22
0
boot.stepAIC fails with computed formula
OK, here's the problem. Continuing with your example:
strt1 <- lm(y1 ~1, dat)
strt2 <- lm(frm1,dat)
> strt1
Call:
lm(formula = y1 ~ 1, data = dat)
Coefficients:
(Intercept)
41.73
> strt2
Call:
lm(formula = frm1, data = dat)
Coefficients:
(Intercept)
41.73
Note that the formula objects of the lm object are different: strt2
does not evaluate the formula. So
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