similar to: ? lmhosts ?

Displaying 20 results from an estimated 1100 matches similar to: "? lmhosts ?"

1999 May 11
1
Please Help! Re: Using smbpasswd (fwd)
I am trying to get encrypted passwords working for a Linux/Samba server serving Win9x clients. We want the students to be able to logon either the Samba file system or the Linux server and allow the students to change their password from either. I would really appreciate any help on this matter. We need to get this working as quickly as possible as the old Netware server is on life support.
1999 Apr 15
0
[RETRY] Help with preexec (fwd)
Having received no responses, I will try again. I can't seem to get preexec to work as stated in my earlier email given below. Any help would be most appreciated. I am using samba-2.0.3-19990228 in combination with RH 5.2 with kernel-2.2.1. Thanks, Carey ---------- Forwarded message ---------- Date: Tue, 13 Apr 1999 11:35:03 -0500 (CDT) From: Carey F. Cox <carey@tabasco.lamar.edu>
1999 Apr 03
0
SAMBA digest 2044
> Date: Fri, 2 Apr 1999 14:49:54 -0600 (EST) > From: "Carey F. Cox" <carey@tabasco.lamar.edu> > To: Samba Mailing List <samba@samba.org> > Subject: Logon scripts > Message-ID: <Pine.LNX.4.02.9904021434020.23732-100000@tabasco.lamar.edu> > > > Well, I finally solved my problem of not being able to run executables > on a Win95 client from a
1999 Apr 28
3
License manager
Has anyone successfully incorporated a Win95 app that uses FlexLM license manager on a Samba file system. I would be extremely interested in talking with you as we are trying to install Parametric Technology's ProEngineer on our Samba file server. We do have a copy of the Unix version of the license manager, but I am not sure how I can get the Win95 client to talk to it. Any and all
1999 May 14
0
Share Win95 files
I am wanting to share some license data files from a Win95 box out across a Samba controlled domain, where a Linux/Samba server is the PDC. I have enabled file sharing on the Win95 box and enabled sharing of the particular directory. However, I get the error message that no permissions are enabled and when I try to add users I get the message that it can't find a list of users. Is there
1999 Mar 22
0
Network domain logons?
I can't logon to the network via Win95 boxes. I tried to follow the diagnosis procedure, but when I get to test 3, I seem to have problems... [user1@melab user1]$ smbclient -L melab Added interface ip=XXX.XXX.XXX.XXX bcast=XXX.XXX.XXX.XXX nmask=XXX.XXX.XXX.XXX Password: session setup failed: ERRSRV - ERRbadpw (Bad password - name/password pair in a Tree Connect or Session Setup are
1999 Apr 03
5
Admin user
I want to create a user "samba" that has admin privileges over the directory where Win95 apps will be installed, but does not have root privileges. Are their any problems with doing so? Thanks, Carey =====================================================================e <> Carey F. Cox, PhD | PHONE: (409) 880-8770 <> <> Assistant
1999 May 04
5
smbpasswd question
Do you have to enable encrypted passwords for smbpasswd to work? I have yet to enable encryption because I wanted to test everything first, but have enabled 'update encrypted = Yes' so that this will update the smbpasswd file. I also have 'unix password sync = Yes'. However, I cannot get smbpasswd to change the passwords, either by user or root. Any suggestions? Carey
2003 Jun 11
2
smbclient - session setup failed: NT_STATUS_UNSUCCESSFUL
I have been using Samba for years and am at my wits end with this problem. I have 3.0.0beta1-1 installed (actually, it's the latest Debian unstable package). I just upgraded it - it was working fine yesterday. I have rejoined my machine to the domain (did this by creating the account using NT4's Server Manager to add it and then net rpc join CCSU -U dnewcomb%password -W CCSU (The
2005 May 07
3
converting NA/non-NA's to a binary variable
Dear R colleagues, I am trying to create a new column in a data frame, which converts values and NA's from another column into binary format. Essentially I need the NA's to become 1 and the rest to be 0. The code I wrote is returning the following error message: Error in if (mort[i, 4] != NA) mort[i, 8] <- 0 else if (mort[i, 4] == : missing value where TRUE/FALSE needed
2017 Sep 25
1
Subset
Always via logical expressions. In this case you can use the logical expression myDF$b != "0" to give you a vector of TRUE/FALSE B. > On Sep 25, 2017, at 8:00 AM, Shane Carey <careyshan at gmail.com> wrote: > > This is super, really helpfull. Sorry, one final question, lets say I wanted to remove 0's rather than NAs , what would it be? > > Thanks >
2006 Jun 08
2
hangup lag causing the answering of already answered calls
I have a TDM-400P with one FXO module. On an incoming call, I have set Asterisk to dial my phone (exten => s,1,Dial(IAX2/carey)), which is basically the only thing in my dialplan. When the call is answered by the PSTN phone first, or when the ringing call is hung up, Asterisk keeps ringing for 5+ seconds, which causes trouble (the answering of already answered calls). I noticed in the
2017 Sep 25
0
Subset
This is super, really helpfull. Sorry, one final question, lets say I wanted to remove 0's rather than NAs , what would it be? Thanks On Mon, Sep 25, 2017 at 12:41 PM, Boris Steipe <boris.steipe at utoronto.ca> wrote: > myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"), > b = c("<0.1", 1, 0.3, 5, "Nil"), >
2017 Sep 25
2
Subset
myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"), b = c("<0.1", 1, 0.3, 5, "Nil"), stringsAsFactors = FALSE) # you can subset the b-column in several ways myDF[ , 2] myDF[ , "b"] myDF$b # using the column, you make a logical vector ! is.na(as.numeric(myDF$b)) # This can be used to select the
2006 Jun 23
3
Interpreting as.factor
When I run a linear regression and include a variable in the regression with as.factor i.e. lm(y ~x +as.factor(x1) and i read the output as as.factor(x1)1.... as.factor(x1)2... etc. how do i interpret the estimate for each level? Is this simply to be regarded as a shift in the equation predicted by the intercept and independent variable x? jdr -- Justin Rapp 409 S. 22nd St. Apt. 1
2006 Jul 17
3
Correlation Mapping
On the cover of Zivot and Wang's Modeling Financial Time Series with S Plus, there is a correlation plot that seems to indicate the strength of correlation with color-coded squares, so that more highly correlated stocks appear darker red. If anybody out there is familiar with the book or understands what I am talking about, I am curious as to whether or not there is a similar function in R
2017 Sep 25
0
Subset
Hi, Lets say this was a dataframe where I had two columns a <- c("<0.1", NA, 0.3, 5, "Nil") b <- c("<0.1", 1, 0.3, 5, "Nil") And I just want to remove the rows from the dataframe where there were NAs in the b column, what is the syntax for doing that? Thanks in advance On Fri, Sep 22, 2017 at 5:04 PM, Shane Carey <careyshan at
2006 Jul 08
2
Adding Lines to Plot
This seems like a question that I should be able to answer on my own but after looking at the documentation I cannot seem to find the correct method. How do I add lines to a bar plot that extend from the vertical axis? For example, my vertical axis is numbered in increments of 10 and I would like these to go across the whole graph. Also, is there a way to have R label the value of each bar so
2017 Sep 22
3
Subset
Super, Thanks On Fri, Sep 22, 2017 at 4:57 PM, Boris Steipe <boris.steipe at utoronto.ca> wrote: > > a <- c("<0.1", NA, 0.3, 5, "Nil") > > a > [1] "<0.1" NA "0.3" "5" "Nil" > > > b <- as.numeric(a) > Warning message: > NAs introduced by coercion > > b > [1] NA NA 0.3
2006 Jul 09
1
KS Test Warning Message
All, Happy World Cup and Wimbledon. This morning finds me with the first of my many daily questions. I am running a ks.test on residuals obtained from a regression model. I use this code: > ks.test(Year5.lm$residuals,pnorm) and obtain this output One-sample Kolmogorov-Smirnov test data: Year5.lm$residuals D = 0.7196, p-value < 2.2e-16 alternative hypothesis: two.sided Warning