Displaying 4 results from an estimated 4 matches for "prerequiste".
Did you mean:
prerequisite
2010 Oct 12
1
switching shorewall 4.0.6 -> 4.4.13.3, opensuse -> ubuntu
...dedicated PC (Intel), downloaded
shorewall-4.4.13.3.tar.bz2 and had it installed via
tar -jxf and then ./install.sh from the extracted shorewall-4.4.13.3
subdirectory
Ubuntu10.04 comes standard with perl 5.10.1 ($ perl -v --> Perl, v5.10.1)
Reading the Shorewall-4.html file, told me that also Prerequisted for
shorewall 4.2/4.4 are the perl modules
Cwd, File::Basename, File::Temp, GetOpt::Long, Carp, FindBin, Scalar::Util
Are these included in the the tar.bz2 ??
I thought not, so I did
# perl -MCPAN -e shell
(this first did some setup, I accepted all the defaults)
cpan[1]> install Cwd
this inst...
2011 Sep 19
1
using R as SHELL in gnu make
...ntrigued by the possibility of using R as the SHELL in a (Gnu) makefile (instead of /bin/sh). (c.f. http://www.gnu.org/software/make/manual/make.html#Choosing-the-Shell)
Well, rather, I would like the makefile's SHELL to be a command which communicated with an R process.
The makefile targets/prerequistes would, as always, be OS files, which would be written/read using standard R file IO.
The makefile's "recipe"s would be written in R (instead of the usual shell).
The R process would be able to be initiated by `load`ing one or more R datasets, libraries or entire images.
The R proc...
2004 Jan 29
0
openldap-2.2.5 test fails
Hi everybody,
i'm new on this List as well in openldap. I'm trying to set up a testserver
with ldap and samba.
Is the first time i have installed openldap. So far everything went fine. I
have compiled and installed all the
prerequiste Software (cyrus-sasl-2.1.17, openssl-0.9.7c, autoconf-2.59,
BerkeleyDB-4.2).
Compiling, make depend and make did also run through. The problem is when i
start the test because the test fails with an error.
Tried to search for this error message but couldn't find anything which
could help me....
2003 Mar 02
0
[RFC][PATCH] Require S/KEY before other authentication methods.
...packet_start(SSH2_MSG_USERAUTH_FAILURE);
+ packet_put_cstring(methods);
+ packet_put_char(1); /* XXX partial success, used */
+ packet_send();
+ packet_write_wait();
+ xfree(methods);
}
}
@@ -272,6 +289,11 @@ authmethods_get(void)
char *list;
int i;
+ /* If challenge-response is a prerequiste, advertise
+ that only */
+ if (options.challenge_response_authentication_first)
+ return xstrdup("keyboard-interactive");
+
buffer_init(&b);
for (i = 0; authmethods[i] != NULL; i++) {
if (strcmp(authmethods[i]->name, "none") == 0)
@@ -294,6 +316,10 @@ static A...