Displaying 5 results from an estimated 5 matches for "namea".
Did you mean:
name
2000 May 09
1
Samba 2.0.5a error when adding machine to domain
Yesterday, I found that a required file for Samba was empty and had
been modified recently (< 1 hour before I was called to investigate). I
later found out that the Samba software modifies this file on a set schedule
if I leave the default settings alone. The file was PAYCHEX.<netbios-nameA>.mac.
Because this file was empty, I figured I was screwed and had to add the machine
to the domain again.
I moved the MACHINE.SID and PAYCHEX.<netbios-nameA>.mac files out of
the way (not removed, but, out of the "private" directory). I asked the NT
administrator
to create a n...
2008 Feb 18
3
tabulation on dataframe question
I have a data frame with data similar to this:
NameA GrpA NameB GrpB Dist
A Alpha B Alpha 0.2
A Alpha C Beta 0.2
A Alpha D Beta 0.4
B Alpha C Beta 0.2
B Alpha D Beta 0.1
C Beta D Beta 0.3
Dist is a distance measure between two entities. The table...
2008 Feb 20
1
clustering problem
First I just want to say thanks for all the help I've had from the
list so far..)
I now have what I think is a clustering problem. I have lots of
objects which I have measured a dissimilarity between. Now, this list
only has one entry per pair, so it is not symmetrical.
Example input:
NameA NameB Dist
189_1C2 189_1C1 0
189_1C3 189_1C1 0.017
189_1C3 189_1C2 0.017
189_1C4 189_1C1 0
189_1C4 189_1C2 0
189_1C4 189_1C3 0.017
189_1C5 189_1C1 0.05
189_1C5 189_1C2 0.05
189_1C5 189_1C3 0.067
189_1C5 189_1C4 0.05
189_1C6 189_1C1 0.05
189_1C6 189_1C2 0.05
189_1C6 189_1C3 0.067
189_1C6 189_1C4...
2007 Sep 14
1
GSSAPI vs load-balanced servers - anything we can do?
...to further the case of
https://bugzilla.mindrot.org/show_bug.cgi?id=1008
As a summary, GSSAPI auth against machine in a DNS load-balanced server
farm fails. SSH-1 Kerberos works.
DNS load-balanced farm:
Individual machines in the farm have separate IP addresses (ipA, ipB),
separate hostnames (nameA, nameB, ..) and separate Kerberos identities
(host/nameA.domain at REALM) . A common DNS name (clustername) resolves to
one or several IPs. Reverse lookup on the IP gives the individual
machine name. (seems to be a common & cheap way to spread load).
The problem is that GSSAPI insists on do...
2010 Aug 10
6
How to invert a list ?
Dear list,
I have a list, as follows :
a <- 5
names(a) <- "a"
b <- 9
names(b) <- "b"
c <- 15
names(c) <- "c"
x <- list("i" = a, "j" = b, "j" = c)
I want to invert the list, like this :
$a
i
5
$b
j k
9 15
I do not find a clean solution.
Could anyone give me elegant ideas ?
Thanks in advance,
Carlos