similar to: 6311010 pam_passwd_auth can''t deal with old SunOS aging

Displaying 20 results from an estimated 700 matches similar to: "6311010 pam_passwd_auth can''t deal with old SunOS aging"

2007 Feb 23
4
using "integrate" in a function definition
Dear list members, I'm quite new to R, and though I tried to find the answer to my probably very basic question through the available resources (website, mailing list archives, docs, google), I've not found it. If I try to use the "integrate" function from within my own functions, my functions seem to misbehave in some contexts. The following example is a bit silly, but
2004 Jan 26
0
Solaris 9 compile errors, samba 3.0.2rc1
I've tried compiling samba 3.0.2rc1, 'gcc -v' gives me - Reading specs from /usr/local/lib/gcc-lib/sparc-sun-solaris2.9/3.3.2/specs Configured with: ../configure --with-as=/usr/ccs/bin/as --with-ld=/usr/ccs/bin/ld --disable-nls Thread model: posix gcc version 3.3.2 Here are a few bits from my config.log that I probably need help with, tell me if you need the whole thing - In file
2020 Oct 29
0
dovecot quota-warning detection mail
Very good. See https://doc.dovecot.org/configuration_manual/authentication/passwd_file/ You can add the "user" field as an "extra field" In users.auth, just add in the end "user=bbbb-ccc at ddd.example.com" to match the respective entry in /etc/dovecot/users Good luck! On 10/29/20 2:02 PM, ?? ?? wrote: > OK. "passdb/userdb" Setting part > > $
2004 May 05
0
Compiling samba 3.0.3 --with-pam errors pam_modules.h
I've seen this mentioned in the past, but no solutions were suggested. When I attempt to configure --with-pam the following is produced on Solaris 8. configure:5625: checking security/pam_modules.h usability configure:5634: gcc -c -O -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 conftest.c >&5 In file included from configure:5662: /usr/include/security/pam_modules.h:17: error: parse error
2020 Oct 29
2
dovecot quota-warning detection mail
OK. "passdb/userdb" Setting part $ dovecot -n (Excerpt from change) ---------------------------------------------------------------------------- --------------------- passdb { args = scheme=CRYPT username_format=%u /etc/dovecot/users.auth driver = passwd-file } userdb { args = username_format=%u /etc/dovecot/users.auth driver = passwd-file } protocol lmtp { info_log_path =
2008 May 16
0
Some of AES_CBC_PAD team missed the last bus home
Author: Darren Moffat <darrenm at opensolaris.org> Repository: /hg/zfs-crypto/gate Latest revision: 6dded109490e79f82f24b9ba0b3465cb1e6a96e6 Total changesets: 1 Log message: Some of AES_CBC_PAD team missed the last bus home pam_zfs_key module not in this phase fs-local failure if ''zfs mount -a'' fails isn''t our call zoneadm/zfs.c 1866 libzfs_jni needs updated or
2004 Oct 08
0
Trouble compiling pam_winbind 3.0.8pre1 on Solaris 9
Hi All, I am having trouble compiling Samba 3.0.8pre1 with pam_winbind. I am using the following configure string. ./configure --prefix=/usr/local/samba --exec-prefix=/usr/local/samba --with-libiconv=/usr/local/lib --with-ldap=/opt/csw --with-krb5=/usr/local/krb5 --with-automount --with-pam --with-ldapsam --with-utmp --with-libsmbclient --with-winbind ... and I get the following output
2004 May 18
0
Compile errors samba 3.0.4 Solaris 2.8
I am getting a few compile error when trying to compile Samba samba-3.0.4. LDFLAGS=-L/usr/local/lib/gcc/sparc-sun-solaris2.8/3.4.0 LD_LIBRARY_PATH=/usr/local/lib:/usr/local/include:/usr/local/BerkeleyDB.4.2/lib i (I have tried gcc 3.3.2 and 3.4.0 also installed libnet-1.0.2, libpng-1.2.4, libtool-1.5, make-3.80, automake-1.5, autoconf-2.59, openldap-stable-20040421, krb5-1.3.3, db-4.2.52)
2013 Feb 20
0
Simultaneously adding rows and columns by '[<-.data.frame' may fail
I saw the following in R help page "Extract.data.frame". The replacement methods can be used to add whole column(s) by specifying non-existent column(s), in which case the column(s) are added at the right-hand edge of the data frame and numerical indices must be contiguous to existing indices. On the other hand, rows can be added at any row after the current
2004 May 20
0
Compile errors 3.0.4 solaris 8
I had sent this email earlier and received no responses. Hopefully I am not being repetitive. This is the first time I have used the list. I will send it again. Since the message was sent I removed all the software I have installed and re-installed it to no avail. I don't know if the compile problems are the root cause or its just the Windows folks (within my org) are not playing nice,
2003 Sep 09
1
configure / compile problems samba-3.0.0rc3 on Solaris 8
Hello, I'm running a Sun Fire V880 with Solaris 8 and iplanet directory server 4.16sp1. I'm using gcc 3.2.2. When I run the configure, there are several warnings ans when I try to compile samba-3.0.0rc3 I get an error. Now here the warnings from configure --with-acl-support: checking net/if.h usability... no checking net/if.h presence... yes configure: WARNING: net/if.h: present but
2007 Mar 08
1
Searching and deleting elements of list
Hi, I have a problem. Please, look at example and try to help me!! > A<-c("aaa","bbb","ccc","ddd","eee") > B<-c("vvv","ooo","aaa","eee","zzz","bbb") > C<-c("sss","jjj","ppp","ddd") > D<-c("bbb","ccc")
2007 Mar 08
1
R: Searching and deleting elements of list
you could try mapply mydata2<-mapply("[", mydata, lapply(mydata, function(x) !x %in% A)) mydata2[[1]]<-A #to replace the obviously deleted elements of "A" mydata2 mydata2[[1]] mydata2[[2]] mydata2[[3]] mydata2[[4]] Stefano -----Messaggio originale----- Da: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch]Per conto di jastar
2009 Sep 30
4
How do I do simple string concatenation in R?
Dear R gurus How do I do simple string concatenation in R? For example: A = "klm" B = "jjj" How can I assign a value to C such that C == "klmjjj" is True? Thank you Arie [[alternative HTML version deleted]]
2004 Dec 13
0
samba4 configure error
I am trying to compile samba 4 with solaris 10 on a x86 machine. I get the "checking configure summary... configure: error: summary failure. Aborting config" failure. I am using gcc 3.4.3 Here is how it goes: cowabunga: /export/home/test/samba4/source$ ./autogen.sh ./autogen.sh: running script/mkversion.sh ./script/mkversion.sh: svn: not found ./script/mkversion.sh: svn: not found
2003 Oct 22
1
more solaris/samba 3 build problems
Samba team.. I spent an hour trying to post to the samaba news group at gmane.org. my browser seems retarded, and I need to do work. I also spent about 20 minutes trying to figure out the bugzilla deal, but its beyond me, plus i am getting very frustraited trying to send this damm bug report. so.. here.. here is the bug report. please post it, whatever. Hi all, I am attempting to
2003 Feb 20
0
RE: pam_mount ( was RE: Help with Winbind )
Well, I've started to look at pam_mount and it seems it doesn't compile under RH8.0 because it's missing pam_modules.h. I've located that in the source for pam. It's found in pam-0.75-46.8.0.src.rpm. The error I get is during the configure part: checking for security/pam_modules.h... no configure: error: You are missing security/pam_modules.h I'm not so good with
2004 Jun 29
0
gambling problem
Hi all i have an interesting project that i have been working on. i intended to set this as a first year programming problem but then changed my mind since i thought that it might be too difficult for them to program. the problem is as follows: You have been approached by a local casino in order to investigate the performance of one of their slot machines. The slot machine
1999 May 27
2
Can't connect to samba from foreign network --- 'Gethostbyaddr failed' error in log.smb
I have a samba server at ip address aaa.bbb.ccc.ddd I can connect to it from clients on subnets aaa.bbb.eee. and aaa.bbb.fff. I can't connect to it from clients on ggg.hhh. smb.conf has hosts deny = all hosts allow = localhost, aaa.bbb., ggg.hhh. The client can successfully 'ping mysambaserver' (resolves to aaa.bbb.ccc.ddd). Doing 'net view \\mysambaserver' fails with
2001 Mar 23
1
openssh 2.3.0p1-5 loses stdout
Hello all In a recent spate of paranoia we set our server (SuSE Linux 7.0, kernel 2.2.16) to use SSH version 2 and not SSH1. With openssh 2.3.0p1-5 running as client and server, we find that stdout output is occasionally dropped: ssh server echo "JJJ" usually emits JJJ, but sometimes returns nothing -- although the command is apparently performed. In the happy case the server logs