search for: schippers

Displaying 20 results from an estimated 26 matches for "schippers".

Did you mean: schipper
2015 Jan 05
2
backup using the packages of Sernet
dear, I made the installation of Samba4 in centos6, now I need to back up the structure, tried using the script that samba.org offers more he is giving this error. See the error through the bash -x bash -x samba_backup.sh + FROMWHERE = / var / lib / samba + WHERE = / root / backups + '[' N '' ']' + '[' -n '' -a -d '' ']' + '[' -n
2011 Sep 16
1
package snow/parallel doesnt make any clusters
I am running R.And I want to make parallel computations. When using the snow package under R-2.13.1patched or the parallel package under R 2.14.0dev, R isn't able to create a cluster. When typing: cl <- makeCluster(4) R doesn't respond. It doesn't crash either. specs: OS: 32 bit, Windows XP Prof, SP3. Processor: Intel Core i3 cpu, quad core. My colleague works on exactly the
2015 Jan 05
0
backup using the packages of Sernet
On 05/01/15 12:04, Gabriel Franca wrote: > dear, > > I made the installation of Samba4 in centos6, now I need to back up the structure, tried using the script that samba.org offers more he is giving this error. > > See the error through the bash -x > bash -x samba_backup.sh > + FROMWHERE = / var / lib / samba > + WHERE = / root / backups > + '[' N ''
2009 Mar 04
14
[Bug 1565] New: ssh-keyscan doesn't like comment-lines
https://bugzilla.mindrot.org/show_bug.cgi?id=1565 Summary: ssh-keyscan doesn't like comment-lines Product: Portable OpenSSH Version: 5.1p1 Platform: All OS/Version: Linux Status: NEW Keywords: low-hanging-fruit Severity: minor Priority: P2 Component: Miscellaneous AssignedTo:
2001 Oct 08
3
hd sometimes 'hangs' a few seconds
...e hd LED is on), before continuing normally... This happens for example (not always though) when I untar an archive and try to ls in the newly created directory... Is there an explanation for this? And if so, what's the best solution? (I'm running RH 7.1.94 (roswell)) Sincerely Hans Schippers
2009 Apr 29
1
meta regression in R using lme function
Dear all, We are trying to do a meta regression in R using the lme function. The reason for doing this with lme function is that we have covariates and studies within references. In S-Plus this is possible by using the following command: lme(outcome ~ covars, random = ~1 | reference/study, weights = varFixed(~var.outcome), data = mydata, control = lmeControl(sigma = 1)) This means that the
2010 Feb 01
1
"phishing" (was: [patch] Automatically add keys to agent)
[ Sorry, I did not see the renamed thread until I'd already replied on the old one. Calling this a phishing attack is exactly right. ] On 2010-01-30, Joachim Schipper wrote: > If I understand you correctly, you argue that connecting to malicious > hosts is currently secure, and will remain secure, but that it will > become easier to convince people to send the passphrase for
2010 Jan 28
3
Repost: [patch] Automatically add keys to agent
On Mon, Jan 18, 2010 Joachim Schipper wrote: > What this patch does can be described as follows: > > Without: > you at local$ ssh somehost > Enter passphrase for RSA key 'foo': > you at somehost$ exit > $ ssh otherhost > Enter passphrase for RSA key 'foo': > you at otherhost$ > > With: > you at local$ ssh somehost > Enter passphrase for RSA
2009 Feb 02
0
emperical bayes estimates and standard error lme4
Dear all, I am trying to get the emperical bayes estimates together with their standard errors out of lme4. Up to now I have used MLwiN to get these estimates. I have fitted the following - very simple - model, just to find out how this works. test<-lmer(y~(1|subject),data,REML=F) ranef(test,postVar=T) str(ranef(test,postVar=T) If I use the formulation of the emperical bayes estimates and
2010 Jan 12
1
[patch] Make keys work again
This patch makes keys work again. This bug was introduced in r1.78: http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/ssh/authfile.c.diff?r1=1.77;r2=1.78. Joachim Index: authfile.c =================================================================== RCS file: /usr/obsd-repos/src/usr.bin/ssh/authfile.c,v retrieving revision 1.78 diff -u -N -p authfile.c --- authfile.c 11 Jan 2010 04:46:45 -0000
2010 Jan 19
1
[Bug 1699] New: [patch] Enhance SSH to automatically add keys to ssh-agent
https://bugzilla.mindrot.org/show_bug.cgi?id=1699 Summary: [patch] Enhance SSH to automatically add keys to ssh-agent Product: Portable OpenSSH Version: 5.3p1 Platform: amd64 URL: http://article.gmane.org/gmane.network.openssh.devel/1 6422 OS/Version: OpenBSD Status: NEW
2011 Mar 14
2
Problemes with ControlPersist
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Hello, There seems to be just a bit to do with the latest openssh (5.8p1) and ControlPersist. I encountered two problems: 1. When I use ControlPersist in combination with ProxyCommand to reach a other host over that proxy I get the following message: Bad packet length 1397966893. Disconnecting: Paket corrupt When I fist ssh to
2015 Nov 18
3
AddKeysToAgent break local forwarding (and possibly more)
Hello everybody, current git breaks local forwarding (and possibly more). Looks like the option in ignored completely. I bisected the issue and found this commit to be the culprit: commit f361df474c49a097bfcf16d1b7b5c36fcd844b4b Author: jcs at openbsd.org <jcs at openbsd.org> Date: Sun Nov 15 22:26:49 2015 +0000 upstream commit Add an AddKeysToAgent client option which can
2006 Apr 22
1
[Patch] Unix Domain Socket Forwarding
http://25thandclement.com/~william/openssh-4.3p2-streamlocal-20060421.patch The above URL is a complete patch to OpenSSH 4.3p2 to implement unix domain socket forwarding (this supercedes a canceled message I sent last night w/ an inline attachment). Basically, for forward and reverse forwardings anywhere you previously put a port number you can now put a path. The socket path should go between
2010 Mar 06
1
ssh-keyscan bug (not really exploitable)
ssh-keyscan may, under very specific circumstances, be vulnerable to something akin to a buffer overflow. It's probably impossible to exploit, though, if only because ssh-keyscan is not usually run on very large untrusted input files. ssh-keyscan uses an fgets() wrapper that uses an unsigned int to keep track of the length of a buffer holding the current line. On machines with sufficient
2010 Jan 12
2
[patch] Automatically add keys to agent
My keys are secured with a passphrase. That's good for security, but having to type the passphrase either at every login or at every invocation of ssh(1) is annoying. I know I could invoke ssh-add(1) just before invoking ssh(1), if I keep track of whether I invoked it already, or write some hacky scripts; but the rest of OpenSSH is wonderfully usable without any hacks. Hence, this patch.
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...oung Shim <jy0922.shim@samsung.com> Jordan Justen <jordan.l.justen@intel.com> Joren Van Onder <joren.vanonder@gmail.com> Jorge Boncompte [DTI2] <jorge@dti2.net> Jorgen Jonsson <jorgen.jonsson@stericsson.com> Jorgyano Vieira <jorgyano@gmail.com> Jorrit Schippers <jorrit@ncode.nl> Jose Alberto Reguero <jareguero@telefonica.net> Jose Miguel Goncalves <jose.goncalves@inov.pt> Josef Bacik <jbacik@fusionio.com> Josef Bacik <josef@redhat.com> Josef Bacik <josef@toxicpanda.com> Josenivaldo Benito Jr. <jrbenito@be...
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...oung Shim <jy0922.shim@samsung.com> Jordan Justen <jordan.l.justen@intel.com> Joren Van Onder <joren.vanonder@gmail.com> Jorge Boncompte [DTI2] <jorge@dti2.net> Jorgen Jonsson <jorgen.jonsson@stericsson.com> Jorgyano Vieira <jorgyano@gmail.com> Jorrit Schippers <jorrit@ncode.nl> Jose Alberto Reguero <jareguero@telefonica.net> Jose Miguel Goncalves <jose.goncalves@inov.pt> Josef Bacik <jbacik@fusionio.com> Josef Bacik <josef@redhat.com> Josef Bacik <josef@toxicpanda.com> Josenivaldo Benito Jr. <jrbenito@be...
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...oung Shim <jy0922.shim@samsung.com> Jordan Justen <jordan.l.justen@intel.com> Joren Van Onder <joren.vanonder@gmail.com> Jorge Boncompte [DTI2] <jorge@dti2.net> Jorgen Jonsson <jorgen.jonsson@stericsson.com> Jorgyano Vieira <jorgyano@gmail.com> Jorrit Schippers <jorrit@ncode.nl> Jose Alberto Reguero <jareguero@telefonica.net> Jose Miguel Goncalves <jose.goncalves@inov.pt> Josef Bacik <jbacik@fusionio.com> Josef Bacik <josef@redhat.com> Josef Bacik <josef@toxicpanda.com> Josenivaldo Benito Jr. <jrbenito@be...
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...oung Shim <jy0922.shim@samsung.com> Jordan Justen <jordan.l.justen@intel.com> Joren Van Onder <joren.vanonder@gmail.com> Jorge Boncompte [DTI2] <jorge@dti2.net> Jorgen Jonsson <jorgen.jonsson@stericsson.com> Jorgyano Vieira <jorgyano@gmail.com> Jorrit Schippers <jorrit@ncode.nl> Jose Alberto Reguero <jareguero@telefonica.net> Jose Miguel Goncalves <jose.goncalves@inov.pt> Josef Ahmad <josef.ahmad@intel.com> Josef Bacik <jbacik@fusionio.com> Josef Bacik <josef@redhat.com> Josef Bacik <josef@toxicpanda.com&...