similar to: Windows->LDAP->Samba

Displaying 20 results from an estimated 3000 matches similar to: "Windows->LDAP->Samba"

2006 Apr 05
1
Automatically create profile directory
I have my Samba PDC setup to use roaming profiles. If the user's profile directory exists (ex: /var/lib/samba/profiles/someuser) with the correct permissions and ownership then it works fine. However, I expect (incorrectly?) that Samba would auto-create the user's profile directory the first time the user logged in. Am I wrong or have I missed something? Thanks, -Mont
2006 Mar 23
1
Problem creating Samba Admin account
I am trying to create a Samba Admin account in FDS as per the final steps of http://directory.fedora.redhat.com/wiki/Howto:Samba I've asked about this on the FDS mailing list with no luck, I am hoping someone here will be able to help me. I've created a file with contents: Administrator:x:0:0:Samba Admin:/root:/bin/bash I then ran: /usr/share/openldap/migration/migrate_passwd.pl
2006 Mar 07
1
getlocalsid error
I am trying to integrate Samba version is 3.0.10 with Fedora Directory Server (1.0.1) on RHEL 4. I am attempting to follow: http://directory.fedora.redhat.com/wiki/Howto:Samba but I am getting an error with net getlocalsid. The output is: [2006/03/06 10:00:21, 0] lib/smbldap.c:smbldap_connect_system(850) failed to bind to server with dn= cn=Directory Manager Error: Can't contact LDAP
2006 Apr 06
12
net drive mapping not working in login script
I've set the path for each user in pdbedit and created a login script with drive mapping etc etc The network drives aren't being mapped when I login each user: smb.conf [global] printcap name = cups cups options = raw map to guest = Bad User # include = /etc/samba/dhcp.conf logon path = \\%L\profiles\.msprofile logon home = \\%L\%U\.9xprofile
2005 Oct 30
1
Broken up2date & install from CD ?
I've run into some problems I can't explain. I tried to install the mysql package from the 4.1 CD's and the installer just sat there telling me to insert the CD into the drive and click OK. I did that, and it just blinked once, then returned to the same thing.. hit the OK button, etc., etc., again and again. Wound up having to yum install the mysql package which went OK afik.
2014 Nov 06
1
what is the limit max. characters of group names?
Hello, I've running a samba server: --------- * Samba 3.6.3 * using LDAP for users an groups part. of config: ---------- workgroup = Samba security = user ldap admin dn = uid=samba_user,cn=admin,o=company,c=net passdb backend = ldapsam:ldap://ldap01.company.net ldap suffix = cn=users,o=company,c=net ldap user suffix = cn=accounts
2019 May 27
1
Samba4 - Evolution
Hi there, AFIK, win2008 will go EOL the 14th january of 2020 and i would like to ask you some questions about samba4 future. - As today we are able to join 2012 servers into a samba >4.6 domain, is it possible to join 2016 servers (i guess no, I never tried). If not will it be possible in samba's next releases (is it allready planned?) - I'm not an AD expert but in the same way,
2001 May 05
1
naming data.frames after their source file
Hello R-list, I have a batch of files that I want to turn into R data.frames for analysis. I'd like to use a for loop to read.table into data frame and name the data.frame after the source file. Here's the code I've tried: files_list.files(".") for(i in 1:length(list.files("."))-1){ parse(text=files[i])[[1]]_read.table(files[i],as.is=TRUE) } AFIK, the problem
2012 Aug 09
0
[LLVMdev] MI bundle liveness attributes
Hello everyone, Let me (re)present a question that might have previously been discussed, but did not result in any code (AFIK). How do we represent a _conditional_ assignment (def) in a bundle MI? More contents - currently we expose internal def/use/kill information to a bundle header - something like this: BUNDLE %PC<imp-def>, %R0<imp-def>, %P0<imp-use,kill>,
2020 Mar 11
1
SSL Question
AFIK, pem is simply 1. private key 2. (most specific) certificate 3. intermediate certificates, if any in this order. at least such a pem work for my icecast 2.4 w/o problems --u Gavin Stephens: > > > > The error message I was getting in the Icecast log was about no > > > compatible ssl port. I assumed this was something more complex than a > > > bad
2012 Aug 10
2
[LLVMdev] MI bundle liveness attributes
Hi Sergei. If an instruction conditionally writes R0 then I think it needs to implicitly use R0 for proper liveness Andy On Aug 9, 2012, at 9:48 AM, Sergei Larin <slarin at codeaurora.org> wrote: > > Hello everyone, > > Let me (re)present a question that might have previously been discussed, > but did not result in any code (AFIK). > > How do we represent a
2012 Aug 13
0
[LLVMdev] MI bundle liveness attributes
Andy, Yes, this is what Arnold has suggested also, and from this point it looks like it should work, but it will require parsing the bundle every time we care to know whether this is a real use or a conditional def. This might become awkward... but I guess I should provide a better use case to prove my point. Sergei -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum. >
2005 Nov 04
4
Sendmail
I know this is a "generic" question, but fully CentOS related. I attempted to set up i386 v.4.1 on my primary computer at the co-located site, and thought I had everything squared away till I discovered the machine was refusing mail connections. AFIK, I had no firewall or other objects blocking port 25. It has been my experience that with most arch's and versions where sendmail is
2006 Feb 01
5
Apache 2.2 don''t work with fastcgi
I''m trying to install mod_fastcgi for my rails app. I use Apache 2.2 and FastCGI 2.4.2 in windows xp. I have modified the httpd.conf adding LoadModule fastcgi_module modules/mod_fastcgi.dll (with mod_fastcgi.dll and mod_fastcgi.so in the modules directory). Whe i try to start Apache i have this error ---------------------------- apache: Syntax error on line 122 of
2016 Dec 08
2
How to join join Ubuntu desktop to AD
On Thu, 8 Dec 2016 12:27:20 -0500 lingpanda101 via samba <samba at lists.samba.org> wrote: > > I think I have a issue with ldconfig not finding winbind. I create > the sym links and verified they exist. What am I missing? Thanks. > > ldconfig -v | grep "libnss_" > /sbin/ldconfig.real: Path `/lib/x86_64-linux-gnu' given more than once >
2012 Aug 09
2
[LLVMdev] MI bundle liveness attributes
Hi Sergei, It seems to me that you can represent the semantics of a conditional instruction by adding a use of the conditionally defined register to the instruction. The value of the output register of an instruction is either the value of the instruction if it was conditionally executed or the value of the output register before the instruction. The Bundle would be: BUNDLE %PC<imp-def>,
2019 Aug 08
2
Trouble with ORCv2 Tutorial
Hi Praveen, Thanks for pointing that out :) That's my mistake. I might have been misidentifying the issue with the assert statement. With those fixes made function calls seem to all call the first function called in the REPL. For example: ready> def fib(n) if (n < 2) then n else fib(n - 1) + fib(n - 2); ... ready> fib(40); Evaluated to 102334155.000000 ready> fib(10); # This
2011 Apr 19
1
Linux RHEL 5.2 hangs for 1.5 hrs while fsck'ing the OCFS2 file system
Hi there, A month ago we ran into the fsck issue while rebooting one of the Oracle RAC nodes running on Linux RHEL 5.2. It was hanging for 1.5 hours During the reboot, OS portion went fine, then it activated the data volumes in all data vg's with [OK] Then displayed message: Checking filesystems - and it took it 1.5 hrs, then it finished the reboot. Last weekend we rebooted the same box and
2002 Feb 05
2
passing parameters in optim()
Hi all, I am using optim() to get estimate for parameter 'a' which will minimize the output of lprob.catch(a) and I got an error message: > optim(2,lprob.catch(x, freq,1, 0.5,0.5, a,- 0.7, 1, -0.7,0.1, 1,0.2,2,1,data.sf.mont)) Error in catch2.fun(k, f1, f2, a, b, A, B, R, n0, av, index.n) : Object "a" not found Why wasn't the initial value of a=2 passed to
2005 Jul 12
6
PRI problem
currently we are able to use our USA sip phone to conenct into the E1 box, but still unable to dial out to chinese phone numbers. They said from their ISDN switch console, it shows D channel not connected to the voip server yet. here si the sip debug msg, we got a Message type: DISCONNECT (69) and unable to dial any numbers. Jul 12 12:56:26 WARNING[1523]: chan_zap.c:1931 pri_find_dchan: No