[freenet-support] ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Conrad J. Sabatier

[EMAIL PROTECTED]/DFI//

I just completed my first successful insert of DFI today since returning to 
freenet just yesterday.  Please try using it so that it will begin to 
propagate again as quickly as possible.

Due to the fact that I'm just starting back with freenet, the index is still 
rather smallish, but we should be seeing it grow with each passing day as my 
node's routing improves and the spider successfully locates more and more 
sites.

Please try to bear with us during this early phasing back in of the site.
Thanks!

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: jcpuid and jbigi

2005-01-13 Thread Conrad J. Sabatier
In article [EMAIL PROTECTED],
Anders Bruun Olsen  support@freenetproject.org wrote:
Hi,

I have just installed Freenet on my Gentoo machine and have noticed that
after it running for a while the java processes start to use quite alot
of CPU. In /var/freenet/freenet.stderr.log I get these lines which I
think might be part of the reason why it is so slow:

ERROR: Resource name
[freenet/support/CPUInformation/libjcpuid-x86-linux.so] was not found
WARN: Native CPUID library jcpuid not loaded - will not be able to read
CPU information using CPUID
NOTICE: Resource name [net/i2p/util/libjbigi-linux-none.so] was not found
INFO: Native BigInteger library jbigi not loaded - using pure java

I can see that both jcpuid and NativeBigInteger is in the Contrib module
in CVS, and at least compiling libjcpuid-x86-linux.so isn't a problem,
but how do I get freenet to actually use that, and how do I get jbigi
compiled and get freenot to use that as well?

And will it actually help with my CPU usage/speed problem?

I am on an Athlon XP 2600+ with 512Mb RAM, so it should be sufficient I
would think.

Thanks!

-- 
Anders

See the hints/caveats below before attempting the following procedure.

1) cd Contrib/NativeBigInteger

2) sh build.sh

3) cd ../jcpuid

4) sh build.sh

3) cd ../../freenet

4) remove any existing freenet.jar/freenet-ext.jar under your freenet source 
   tree's build dir

5) ant (this will create new jars with the new libraries included)

6) copy the resulting jar files to wherever it is you run freenet from

Ta-da!  That's all, folks!

A few caveats/hints, however:

Some of the build scripts under Contrib may require some editing (they did 
for me when I was building the libs under FreeBSD).

You can save a *lot* of time building the integer libraries if you edit the 
build.sh script and change the following line to only build for the desired 
CPU (if you're running 64-bit Java on the AMD 64, use athlon64):

for x in none pentium pentiummmx pentium2 pentium3 pentium4 k6 k62 k63 athlon

Also, you may need to add some environment variable settings to the lines 
in the script that invoke libgmp's configure script, namely,
CPPFLAGS=-I/path/to/your/java/includes.  Until I did this, the build kept 
failing to find jni.h at a certain point.

For example, you'd want to change the line in the build.sh script from:

../../gmp-4.1.3/configure

to

CPPFLAGS=-I/path/to/your/java/includes ../../gmp-4.1.3/configure

If you need any more help, let us know.  Hope this helps.

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


Re: [freenet-support] Re: jcpuid and jbigi

2005-01-13 Thread Toad
We need the athlon64 binaries in the freenet-ext.jar. Are they long
mode?

On Wed, Jan 12, 2005 at 01:23:12AM +, Conrad J. Sabatier wrote:
 In article [EMAIL PROTECTED],
 Anders Bruun Olsen  support@freenetproject.org wrote:
 Hi,
 
 I have just installed Freenet on my Gentoo machine and have noticed that
 after it running for a while the java processes start to use quite alot
 of CPU. In /var/freenet/freenet.stderr.log I get these lines which I
 think might be part of the reason why it is so slow:
 
 ERROR: Resource name
 [freenet/support/CPUInformation/libjcpuid-x86-linux.so] was not found
 WARN: Native CPUID library jcpuid not loaded - will not be able to read
 CPU information using CPUID
 NOTICE: Resource name [net/i2p/util/libjbigi-linux-none.so] was not found
 INFO: Native BigInteger library jbigi not loaded - using pure java
 
 I can see that both jcpuid and NativeBigInteger is in the Contrib module
 in CVS, and at least compiling libjcpuid-x86-linux.so isn't a problem,
 but how do I get freenet to actually use that, and how do I get jbigi
 compiled and get freenot to use that as well?
 
 And will it actually help with my CPU usage/speed problem?
 
 I am on an Athlon XP 2600+ with 512Mb RAM, so it should be sufficient I
 would think.
 
 Thanks!
 
 -- 
 Anders
 
 See the hints/caveats below before attempting the following procedure.
 
 1) cd Contrib/NativeBigInteger
 
 2) sh build.sh
 
 3) cd ../jcpuid
 
 4) sh build.sh
 
 3) cd ../../freenet
 
 4) remove any existing freenet.jar/freenet-ext.jar under your freenet source 
tree's build dir
 
 5) ant (this will create new jars with the new libraries included)
 
 6) copy the resulting jar files to wherever it is you run freenet from
 
 Ta-da!  That's all, folks!
 
 A few caveats/hints, however:
 
 Some of the build scripts under Contrib may require some editing (they did 
 for me when I was building the libs under FreeBSD).
 
 You can save a *lot* of time building the integer libraries if you edit the 
 build.sh script and change the following line to only build for the desired 
 CPU (if you're running 64-bit Java on the AMD 64, use athlon64):
 
 for x in none pentium pentiummmx pentium2 pentium3 pentium4 k6 k62 k63 athlon
 
 Also, you may need to add some environment variable settings to the lines 
 in the script that invoke libgmp's configure script, namely,
 CPPFLAGS=-I/path/to/your/java/includes.  Until I did this, the build kept 
 failing to find jni.h at a certain point.
 
 For example, you'd want to change the line in the build.sh script from:
 
 ../../gmp-4.1.3/configure
 
 to
 
 CPPFLAGS=-I/path/to/your/java/includes ../../gmp-4.1.3/configure
 
 If you need any more help, let us know.  Hope this helps.
 
 -- 
 Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas
 
 ___
 Support mailing list
 Support@freenetproject.org
 http://news.gmane.org/gmane.network.freenet.support
 Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
 Or mailto:[EMAIL PROTECTED]

-- 
Matthew J Toseland - [EMAIL PROTECTED]
Freenet Project Official Codemonkey - http://freenetproject.org/
ICTHUS - Nothing is impossible. Our Boss says so.


signature.asc
Description: Digital signature
___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]

[freenet-support] Re: ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Alex R. Mosteo
Conrad J. Sabatier wrote:
[EMAIL PROTECTED]/DFI//
I just completed my first successful insert of DFI today since returning to 
freenet just yesterday.  Please try using it so that it will begin to 
propagate again as quickly as possible.

Due to the fact that I'm just starting back with freenet, the index is still 
rather smallish, but we should be seeing it grow with each passing day as my 
node's routing improves and the spider successfully locates more and more 
sites.

Please try to bear with us during this early phasing back in of the site.
Thanks!
The 5100 build is working quite well for me, and today I've tried a 
bunch of random sites in TFE and all of them have appeared in a very 
short time. It will be interesting to see how a crawler performs 
starting from scratch.

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Someone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Conrad J. Sabatier schrieb:
| [EMAIL PROTECTED]/DFI//
|
| I just completed my first successful insert of DFI today since returning to
| freenet just yesterday.  Please try using it so that it will begin to
| propagate again as quickly as possible.
|
| Due to the fact that I'm just starting back with freenet, the index is still
| rather smallish, but we should be seeing it grow with each passing day as my
| node's routing improves and the spider successfully locates more and more
| sites.
|
| Please try to bear with us during this early phasing back in of the site.
| Thanks!
|
It's not coming through, what HTL did you use to insert?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (MingW32)
iD8DBQFB5t3R5Sa8EyIJhugRAmE6AJ9urEn8OwZ/zf27x+r4Jy8xLGL1tgCfa+cy
ga6jEHgJ7ZbRk7dV5t2umlA=
=qL0G
-END PGP SIGNATURE-
___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: jcpuid and jbigi

2005-01-13 Thread Conrad J. Sabatier
In article [EMAIL PROTECTED],
Toad  support@freenetproject.org wrote:
-=-=-=-=-=-
-=-=-=-=-=-

We need the athlon64 binaries in the freenet-ext.jar. Are they long
mode?

I imagine they would be.  :-)

However, we still don't have native Java support for AMD 64 under FreeBSD. 
In fact, we're still waiting for the jdk-1.5 port for *any* architecture 
(rumored to be near completion), so I'm left with no choice at this time but 
to run the jdk-1.4.2 port on my Athlon (i386) box.

I could try building the libs under AMD 64, just for the hell of it, but 
they won't do anybody any good at this time, I'm afraid.

Incidentally, did you happen to see my request to have my CVS privs 
reinstated?  There *are* some real issues with some of the scripts under 
Contrib on non-Win/non-Linux platforms that I'd like to try and clear up for 
anyone who may try to build on some other platform(s).

I'm also *very* interested in getting involved in the major overhaul of the 
actual daemon code.

So, whaddya say, huh?  :-)

Incidentally, I re-subscribed to all the lists, but something's not working 
right.  I'm seeing messages here on gmane that I have yet to see in my 
mailer.  Is there a known problem with the lists at this time?

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Conrad J. Sabatier
In article [EMAIL PROTECTED],
Alex R. Mosteo support@freenetproject.org wrote:
Conrad J. Sabatier wrote:
 [EMAIL PROTECTED]/DFI//
 
 I just completed my first successful insert of DFI today since returning to 
 freenet just yesterday.  Please try using it so that it will begin to 
 propagate again as quickly as possible.
 
 Due to the fact that I'm just starting back with freenet, the index is still 
 rather smallish, but we should be seeing it grow with each passing day as my 
 node's routing improves and the spider successfully locates more and more 
 sites.
 
 Please try to bear with us during this early phasing back in of the site.
 Thanks!

The 5100 build is working quite well for me, and today I've tried a 
bunch of random sites in TFE and all of them have appeared in a very 
short time. It will be interesting to see how a crawler performs 
starting from scratch.

I'm running from the CVS repo, myself (HEAD).

The spider has already picked up quite a few sites, more than double when it 
started.  Not bad!

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


Re: [freenet-support] ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Todd Walton
On Wed, 12 Jan 2005 01:06:46 + (UTC), Conrad J. Sabatier
[EMAIL PROTECTED] wrote:
 
 [EMAIL PROTECTED]/DFI//

Since Fillament has decided to leave Freenet, and give up maintaining
YoYo, maybe YoYo ought to be replaced with DFI.  It wouldn't matter
until there's a new build, of course, but the change could be made
now.

-todd
___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Conrad J. Sabatier
In article [EMAIL PROTECTED],
Someone  support@freenetproject.org wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Conrad J. Sabatier schrieb:

| [EMAIL PROTECTED]/DFI//
|
| I just completed my first successful insert of DFI today since returning to
| freenet just yesterday.  Please try using it so that it will begin to
| propagate again as quickly as possible.
|
| Due to the fact that I'm just starting back with freenet, the index is still
| rather smallish, but we should be seeing it grow with each passing day as my
| node's routing improves and the spider successfully locates more and more
| sites.
|
| Please try to bear with us during this early phasing back in of the site.
| Thanks!
|

It's not coming through, what HTL did you use to insert?

Ack!  I already had one failed (automated, scheduled) insert, due to my 
falling asleep and the node going off the deep end for some reason.  :-)
So the site wasn't ready at the time of the DBR rollover, unfortunately.

It should be better now.  Got it inserted on time today (at HTL 15).

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas

___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Re: ANNOUNCE: DFI (Dolphin's Freenet Index) is now back online!

2005-01-13 Thread Someone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Conrad J. Sabatier schrieb:
| Ack!  I already had one failed (automated, scheduled) insert, due to my
| falling asleep and the node going off the deep end for some reason.  :-)
| So the site wasn't ready at the time of the DBR rollover, unfortunately.
|
| It should be better now.  Got it inserted on time today (at HTL 15).
Ok, I'll try again. But if you really want others to get the site fast you
should consider inserting at HTL 20, everything lower can be a pain in the
ass to get, especially with daily changing DBR sites.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (MingW32)
iD8DBQFB5zDe5Sa8EyIJhugRAsD2AJ97TlHZBy2PzaodyzMK8kr/j76UAwCeNgPd
6H3AGhM7Sd68lj/xAZ7dTPE=
=qfaT
-END PGP SIGNATURE-
___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] Either the lists are really dead today or...

2005-01-13 Thread Conrad J. Sabatier

...there's something wrong with the list server.

I've only received a total of five messages today in all of my freenet
mailing lists (I'm subscribed to all of the lists).  All of them were in
the devel list, and out of those five, three were messages I posted
myself.

Is anyone else having problems with the lists?

-- 
Conrad J. Sabatier [EMAIL PROTECTED] -- In Unix veritas
___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]


[freenet-support] What's up with the mailing lists?

2005-01-13 Thread Conrad J. Sabatier
There's something very peculiar going on here.  I've only received a
handful of messages in a single list (devl) since subscribing.  Just out
of curiosity, I went back to the mailman interface and resubscribed to
all the lists.  I got a message back in from only two of the lists
saying I was already subscribed.

Very odd.

-- 
Conrad J. Sabatier -- [EMAIL PROTECTED] -- In Unix veritas


___
Support mailing list
Support@freenetproject.org
http://news.gmane.org/gmane.network.freenet.support
Unsubscribe at http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/support
Or mailto:[EMAIL PROTECTED]