search for: dspace

Displaying 20 results from an estimated 21 matches for "dspace".

Did you mean: space
2000 Jan 13
0
new login library alpha release
Hi, I've just posted an early alpha of a new login record library 'liblogin' to my website -> http://dspace.dial.pipex.com/andre.lucas/openssh.html . It's released as a patch, and it doesn't enable itself by default. Read the instructions first! This release is missing a lot of functionality, but is tested and working on Linux (RH6.0 anyway) and OpenBSD. Why you might want it on OpenBSD is cove...
2000 Jan 19
1
New liblogin release
...ike to know if it works on other systems or not. If you could send me the output of 'testlogin' (in the liblogin directory) when you try it, I would be very grateful. Can someone tell me which platforms have directory-mode lastlog? I need to add that support in. Thanks, -Andre [1] http://dspace.dial.pipex.com/andre.lucas/liblogin.html -- Andre Lucas <andre.lucas at dial.pipex.com> http://dspace.dial.pipex.com/andre.lucas/
2000 Jan 31
0
New liblogin 0.3alpha
FYI a new version of liblogin, 0.3alpha, is up on my website at http://dspace.dial.pipex.com/andre.lucas/liblogin.html This version fixes a few bugs and has implementations for the full API, including 'get last login time' support, even for systems without lastlog. New OpenSSH patches against 1.2.2 are also available, to enable the last login time features. Again,...
2004 Jan 06
0
dfree and linux quota
...rl use Quota; my ($dev,$uid,$isgrp); my ($bc,$bs,$bh,$bt,$ic,$is,$ih,$it); $dev="/dev/md3"; #$uid=`getent passwd $ARGV[0]|cut --delimiter=\: --fields=3-3`; $uid=`getent passwd sjohlae|cut --delimiter=\: --fields=3-3`; ($bc,$bs,$bh,$bt,$ic,$is,$ih,$it) = Quota::query($dev,$uid,$isgrp); my $dspace = $bs; my $dfree = $bs - $bc; my $bsize = 1024; print "$dspace $dfree $bsize\n";
2008 Jan 28
1
KM estimation for interval censoring?
Does anybody know if there is such a function to estimate the distribution for interval censored data? survfit doesn't work for this type of data as I tried various references. [[alternative HTML version deleted]]
2006 Sep 28
1
Plackett-Dale Model in R
Dear R users, Can someone inform me about a library/function in R that fits a Plackett-Dale model ? Thanks in advance Pryseley --------------------------------- [[alternative HTML version deleted]]
2000 Jan 07
0
login code in a separate library?
...e best way to get this right is to separate the admin function of recording a login from SSH's security functionality. I'm hoping to get this ready for inclusion in the next round of test releases (i.e. after 1.2.1). Ta, -Andre -- Andre Lucas <andre.lucas at dial.pipex.com> http://dspace.dial.pipex.com/andre.lucas/
2000 Jan 20
1
Patch to make openssh-1.2.1pre27 compile on a sparc solaris7 syst em
Hack: diff -c defines.h.orig defines.h *** defines.h.orig Thu Jan 20 18:07:40 2000 --- defines.h Thu Jan 20 18:08:05 2000 *************** *** 78,83 **** --- 78,84 ---- /* If sys/types.h does not supply u_intXX_t, supply them ourselves */ #ifndef HAVE_U_INTXX_T # ifdef HAVE_UINTXX_T + typedef uint8_t u_int8_t; typedef uint16_t u_int16_t; typedef uint32_t u_int32_t; typedef
2000 Jan 23
0
login.c: #ifdef wrong?
...sizeof(buf), "%s/%s", lastlog, logname); - fd = open(buf, O_RDONLY); + snprintf(lbuf, sizeof(buf), "%s/%s", lastlog, logname); + fd = open(lbuf, O_RDONLY); if (fd < 0) return 0; #endif /* LASTLOG_IS_DIR */ -- Andre Lucas <andre.lucas at dial.pipex.com> http://dspace.dial.pipex.com/andre.lucas/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20000123/a71291c7/attachment.bin
2000 Mar 02
1
wtmp bug in OpenSSH
Hello, I recently switched from SSH-1.2.27 to OpenSSH-1.2.2 and I found this bug: OpenSSH-1.2.2 (SSH-1.5-OpenSSH-1.2.2) does not update the wtmp file. Software: Linux/Unix port of OpenSSH version 1.2.2 OS: Linux Slackware 3.6 & 4.0 (x86) Problem: When logging in/out via sshd there is no update to the wtmp file -- Victor Meghesan
1998 Nov 24
0
Dial in accounts (1883)
...e same reg tweaks (TCP/IP stuff - MaxMTU, RWIN, etc) to all the clients. Then you *may* get the same behavior... For update info, links, etc, see: http://www.walbeehm.com/win95upd.html The OSR/2 FAQ is at: http://www.compuclinic.com/osr2faq/ and some TCP/IP DUN tips can be found at: http://dspace.dial.pipex.com/mreeves/tips.htm There's a nice TCP/IP reg-tweaking tool at: http://www.mjs.u-net.com/ Hope this helps, Steve **************************************************************** Stephen L. Arnold Senior Systems Engineer ENSCO Inc. e...
2000 Jan 08
2
Man pages on HPUX (and others?)
...f ;-) Neither is great, but as things stand right now HP users get garbage for manpages. It's not too much effort to provide them with pages preprocessed by a decent troff implementation, so I think we should do so. Opinions? -Andre -- Andre Lucas <andre.lucas at dial.pipex.com> http://dspace.dial.pipex.com/andre.lucas/
2007 Aug 18
1
Restricted VAR parameter estimation
I have a VAR model with five macro-economic variables, y[1], y[2], y[3], y[4], y[5]. They are related to each other in following manner. y[1,t] = alpha[1,0] + beta[1,1, 1]*y[1,t-1]+............+beta[1,1, 12]*y[1,t-12] + beta[1,2, 1]*y[2,t-1]+............+beta[1,2, 12]*y[2,t-12] + e[1,t] y[2,t] = alpha[2,0] + beta[2,2, 1]*y[2,t-1]+............+beta[2,2, 12]*y[2,t-12] + e[2,t] y[3,t] = alpha[3,0]
2000 Feb 04
1
problems compiling 1.2.2 on HP-UX 10.20 (gcc)
The problem seems to be that if you #include <utmpx.h> without suitable -DPOSIX_SOMETHING magic, you get no struct utmpx (all that stuff is wrapped w/ "#ifdef _INCLUDE_XOPEN_SOURCE_EXTENDED"). I'm not sure how you all are handling such portability issues. Thx, Will ================== I configured with # ./configure --prefix=/.=our-deploy/openssh-1.2.2 --without-shadow
2000 Jan 16
3
PAM config file installation
...d into PAM in any detail yet, and the above seems to work well. In any case, I think a working Linux PAM config file should be in the distribution. Perhaps someone who knows PAM well can provide one that's good on Linux-PAM? -Andre -- Andre Lucas <andre.lucas at dial.pipex.com> http://dspace.dial.pipex.com/andre.lucas/
1998 Aug 11
1
SAMBA digest 1775
...at disaster-waiting-to-happen (otherwise known as the windows registry). This is easily done, either by hand (if you know where & what to do) or with a number of utilities (a good free one is MTUSpeed): http://www.mjs.u-net.com/mtuspeed.htm and the settings, etc, are described at: http://dspace.dial.pipex.com/mreeves/tips.htm To make a long story even longer, you need to check whether the RWIN value is set in the registry, and then try adjusting (either up or down). RWIN=3072 appears to be the threshold value (according to the slow client stuff in the samba docs). In my case, the d...
2000 Jan 14
3
Failed password
I may have posted this before but got no reply. I run sshd -d and try to login from another machine and this is what happens: gene at bubba:/usr/include/asm> sudo sshd -d Password: debug: sshd version OpenSSH-1.2.1 Server listening on port 22. Generating 768 bit RSA key. RSA key generation complete. debug: Server will not fork when running in debugging mode. Connection from 216.131.4.131 port
1999 Dec 30
3
ANNOUNCE: openssh-1.2.1pre24
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre24 is being uploaded to: http://violet.ibs.com.au/openssh/files/ This release fixes the silly bugs (almost all autoconf related) that crept into yesterday's release. 19991231 - Fix password support on systems with a mixture of shadowed and non-shadowed passwords (e.g. NIS). Report and fix from HARUYAMA Seigo
1999 Dec 30
3
ANNOUNCE: openssh-1.2.1pre24
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 openssh-1.2.1pre24 is being uploaded to: http://violet.ibs.com.au/openssh/files/ This release fixes the silly bugs (almost all autoconf related) that crept into yesterday's release. 19991231 - Fix password support on systems with a mixture of shadowed and non-shadowed passwords (e.g. NIS). Report and fix from HARUYAMA Seigo
2015 Jan 12
4
[LLVMdev] Separating loop nests based on profile information?
> > > Looking at what LLVM does, the failing on the PRE side is that our PRE/GVN > models are not strong enough to handle this. I'm not sure at all why we > think anything else is necessary. > By this i mean we don't actually perform real PRE for loads. It's a known deficiency and one that does not require any duplicate heuristics to solve. Right now we perform some