similar to: Network domain logons?

Displaying 20 results from an estimated 5000 matches similar to: "Network domain logons?"

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 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
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 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 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
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
1998 May 29
2
Encrypted passwords
Is there a tool, either for Perl or C, that will add/change the NT and LM encrypted passwords in the smbpasswd file? I know about the smbpasswd command, but I can't use that function from a script. I tried #!/bin/perl system("smbpasswd \< $oldpassword\n$newpassword\n$newpassword\n"); and some other things, but I couldn't get it to work. TSD
1999 May 17
1
changing user passwords with smbpasswd
Hello, I still cannot change user passwords with my Samba 2.0.3 server: When I try to change a users password either through SWAT or when logged in, I get the following error message when trying to change the password: --- machine 127.0.0.1 rejected the session setup. Error was: ERRSRV - ERRbadpw (Bad password - name/password pair in a Tree Connect or Session Setup are invalid.). Failed to
1997 Sep 19
5
WINS server
Hi all. Ok, I'm sufficiently pissed off now. Hopefully someone can help. Since I have no NT4 servers on the network, I'd like to be domain master, and a wins server. So I've added the following to the global section: local master = yes os level = 33 domain master = yes preferred master = yes wins support = yes And now I receive the following message:
1997 Aug 08
12
Logon scripts
I am having difficulty getting my logon scripts to started when I logon. My clients are Windows95, server is RedHat Linux 4.2, Samba 1.9.17alpha5. This is my smb.conf file: ; ******************************************************************* ; * ; * Samba config file for ; * Quinn P. Coldiron ; * ; ******************************************************************* ;
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
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
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
2003 Mar 25
0
Can't reach Samba shares from Win2k
Can yoiu help m? [root@firewall /etc]# smbpasswd -j surson -r cleo -U Administrator Password: Joined domain SURSON. [root@firewall /etc]# [root@firewall /etc]# smbclient //firewall/PUBLICO -UAdministrator added interface ip=192.168.1.1 bcast=192.168.1.255 nmask=255.255.255.0 Got a positive name query response from 192.168.1.2 ( 192.168.1.1 ) Password: session setup failed:
1998 Feb 03
1
PAM Problems !
Hi, i have a minor Problen with Samba 1.9.16p11 under RedHat 4.2 and samba 1.9.18 under RedHat 5.0. Getting the shares from NT or w95 are ok but in the messages log file i got tons of these messages: Feb 2 06:49:54 bell PAM_pwdb[3520]: get passwd; pwdb: structure is no longer valid Feb 2 06:49:59 bell last message repeated 93 times Feb 2 06:49:59 bell PAM_pwdb[3520]: 1 authentication