similar to: "Couldn't find service home"

Displaying 20 results from an estimated 4000 matches similar to: ""Couldn't find service home""

2003 Jul 08
2
Problems with Samba and W2K
Dear Group, I have been working very hard for the last 3 days trying to get my W2K To join a Samba Domain. I have tried it seems like everything to do it and it won't go. I really think its something simple but I don't know how to fix it. The error I get is this one from W2k when trying to join the samba domain. ""The Following error occurred to join the domain smis". The
2003 Jul 09
2
I get two diffrent errors now...:-(
Hi Team, For the last several days I have worked very hard in trying to get a Samba PDC up. I have now reinstalled RH9- running Samba 2.2.7a and everything is running. But now I can't even get it to comeup as workf group. One error i get "SMIS DOMAIN" - Network Path not found. This is what iget with current SMB.CONF The othe one is in the attachment. Here is the current SMB.CONF
2003 Jul 08
2
Problems with Smaba STILL
Ok I have done everything you guys have asked me to do and I still get the same error- I even went out downloaded Webmin to help me out and the blasted Vendow$ keep coming up with the same error. ""The Following error occurred to join the domain smis". The account used is a computer account. Use your global user account or local user account to access this server." here is
2010 Jan 20
2
Error meaning
Hi r-users,   I have the following code to solve 4 simultaneous eqns with 4 unknowns using newton iteration method.  But I got the error message:   pars <- c(1.15, 40, 50, 0.78) newton.input2 <- function(pars) {  ## parameters to estimate      alp <- pars[1]    b1  <- pars[2]     b2  <- pars[3]    rho <- pars[4]   f1 <- pars[1]*pars[2] f2 <-
2010 Jun 22
1
Subject: Re ZINB by Newton Raphson??
I have not included the previous postings because they came out very strangely on my mail reader. However, the question concerned the choice of minimizer for the zeroinfl() function, which apparently allows any of the current 6 methods of optim() for this purpose. The original poster wanted to use Newton-Raphson. Newton-Raphson (or just Newton for simplicity) is commonly thought to be the
2010 Jan 26
1
newton method for single nonlinear equation
Hi r-users,   I would like to solve for z values using newton iteration method.  I 'm not sure which part of the code is wrong since I'm not very good at programming but would like to learn.  There seem to be some output but what I expected is a vector of z values.  Thank you so much for any help given.   newton.inputsingle <- function(pars,n) {  runi    <- runif(974, min=0, max=1)
2002 Oct 10
1
multiple alternative LDAP backends
I'm using Samba marked 2.999+3.0cvs20020723 from Debian `sid'. In smb.conf, I've got: passdb backend = ldapsam:ldaps://master.ldap.server ldapsam:ldaps://backup.ldap.server tdbsam All works fine when both ldap servers are up, or when at least the first is up. When the first is down, though, samba tries to connect to it, doesn't manage to, and gives up instead of trying the
2007 Sep 03
2
Derivative of a Function Expression
Hi I am currently (for pedagogical purposes) writing a simple numerical analysis library in R. I have come unstuck when writing a simple Newton-Raphson implementation, that looks like this: f <- function(x) { 2*cos(x)^2 + 3*sin(x) + 0.5 } root <- newton(f, tol=0.0001, N=20, a=1) My issue is calculating the symbolic derivative of f() inside the newton() function. I cant seem to get R to
2006 Sep 07
4
How to setup a sweeper to restart stale or hung mongrel servers
How do I setup a sweeper to restart stale or hung mongrel servers? -- Jared Brown jaredbrown at gmail.com (765) 409-0875 7001 Central Ave Indianapolis, IN 46220 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20060907/0994017f/attachment.html
2018 Oct 02
2
Re: VM migration help required.
On Mon, Oct 1, 2018 at 12:25 PM Nitin Rane <Nitin.Rane@techmahindra.com> wrote: > Hi Arik,Shahar, > (Adding libguestfs mailing-list) Hi Nitin, > I am looking to migrate VMs from Openstack Juno to Openstack Newton and > from VMWare to Openstack Newton. > > While doing google search I came across the link authored by you, >
2012 Aug 31
3
fitting lognormal censored data
Hi , I am trying to get some estimator based on lognormal distribution when we have left,interval, and right censored data. Since, there is now avalible pakage in R can help me in this, I had to write my own code using Newton Raphson method which requires first and second derivative of log likelihood but my problem after runing the code is the estimators were too high. with this email ,I provide
2007 Apr 18
1
Gentleman and Ihaka , 2000 paper question
In their paper, "Lexical Scope and Statistical Computing", the authors ( Gentleman and Ihaka ) go to great length explaining why R's use of lexical scoping creates advantages when doing statistical computations. If anyone has or is familiar with this paper, could they provide the main program code for how the "newton" function would be called in their example on page 500
2010 Jul 29
7
newton.method
Hi, Is this method broken in R? I am using it to find roots of the following function: f(x) = 2.5*exp(-0.5*(2*0.045 - x)) + 2.5*exp(-0.045) + 2.5*exp(-1.5*x) - 100 It is giving an answer of -38.4762403 which is not even close (f(x) = 2.903809e+25 for x=-38.4762403). The answer should be around 0.01-0.1. This function should converge.. Even for a simple function like f(x) = exp(-x) * x, it gives
2005 Dec 05
1
Strange automount problem with samba & LDAP
Hi all, I've installed samba-3.0.21rc2 on a solaris 10 machine (latest patches applied) by compiling from source: #uname -a SunOS newton 5.10 Generic_118844-20 i86pc i386 i86pc User's home is mounted using automount without any problem. But when I try to mount using samba, it can not access the users home directory when it 's share is not mounted and gives following error:
2011 Dec 21
3
NEWTON ALGORITHM
Hi, My name is Curtis and I'm a 1st year student in Biochemistry at the University of Geneva. I need some help completing the code for my NEWTON ALGORITHM. It is a bonus exercice to our autumn semester maths exam and we can hand it in or not. Usually people copy and paste but I decided to sit down and review theory and ask for help left right and center. My problem is that I cannot get my
2011 Aug 10
3
Need help on Newton-Raphson optimization
Hi, Is there available package on the optimization function using Newton-Raphson method (iterative quadratic approximation)? I have been using the 'optim' function in R and found it really unstable (it depends heavily on the initial values and functional forms). If I have to code it by myself, can I get some advice on how to start (any good reference or sample code)? I really
2014 Dec 24
2
Connect Asterisk to WiFi
On Tue, Dec 23, 2014 at 6:34 PM, Rusty Newton <rnewton at digium.com> wrote: > On Tue, Dec 23, 2014 at 4:17 PM, Joseph <syscon780 at gmail.com> wrote: >> Are there any adapters that would allow me to connect asterisk to wifi or we >> are not there yet? >> I have Digium adapter S101i that was discontinued but similar device that >> would connect to wifi
2007 Nov 21
3
what is the recommended samba version on solaris?
Guys I was so frustrated about installing samba with ADS and winbind support on solaris 8. After fixing many problems, I am now facing another problem: I created a directory "test" in the samba share and was editing a file under the directory "test" and in the meantime the machine was rebooted. After the machine is started, the whole directory "test" is gone. I
2023 Jan 27
2
aniMoutm/foiegras Assistance
Hi all, I am receiving the error *Newton failed to find minimum* whilst trying to fit a move persistence model in this package. I think the error is related to the optimiser in the TMB package but it is beyond my statistics/coding knowledge to track down the specific cause and solution. I would appreciate it if anyone knew some resources to assist with fixing this. I have put a MRE and sample data
2015 May 06
3
[LLVMdev] LLD improvement plan
On Wed, May 6, 2015 at 5:30 PM, Daniel Dilts <diltsman at gmail.com> wrote: > > > On Wed, May 6, 2015 at 12:51 AM, Will Newton <will.newton at gmail.com> wrote: >> >> On Wed, May 6, 2015 at 6:22 AM, Chris Lattner <clattner at apple.com> wrote: >> > On May 5, 2015, at 6:47 PM, Daniel Dilts <diltsman at gmail.com> wrote: >> > >>