similar to: policies and authentication

Displaying 20 results from an estimated 1000 matches similar to: "policies and authentication"

2002 Oct 07
0
smbclient: protocol negotiation failed
When trying to connect to a samba server using smbclient on the local machine (or any other unix machine with smbclient), I get a "protocol negotiation failed" error. When I try to connect to the same server using a windows client it works just fine... Regardless of whether the client is on the same server or some other machine I get the following error message: [2002/10/07
2002 Nov 14
0
Word97 SR2 error while working on a doc stored on a Samba PDC share
Hi, I support around 15 Windows 2000 Clients who log into and have home directories on a Samba PDC running under RedHat 7.3. The version of samba I am using is 2.5.5. All the clients use Word97 SR2 and they all get the following error while working on documents stored on their home directories on the PDC: Word failed reading from this file (filename.doc). Please restore the network
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.
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"), >
1999 May 05
0
? lmhosts ?
STEP 6. Try listing the shares available on your server k6:/usr/sbin# smbclient -L k6 Added interface ip=192.168.1.1 bcast=192.168.1.255 nmask=255.255.255.0 startlmhosts: Can't open lmhosts file /etc/lmhosts. Error was No such file or di rectory Server time is Wed May 5 18:35:46 1999 Timezone is UTC-4.0 Session setup failed for username= myname=K6 destname=K6 ERRSRV - ERRbadpw (Ba d
2002 Nov 17
2
2nd POSTING: Samba PDC shares causing errors in MS Word 97 SR2
Hi, I support around 15 Windows 2000 Clients who log into and have home directories on a Samba PDC running under RedHat 7.3. The version of samba I am using is 2.5.5. All the clients use Word97 SR2 and they all get the following error while working on documents stored on their home directories on the PDC: Word failed reading from this file (filename.doc). Please restore the network
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
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>
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
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
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
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
2002 Jan 02
0
comparative rendering of modeling outputs
This note is to r-devel rather than r-announce because it notes an experimental package that addresses issues that intersect with broader developmental issues in R. I have posted the package cremo = Comparative REndering of Modeling Outputs for retrival at http://www.biostat.harvard.edu/~carey/cremo.html This package addresses the problem of assembling and rendering results of multiple
2017 Sep 22
0
Subset
> 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 5.0 NA > b[! is.na(b)] [1] 0.3 5.0 B. > On Sep 22, 2017, at 11:48 AM, Shane Carey <careyshan at gmail.com> wrote: > > Hi,
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
2006 Apr 16
0
What is Multi-layered-Access control
Many PBX's based on the Asterisk code refer to this in their feature list. Its taken off of the Asterisk.org site. Where is this used in Asterisk? Is it in the extensions.conf, is it used when logging into the console, where? How is it used? Is this referring top contexts in the dial plan? Message: 1 >Date: Thu, 13 Apr 2006 23:30:24 -0400 >From: "Rusty Dekema"
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