Re: [freenet-support] services does not start: "No class given"

2002-08-10 Thread Thomas Formella

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Thomas Goebel wrote:
| Hello,
|
| i have intalled freenet on SuSE8.0 (SUN_Java_SDK_1.4.0.0) and it will
| not start.

| I have set:
|
| export J2EE_HOME=/usr/java/j2sdk1.4.0_01
| export JAVA_PATH=/usr/java/j2sdk1.4.0_01
| export JAVA_HOME=$JAVA_PATH
| export JAVAHOME=$JAVA_PATH
|
| PATH=$JAVA_PATH/bin:$HOME/bin:$J2EE_HOME/bin:$PATH
| BASH_ENV=$HOME/.bashrc
| export PATH BASH_ENV
|
Why so complicated ?

I've only changed the symbolic link '/usr/lib/java' to the new jdk (on
my system /usr/lib/jdk1.3) and if I start freenet with the
'start-freenet.sh' start-script, it works (more or less ;-)

BTW.: SuSE 7.3, IBM J2RE 1.3.0

Regards,
Thomas

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: Using GnuPG with Beonex - http://enigmail.mozdev.org

iD8DBQE9VXzStmpPJKuLS2URAmU2AKCAnJrJtJ08QYvDmKhOK11JEmssvwCg8s6F
WOz3gEeTDhAaZ7DZKH3MDvI=
=QqRB
-END PGP SIGNATURE-


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] FROST ! PLEASE , EXACTLY WHAT DO I DOWNLOAD.

2002-07-21 Thread Thomas Formella



fredunsworth wrote:
> 
> Sorry to ask again , but can someone please tell me exactly what I 
> download from the FROST site ? and if possible how to install and how to 
> search .
> I have downloaded some of the bits of Frost but dont know what to do 
> when in search , the only thing I have seen happen on Frost is in the 
> News part where there was some messages .

Download the Frost ducumentation: 
http://jtcfrost.sourceforge.net/files/vagabund.pdf


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] freenet + kaffe

2002-07-15 Thread Thomas Formella

Have a look at the freenet wiki: 
http://freenetproject.org/wiki/index.php?FrontPage
Search for "Java Runtime Enviroment" or "FreeBSD Install"
Good luck !

Roman V. Isaev wrote:
>   I can't run freenet (freenet-20020713) with kaffe:
> 
> # java -version
> Kaffe Virtual Machine
> Copyright (c) 1996-2000
> Transvirtual Technologies, Inc.  All rights reserved
> Engine: Just-in-time v3   Version: 1.0.6   Java Version: 1.1
> 
>   It complains that GNU gmp not found: 
> 
> java.lang.ExceptionInInitializerError: [exception was kaffe.util.SupportDisabled
> : GNU gmp was not found by Kaffe configure script]
> 
>   BUT I have GNU gmp installed:
> 
> #ls -al /usr/lib/libgmp*   ~/freenet-20020713 12:16 Mon 15
> -rw-r--r--  1 root  wheel  121118 May 14  2000 /usr/lib/libgmp.a
> #ls -al /usr/include/gmp.h ~/freenet-20020713 12:16 Mon 15
> -rw-r--r--  1 root  bin  23378 May 14  2000 /usr/include/gmp.h
> 
>   What's wrong? Can freenet work with kaffe at all?
> 
>   Operating system is OpenBSD 2.7, so binary java distribution from sun is
> out of question.
> 



___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] help.

2002-06-13 Thread Thomas Formella

Marcos schrieb:
> Hello, i don´t undestand how to use freenet very well, and i can´t find 
> much documentation..
>  
> Can someone direct me to some texts or give some help??
>  

http://freenet.sourceforge.net/wiki/index.php


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



[freenet-support] seedNodes for 0.4

2001-09-22 Thread Thomas Formella

Sorry, the support archive are unreachable at the moment.
My Question: Where do I get seedNodes for testing 0.4 from ?
Thanks in advance,
Thomas

___
Support mailing list
[EMAIL PROTECTED]
http://lists.freenetproject.org/mailman/listinfo/support



Re: [freenet-support] I can't install Freenet

2001-09-10 Thread Thomas Formella

nestorac wrote:
> 
> I have a RedHat 7.1 O.S. with kaffe 1.0.6-3 and gmp 3.1.1-3 installed
> into a AMD K-7 processor with 258 Mb of Ram and 40 Gb of hard disk.
> My problem is that I type "./freenet_config ./freenetrc" in the
> installation directory as root ("/home/Nestor/Documentos/Freenet") and
> it gives me this error message:
> 
> [root@localhost Freenet]# ./freenet_config ./freenetrc
> 
> + java Freenet.scripts.Setup ./freenetrc
> java.lang.ExceptionInInitializerError: [exception was
> kaffe.util.SupportDisabled: GNU gmp was not found by Kaffe configure
> script]

The easiest way would be to use IBMs JDK
http://www-106.ibm.com/developerworks/java/jdk/linux130/?dwzone=java
If not possible, the following note may help you (taken from the README
file):

NOTES ON USING KAFFE


Freenet requires Kaffe to be built with the gmp (GNU multiple precision)
library.  If you build Kaffe from source, check that the 'configure'
script correctly detects your gmp library before issuing 'make'.  You
need to see both of these lines of output:

  checking for mpz_get_d in -lgmp... yes
  checking for gmp.h... yes

Kaffe-1.0.6's configure did not correctly detect libgmp3 and needed to
be
tweaked slightly (mpz_get_d -> __gmpz_get_d in several places).

The compiler used is 'kjc' which you can download from
http://www.dms.at/

There is also a bug in Kaffe-1.0.6's BigInteger library that causes
problems.
Patching Kaffe with the following patch will fix it:

--- kaffe/libraries/clib/math/BigInteger.c  Fri Jul 21 17:41:26 2000
+++ kaffe-1.0.6/libraries/clib/math/BigInteger.cSun Sep 24
15:09:19 2000
@@ -508,7 +508,7 @@
 
src = (mpz_srcptr)(*env)->GetObjectField(env, s, number);
 
-   return ((jint)mpz_get_si(src));
+   return ((jint)mpz_get_ui(src));
 }
 
 jint



___
Support mailing list
[EMAIL PROTECTED]
http://lists.freenetproject.org/mailman/listinfo/support



Re: [freenet-support] Problems with KeyIndexClient

2001-06-30 Thread Thomas Formella

Rob Cakebread wrote:
> 
> I'm waiting until XML-RPC is fixed in an upcoming release of Freenet.
> When that is working I'll have a command line client that doesn't rely
> on KeyIndexClient. It is written in Python. For now you can download
> keys with it, but the inserting part doesn't work because of a bug in
> Freenet. Look for the counter-part to Freenet Grab (fngrab.py) in
> the future if you are interested.
> 
This would be very helpfull for people with poor hardware like me.
Thanks a lot !
Thomas

___
Support mailing list
[EMAIL PROTECTED]
http://lists.freenetproject.org/mailman/listinfo/support



Re: [freenet-support] Problems with KeyIndexClient

2001-06-30 Thread Thomas Formella

Rob Cakebread wrote:
> 
> You might try upgrading to JDK 1.3 as I think HashSet has only been
> around since JDK 1.2. It also looks like you aren't trying to retrieve the
> same key you inserted, or am I missing something?
> 
> You are inserting the key:
> test300601.html
> 
> but trying to retrieve it with:
> 30062001test
> 
Sorry, it was a typing error. The key for inserting in retrieving was
the same.
Unfortunately, upgrading to 1.3 is impossible because of my hardware:
486, 32 MB RAM :-( 
Or may somebody succeed in upgrading on such hardware ?
Thomas

___
Support mailing list
[EMAIL PROTECTED]
http://lists.freenetproject.org/mailman/listinfo/support



[freenet-support] Problems with KeyIndexClient

2001-06-30 Thread Thomas Formella

When I try to retrieve a input key by:

java -classpath ... Freenet.client.KeyIndexClient -serverAddress
tcp/127.0.0.1:19335 -list 30062001test

(I inserted a test key before: java -classpath ...
Freenet.client.KeyIndexClient -serverAddress tcp/127.0.0.1:19335 -insert
30062001 -key freenet:[EMAIL PROTECTED] without problems) I got the
following message:

java.lang.NoClassDefFoundError: java/util/HashSet
at Freenet.client.rdf.impl.Store(Store.java)
at Freenet.client.rdf.impl.ModelMem.(ModelMem.java)
at Freenet.client.KeyIndexClient.getIndexAsModel(KeyIndexClient.java)
at Freenet.client.KeyIndexClient.main(KeyIndexClient.java)

I am using Linux 2.2.7 and JDK 1.1.7 

Does somebody know what I am doing wrong ?

Thanks,
Thomas


___
Support mailing list
[EMAIL PROTECTED]
http://lists.freenetproject.org/mailman/listinfo/support