similar to: Alternative to smbldap-tools

Displaying 20 results from an estimated 1000 matches similar to: "Alternative to smbldap-tools"

2005 Feb 08
3
Ldapscripts v1.0 !
Hi all, I've been working on shell scripts that allow to manage ldap accounts (users, groups, machines). They are similar to the smbldap-tools but do not need PERL to work (and so on...) and are *very* simple to configure - they may be a good alternative. The only tools you need are standard ldap client commands (ldapadd, ldapdelete, ldapmodify, ldapsearch). The scripts can be used as
2007 Feb 08
2
Howto setup printing with Windows XP Clients, Cups and samba..
Hi there, slowly but sure I'm getting absolutely insane with the printer setup on a Samba PDC. I got Cups to work. It works like a charm if someone installs a printer via the cups interface. It also prints in a good quality. On Samba side I even have those "Printers and fax devices" in the visible shares. And if i install CUPS6 Drivers manual on the target system i can even print on
2006 Jan 07
0
Ldapscripts v1.4 is out
Hello all, And now a small advert ;-) I'm pleased to announce the v 1.4 of the ldapscripts. The ldapscripts are shell scripts provided under the terms of the GPL license. They allow to manage POSIX accounts (users, groups, machines) in an LDAP directory. They can be used on GNU/Linux and FreeBSD (and any other Unix-like ?). They are similar to the smbldap-tools but are written in sh, not
2005 Feb 22
0
New version of the ldapscripts
Hi all, I've had good feedbacks of people using ldapscripts v1.0... Here is a new 1.1 version, with the following improvements : - Ability to create home directories and set rights - Ability to generate randomized (or not) passwords while creating a user - Password list generation can be activated while doing a massive user import / creation - Added an _ldapinit command to initialize the
2004 Mar 15
2
Group Mapping Problems with Samba 3.0.2a & OpenLDAP 2.2.6
Hello all, I am attempting to setup a Samba 3.0.2a based PDC using OpenLDAP 2.2.6 for my user/group authentication backend. So far everything seems to be working properly, I can join the domain from a Win2k PC, login via an account created with smbldap-useradd.pl, map my home directory, run the proper login script, etc. However, with all of that working I'm still having difficulties getting
2004 Jan 27
1
Group mapping bugs + PATCH
Hi all ! I've been using group mapping for a few weeks and found some bugs... For three of them, I tried to develop a small patch. I don't know Samba code very well and this is my first patch, so there could be errors :-p I hope my investigations will be useful :) * Platform : Here is what I used : Debian 3.0r1, Samba 3.0.2rc1 - PDC, OpenLDAP 2.1.23 as backend smb.conf extract :
2005 May 17
2
net command replacements for smbldap-tools
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I sure would like to see a series of net commands that could replace smbldap-tools. Wouldn't this be more appropriate for administration? Jim C. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCiZquB4AhF6wVFMERAnsQAJ0XDMb3aeaSHFpVsP3s50ylIIuh6gCdHdX0
2006 Oct 12
2
Group Policies
Hi there, is it possible to install group policies on a samba pdc which are automatically loaded on connecting to this PDC with a windows client? I thought i could remember that i read something like that, but i was unable to find anything about this topic in the Samba Documentations. Thanks in advance Patrick
2009 Sep 23
2
scaled Schoenfeld residuals
hi sorry if this has been discussed before, but I'm wondering why the scaled Schoenfeld residuals do not follow the defining formula for obtaining them from the ordinary Schoenfeld residuals, but are instead offset by the estimated parameter values. e.g. library(survival) attach(ovarian) sv<-Surv(futime,fustat) f1<-coxph(sv~age+ecog.ps) f1
2017 Mar 16
1
LDAP locking problems - home related
Hi list, # dovecot --version 2.2.13 We use Dovecot LDA and I've discovered lots of messages stating that lock files cannot be written: Mar 16 12:02:03 mailhost dovecot: lda(someuser): Error: file_dotlock_open(/home/sg/someuser/.dovecot.lda-dupes) failed: No such file or directory That user's home directory is fetched from LDAP and does not exist locally on our 'mailhost'
2012 Feb 23
1
Schoenfeld residuals for a null model coxph
Hi, I have a coxph model like coxph(Surv(start, stop, censor) ~ x + y, mydata) I would like to calculate the Schoenfeld residuals for the null, i.e the same model where the beta hat vector (in practical terms, the coeff vector spat out by summary()) is constrained to be all 0s --all lese stays the same. I could calculate it by hand, but I was wondering if there is a way of doing it with
2009 Jun 15
2
Schoenfeld Residuals with tied data
Dear all, I am struggling with calculation of Schoenfeld residuals of my Cox Ph models. Based on the formula as attached, I calculated the Schoenfeld residuals for both non tied and tied data, respectively. And then I validated my results with R using the same data sets. However, I found that my results for non-tied data was ok but the results for tied data were different from R's. How
2003 Aug 04
1
Réf. : Re: R?f. : system users and smbpasswd users
Hi :) As I'd say in French "de rien !" (you're welcome :)) Yes, you can use PAM to redirect the system authentication calls to your LDAP directory, but in reality samba will continue to use two types of accounts : the "posixAccount"s (same as /etc/passwd) and the "sambaSamAccount"s. Everything will be stored in you LDAP directory, but Samba still needs two
2003 Jul 31
1
Réf. : groupmember list fails with 3.0.0b3 and LDAP
Hi, Same problem for me, any clue ? Gana?l. owen@isrl.uiuc.edu@lists.samba.org on 07/31/2003 01:42:21 AM Envoy? par : samba-bounces+ganael.laplanche=edf.fr@lists.samba.org Pour : samba@lists.samba.org cc : Objet : [Samba] groupmember list fails with 3.0.0b3 and LDAP Hi all, I've been working on a PDC with group mapping with Samba-3.0.0Beta3 with OpenLDAP-2.1.22. Things
2012 Aug 06
3
Force evaluation of a symbol when a function is created
I am porting a program in matlab to R, The problem is that Matlab has a feature where symbols that aren't arguments are evaluated immediately. That is: Y=3 F=@(x) x*Y Will yield a function such that F(2)=6. If later say. Y=4 then F(2) will still equal 6. R on the other hand has lazy evaluation. F<-function(x){x*Y} Will do the following Y=3 F(2)=6 Y=4 F(2)=8. Does anyone know of away to
2005 Jan 16
2
TDM400 lost after reboot
Hi My card is working, but when I reboot the machine, most of the times it is not working, I get "ztcfg: ZT_CHANCONFIG failed on channel 1: No such device or address (6)" To make it work again I have to shut down, remove the card, reboot so kudzu will remove the config. shut down again, put the card back in, reboot, now kudzu see it, I choose "Ignore" and then it's
2006 Sep 13
0
evtViewer - A PERL-based viewer for Ms event (*.evt) log files
Hi all, As Samba users, we often interact with Windows environments. I've developped a PERL script that may be useful to you : it is an .evt (Windows event "log" files) viewer. It is inspired from fccu-evtreader (www.d-fence.be) and displays the contents of an event file. It is available on my website (http://contribs.martymac.com/evtViewer/evtViewer-0.2.tgz) and released under the
2006 Mar 31
1
andersen plot vs score process or scaled Schoenfeld residuals to test for proporti0nal hazards
Dear all, I use the Andersen plot to check for proportional hazards assumption for a factor (say x) in the Cox regression model and obtained a straight line that pass through the origin. However, the formal test done by the R-function cox.zph, which is based on the plot of Schonefeld residuals against time, indicates that proportional hazards assumption is violated. Further, a plot of the score
2006 Apr 07
2
Why is transform="km" the default for cox.zph?
To enhance my understanding, and that of my students, I have a question about cox.zph in the survival package. If I have correctly gleaned the high-level point from the 1994 Biometrika paper of Grambsch and Therneau, it looks to me like cox.zph provides a mechanism to test for a simple trend in plots of a function of time, g(t) versus the scaled schoenfeld residuals and it also provides some
2009 Jan 12
1
Bug#511579: network-bridge script does not work if netdev is not in /e/n/interfaces
Package: xen-utils-common Version: 3.2.0-2 Severity: normal Hi, we have a setup with a system that has multiple ethernet interfaces. There is a interface eth2 which has an IP configured and is connected to the network and which is used to administrate that. Another iface is supposed to be used as netdev (eth0). This interface is unconfigured but connected to a network to which the DomUs are