Displaying 20 results from an estimated 500 matches similar to: "Winbind and User Private Groups"
2016 Dec 13
2
ipa rpm conflicts
does anybody see this:
unning transaction
Warning: RPMDB altered outside of yum.
** Found 8 pre-existing rpmdb problem(s), 'yum check' output
follows:
ipa-admintools-4.4.0-14.el7.centos.noarch has installed
conflicts freeipa-admintools:
ipa-admintools-4.4.0-14.el7.centos.noarch
ipa-client-4.4.0-14.el7.centos.x86_64 has installed
conflicts freeipa-client:
2016 Dec 13
1
ipa rpm conflicts
On Tue, Dec 13, 2016 at 04:44:06PM +0000, lejeczek wrote:
> does anybody see this:
>
> unning transaction
> Warning: RPMDB altered outside of yum.
> ** Found 8 pre-existing rpmdb problem(s), 'yum check' output
> follows:
> ipa-admintools-4.4.0-14.el7.centos.noarch has installed conflicts
> freeipa-admintools: ipa-admintools-4.4.0-14.el7.centos.noarch
>
2005 Sep 01
3
ntlm_auth and high load fault
Hi,
I've noticed that Windows Updates, just won't do NTLM auth, so i've just
added a no_auth exception for windows update sites.
How many children are you starting. I'm serving +700 users with just one
squid with 30 ntlm_auth processes on a PII/800 MHZ/256 MB Ram with no
problems wathsoever.
Best Regards,
Bruno Guerreiro
>-----Original Message-----
>From: Vitaly Protsko
2005 Mar 19
3
Asterisk and Cisco AS53xx/54xx Access Server Platform
Hello,
I've got an ISDN PRI circuit terminating in a Cisco AS5350, which in
turn is talking to an Asterisk server via SIP for call origination and
termination. Seems simple enough, and it works for the most part,
but:
1) Caller ID name data comes in on the PRI, but doesn't appear to get
handed off to the Asterisk server via SIP, at least not in any
format that Asterisk
2000 Jul 23
0
Group quota with Linux
Dear Samba team,
I have been running samba 2.0.7 with quota support enabled. It works
fine, but I think it needs to be improved.
Samba is checking user quota, so it limits the total diskspace a user
can use on all shares together. However, this is not the most logical
approach. Setting limits on a share basis is more logical and intuitive
for the user. The share represents a logical disk with a
2008 Jun 17
0
Well known MS Office install bug
Greetings -
I've been trying to get Darwine RC3 to install MS Office, but get this
error (below) repeatedly. Is this a known problem? Ideas?
thanks
Reid
bash-3.2$ /Applications/Darwine/Wine.bundle/Contents/bin/wine e:
\setup.exe /autorun
fixme:imm:ImmDisableIME (-1): stub
fixme:advapi:CheckTokenMembership (0x0 0x122b40 0x326d8c) stub!
Unknown option "L"r+"" for UI
2001 Apr 11
0
replicating lists (fwd) (PR#907)
Filed as a bug, as suggested by Brian R., Jonathan.
Jonathan Rougier Science Laboratories
Department of Mathematical Sciences South Road
University of Durham Durham DH1 3LE
tel: +44 (0)191 374 2361, fax: +44 (0)191 374 7388
http://www.maths.dur.ac.uk/stats/people/jcr/jcr.html
---------- Forwarded message ----------
Date: Wed, 11 Apr 2001 09:15:26 +0100
2003 Apr 15
0
FW: Academic Software Discounts
Macromedia Studio MX at 76% OFF,
Adobe Photoshop at 56% OFF,
Office XP Standard at 71% OFF,
Adobe Design Collection at 62% OFF
Microsoft Visual Studio.NET at 91% OFF,
FREE SHIPPING THROUGH APRIL 30, 2003
WITH BELOW CODE.
FREE SHIPPING CODE (Ground Only): DKG402
YOU MUST PLACE ORDER BY TELEPHONE AND
YOU MUST TELL OUR OPERATOR THAT YOU
HAVE A FREE SHIPPING CODE.
Dear Students, Teachers,
2002 Feb 20
1
Pivoting in chol
Hi Everyone,
I have modified my version of R-1.4.1 to include choleski with pivoting
(like in Splus). I thought R-core might consider including this in the
next version of R, so I give below the steps required to facilitate
this.
1. Copied Linpack routine "dchdc.f" into src/appl
2. Inserted line F77_SUBROUTINE(dchdc) in src/appl/ROUTINES
3. Inserted "dchdc.f" into
2002 Nov 22
4
Small change to plot.xy
Hi everyone,
Is there any reason why we should not automatically coerce a factor
supplied as an argument to col in a plotting function? The following
modification (to R-1.6.1) seems pretty harmless
> plot.xy
function (xy, type, pch = 1, lty = "solid", col = par("fg"),
bg = NA, cex = 1, ...)
{
if (is.factor(col))
col <- codes(col)
2002 Oct 08
3
hash argument of new.env()
Hi everyone,
There is no mention in ?new.env (R-1.6.0) of what the effect of setting
the hash argument of new.env() actually does. What does it mean in
performance terms to say that "the environment will be hashed"?
Thanks, Jonathan.
--
Jonathan Rougier Science Laboratories
Department of Mathematical Sciences South Road
University of Durham
2000 Dec 07
0
Tuning the nlm function
Hi Everyone,
Is there a simple way to force nlm to take larger initial steps? Setting
print.level = 2 allows me to inspect the step size at each iteration, but
I appear not to have made any appreciable impact on it by changing values
of typsize, fscale, steptol or stepmax. The steps repeatedly come out
tiny, 1e-9 typically, and the algorithm is terminating not because the
gradient is zero (it
2000 Nov 10
1
Modification to cov and cor
Can I suggest that in cov and cor the lines
if (is.data.frame(x))
x <- as.matrix(x)
if (is.data.frame(y))
y <- as.matrix(y)
be replaced by
if (is.data.frame(x))
x <- data.matrix(x) # coerce logical and factors
if (is.data.frame(y))
y <- data.matrix(y) # likewise
This would allow things like
> data(iris)
> cor(iris)
which
2001 Mar 21
0
Suggest new outer for R-1.3
Hi everyone,
Can I suggest the following modification of outer for R-1.3, in the
interests of speed and size of calculation:
*******************************************************************
"outer" <-
function (X, Y, FUN = "*", ...)
{
no.nx <- is.null(nx <- dimnames(X <- as.array(X)))
dX <- dim(X)
no.ny <- is.null(ny <- dimnames(Y <-
2002 Mar 15
1
Thought on crossprod
Hi everyone,
I do a lot of work with large variance matrices, and I like to use
"crossprod" for speed and to keep everything symmetric, i.e. I often
compute "crossprod(Q %*% t(A))" for "A %*% Sigma %*% t(A)", where
"Sigma" decomposes as "t(Q) %*% Q". I notice in the code that
"crossprod", current definition
> crossprod
function (x,
2002 May 16
0
Re: [R] NaN/NA and sprintf double format (PR#1561)
ripley@stats.ox.ac.uk wrote:
>
> On Tue, 14 May 2002, Dirk Eddelbuettel wrote:
>
> > With a (late prerelease of) 1.5.0 on Windows, using sprintf on NaN
> > yields garbage when the number of decimal is specified while it
> > works fine for NA:
> >
> > > sprintf("%.2f", NA)
> > [1] "0.00"
>
> I get that on Linux too, but
2002 Oct 22
0
methods function
Hi everyone,
I've noticed that the methods function is incomplete. The obvious
example is if I write a function "$.foo", it is not picked up by
methods:
> "$.foo" <- function(object, name) get(name, envir=object[[1]])
> "$<-.foo" <- function(object, name, value) {assign(name, value, envir=object[[1]]); object}
> happy <-
2000 Feb 11
1
Something strange in "?assign"? (PR#433)
According to the assign helpfile (0.90.1) the "assign" function is
function (x, value, pos = -1, envir = sys.frame(sys.parent()),
inherits = FALSE, immediate = TRUE)
which is not quite the implementation, which is
function (x, value, pos = -1, envir = pos.to.env(pos), inherits = FALSE,
immediate = TRUE)
This seems to have the following interesting effect.
"short.fun"
2002 Aug 20
1
NA and help page for "&" and "|"
Hi everyone,
Can I suggest an addition to the help page for logical AND and OR,
indicating the behaviour of NA (which is currently not mentioned at
all). I think something simple like an extra paragraph in Details, eg
\code{NA} is a valid logical object. Where a component of \code{x} or
\code{y} is \code{NA}, the result will be \code{NA} if the outcome is
ambiguous. In other words \code{NA
2000 Sep 07
1
.C and DUP=TRUE versus .Call
Hi Everyone,
I have a piece of C code that uses R_alloc, and so I set DUP=TRUE in the
call using ".C". As I understand it this takes a copy of each object
passed to my function. If these objects are large then this could be
expensive. My question is, if I rewrote the code to use .Call, would I
avoid this duplication by using the objects themselves (they are not
modified in the code)