search for: elmts

Displaying 5 results from an estimated 5 matches for "elmts".

Did you mean: elmos
2018 Apr 13
0
VPN remote Samba AD DC not located
...was made with the option "--dns-backend=BIND9_DLZ" a few years ago.   On the local location (1)  "samba-tool domain provision" was made with the option "--dns-backend=SAMBA_INTERNAL" recently.   Now, how can I confirm this to be sure? > First thing, is company.elmts a registered domain name ?   "company.elmts" is "iodesoft.lan" > if so, I would use a subdomain of this instead e.g. ad.company.elmts   I don't see why.   I've read it is possible to have one DNS domain name not two or more.   I think it would be very difficul...
2018 Apr 13
1
DNS backend SAMBA_INTERNAL name resolution through VPN
...es resolution work first through the VPN. The DNS servers are Samba internal DNS servers. During the provision, SAMBA_INTERNAL was chosen. +---------------------------+ | SUBNET: 192.168.1.0/24 +---------------------------+ | SAMBA AD DC DNS server 1 +---------------------------+ | DOMAIN: company.elmts +---------------------------+ | hostname_1_1 | hostname_1_2 | ... | hostname_1_N1 +---------------------------+ | | | VPN | | | +--------------------------+ | SUBNET: 192.168.2.0/24 +--------------------------+ | SAMBA AD DC DNS server 2 +--------------------------+ | DOMAIN: company.elmts +-------...
2009 Jan 05
1
can't get names of R_env
Hi, I'm quite knew in R, so I might not have the R specific jargon. But here is my problem, I'm trying to access and use variabels given by a function environment, more specifically the rho in do_optim in src/main/optim.c According to the documentation http://cran.r-project.org/doc/manuals/R-ints.html#The-_0027data_0027 the envsxp is defined as a tagged pairlist. "ENVSXP: Pointers
2001 Sep 27
1
Passing an R matrix to a C program
Hello, I'm starting to write a C function that gets a list and a matrix from R. I'm using .Call because I've undertood that this is recommended to handle lists (am I wrong?). My problem is that I can pass the matrix as a vector, but not as a 2D array. For example, in the following simple C program: #include <R.h> #include <Rdefines.h> SEXP printListElement(SEXP list,
2007 Sep 13
1
rearrange problem
Hi All, I am trying to rearrange alphabetically each element in a character vector. ex: say the first element in the vector is "cba", and my goal is to turn it into "abc". The suggested function to use is sort(). But it turns out that sort doesn't work at the level of element. So I am wondering that if there is an alternative function for this purpose. Please help me out .