similar to: SAMBA digest 2044

Displaying 20 results from an estimated 2000 matches similar to: "SAMBA digest 2044"

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 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 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
2002 May 23
1
Netlogon from win9x using Kixtart to Samba server
Hi, I would want Samba shares to be automatically mounted as logicals drives on win9x machines. For this i try to use KIXTART (http://www.kixtart.org), a logon script processor for Windows. The advantage is that a unique login script may be used for all the users. The shares need to be mounted accordingly to the unix groups the user belongs to. Fo example, if a user belongs to the IT and TOTO
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
2006 Oct 12
0
Problem: samba refuse my user with error message : NT_STATUS_NO_ SUCH_USER
Hi all, I'm trying to make samba authenticate to my Active Directory Domain. I already configured and tested Kerberos5 and joined my machine to my domain with no problems, getent passwd and group give me the correct output also wbinfo give a good output too, and I can logon using my domain user to SSH and to my server console, so I assume my Kerberos config is correct. Also I
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"), >
2003 May 20
0
intermittent failure of ability to connect to samba share from win (NT/2k) client
First, my installation is samba 2.2.8 running as a daemon (not inetd) on Solaris 8 configured to use a WINS server and provide authentication via a PDC (same host as WINS server). I do have an lmhosts file in the samba /lib directory with the PDC/WINS server address in it. My globals section; [global] workgroup = WORKGROUP netbios name = SAMBASERVER security =
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
2003 May 23
0
intermittent failure of ability to connect to samba share from win (NT/2k) client]]
I am not sure if your problem is similar to what we have just experienced. we are using samba 2.2.3a-12.3 on debian with winxp sp1 clients we are using roaming profiles first logon after reboot fails sortof Windows cannot find a server copy of roaming profile will logon with local profile funny thing we never saw any activity in hostname.log (seperate smb.log for each machine) smbstatus showed
2016 Oct 07
0
The security id structure is invalid
On 10/7/16 3:30 PM, Rowland Penny via samba wrote: > idmap.ldb is very easy to repair, just open it in ldbedit, find the sid > and delete the entire object, close and save. > > If the user/group does exist in sam.ldb, it will be recreated in > idmap.ldb, but with a different ID number. > Ok, I fixed the issue with the SID ending in 1111, but this one remains (and 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
2007 Jun 14
1
Re: Intermittent "internal error: signal 11" with 3.0.24
Hi all Follow up to this post, as it didn't seem to go through the first time. We have a common problem occurring with our Samba setups. We run 3 (identical) processing environments that each contain a Samba host sharing approx .5TB of data to 6 Wintel machines. Normally these hosts operate fine, though we intermittently experience a Samba panic (intermittent = every 2-3 days) as per below.