From toad at amphibian.dyndns.org Sat Feb 2 15:42:24 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Sat, 2 Feb 2008 15:42:24 +0000 Subject: [freenet-support] Freenet 0.7 build 1108 Message-ID: <200802021542.29554.toad@amphibian.dyndns.org> Freenet 0.7 build 1108 is now available. Please upgrade, it is mandatory on Tuesday. This build includes lots of changes, bugfixes and improvements: - Some memory optimisations in the client layer code (the client layer is responsible for most of Freenet's memory usage if you have requests/inserts queued). - Improvements to the logic that decides when to run the IP detection plugins (JSTUN and UPnP). - Minor messaging fixes. - Make load limiting react faster to changing ping times. - Minor changes to the web interface. - Try to prevent CPU starvation on startup by yielding in heavy threads (unfortunately thread priorities don't work in java on non-windows). - Minor CPU optimisation in routing code. - Fix swapping limiting logic. - Re-implement probe requests. These are a special kind of request that helps us to understand how well routing is working. - Code cleanups - XMLSpider: Bigger sub-indexes, but with a size limit of 256kB before compression. Please report any bugs you find to the bug tracker at https://bugs.freenetproject.org , or Frost. Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080202/4da6c0a8/attachment.pgp From cvollet at gmail.com Sat Feb 2 21:16:47 2008 From: cvollet at gmail.com (=?ISO-8859-1?Q?Cl=E9ment?=) Date: Sat, 02 Feb 2008 22:16:47 +0100 Subject: [freenet-support] Thingamablog patch Message-ID: <47A4DDBF.90308@gmail.com> Hello, here is a little patch for thingamablog, to force it to accept a freenet URI in the configuration : --- a/src/net/sf/thingamablog/gui/properties/TBWizardDialog.java 2007-12-02 09:17:34.000000000 +0100 +++ b/src/net/sf/thingamablog/gui/properties/TBWizardDialog.java 2008-02-02 20:27:53.000000000 +0100 @@ -377,7 +377,7 @@ } catch(MalformedURLException ex) //invalid url { - urlField.setText("http://" + urlField.getText()); //$NON-NLS-1$ + //urlField.setText("http://" + urlField.getText()); //$NON-NLS-1$ } return true; --- a/src/net/sf/thingamablog/gui/properties/TBGeneralPanel.java 2007-12-02 09:17:36.000000000 +0100 +++ b/src/net/sf/thingamablog/gui/properties/TBGeneralPanel.java 2008-02-02 21:31:14.000000000 +0100 @@ -237,13 +237,21 @@ return false; } - if(!isValidUrl(base)) - return false; - if(!isValidUrl(arc)) - return false; - if(!isValidUrl(media)) - return false; + if(isValidUrl(base)) + { + if(isValidUrl(arc)) + { + isValidUrl(media); + } + } + if(!arc.startsWith(base)) { JOptionPane.showMessageDialog(this, @@ -274,7 +282,7 @@ catch(Exception ex)//malformed url { JOptionPane.showMessageDialog(this, - u + i18n.str("invalid_url_prompt"), //$NON-NLS-1$ + u + i18n.str("invalid_url_prompt") + i18n.str("ask_freenet"), //$NON-NLS-1$ i18n.str("warning"), JOptionPane.WARNING_MESSAGE); //$NON-NLS-1$ return false; } (if we do exactly what the patch says, we need a new message ask_freenet (like "if you use freenet, it is normal") in those files : src/net/sf/thingamablog/gui/messages*.properties) From ebaschiera at gmail.com Mon Feb 4 13:45:31 2008 From: ebaschiera at gmail.com (Ermanno Baschiera) Date: Mon, 4 Feb 2008 14:45:31 +0100 Subject: [freenet-support] freenet/jvm priority over linux system? Message-ID: Hello, I'm running my node on a Gentoo Linux machine. You know... we gentooers sometimes have to compile updates and new packages. Ok, we OFTEN have to compile stuff. :-) During those compile sessions, my node pings higher and higher. Up to 22sec! Also if there's heavy use of samba, my node gets slower. IMHO that's a problem of process priority. Anybody knows how to rise the priority of freenet? (or JVM, I don't know which one) (My CPU isn't too slow for Freenet. My monitoring tool says it's 25% busy average) Thanks a lot. -ermanno From toad at amphibian.dyndns.org Mon Feb 4 11:19:11 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Mon, 4 Feb 2008 11:19:11 +0000 Subject: [freenet-support] Thingamablog patch In-Reply-To: <47A4DDBF.90308@gmail.com> References: <47A4DDBF.90308@gmail.com> Message-ID: <200802041119.12837.toad@amphibian.dyndns.org> On Saturday 02 February 2008 21:16, Cl?ment wrote: > Hello, > > here is a little patch for thingamablog, to force it to accept a freenet > URI in the configuration : IMHO we will need to maintain a fork of Thigamablog if we want to bundle it ... and somebody may need to go over the code to find all the places where it conflicts with Freenet e.g. in metadata. And of course, we'd need FCP support (which isn't *that* hard btw). Want the job? > > --- a/src/net/sf/thingamablog/gui/properties/TBWizardDialog.java > 2007-12-02 09:17:34.000000000 +0100 > +++ b/src/net/sf/thingamablog/gui/properties/TBWizardDialog.java > 2008-02-02 20:27:53.000000000 +0100 > @@ -377,7 +377,7 @@ > } > catch(MalformedURLException ex) //invalid url > { > - urlField.setText("http://" + > urlField.getText()); //$NON-NLS-1$ > + //urlField.setText("http://" + > urlField.getText()); //$NON-NLS-1$ > } > > return true; > > > --- a/src/net/sf/thingamablog/gui/properties/TBGeneralPanel.java > 2007-12-02 09:17:36.000000000 +0100 > +++ b/src/net/sf/thingamablog/gui/properties/TBGeneralPanel.java > 2008-02-02 21:31:14.000000000 +0100 > @@ -237,13 +237,21 @@ > return false; > } > > - if(!isValidUrl(base)) > - return false; > - if(!isValidUrl(arc)) > - return false; > - if(!isValidUrl(media)) > - return false; > > + if(isValidUrl(base)) > + { > + if(isValidUrl(arc)) > + { > + isValidUrl(media); > + } > + } > + > if(!arc.startsWith(base)) > { > JOptionPane.showMessageDialog(this, > @@ -274,7 +282,7 @@ > catch(Exception ex)//malformed url > { > JOptionPane.showMessageDialog(this, > - u + i18n.str("invalid_url_prompt"), > //$NON-NLS-1$ > + u + i18n.str("invalid_url_prompt") + > i18n.str("ask_freenet"), //$NON-NLS-1$ > i18n.str("warning"), > JOptionPane.WARNING_MESSAGE); //$NON-NLS-1$ > return false; > } > > > (if we do exactly what the patch says, we need a new message ask_freenet > (like "if you use freenet, it is normal") in those files : > src/net/sf/thingamablog/gui/messages*.properties) > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080204/29c40b77/attachment.pgp From martin.nyhus at sensewave.com Mon Feb 4 16:09:38 2008 From: martin.nyhus at sensewave.com (Martin Nyhus) Date: Mon, 4 Feb 2008 17:09:38 +0100 Subject: [freenet-support] freenet/jvm priority over linux system? In-Reply-To: References: Message-ID: <200802041709.42256.martin.nyhus@sensewave.com> On Monday 04 February 2008 14:45:31 Ermanno Baschiera wrote: > IMHO that's a problem of process priority. Anybody knows how to rise > the priority of freenet? (or JVM, I don't know which one) > (My CPU isn't too slow for Freenet. My monitoring tool says it's 25% > busy average) I'm not sure how you can do this automatically, but you can use renice to do it manually: $ renice -p The new priority should be lower than the priority portage runs at (not sure what this is), and the pid should be that of the java process that runs Freenet. Hope that helps, at least temporarily... Nogaso -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part. Url : http://emu.freenetproject.org/pipermail/support/attachments/20080204/07beb013/attachment.pgp From Volodya at WhenGendarmeSleeps.org Tue Feb 5 11:49:04 2008 From: Volodya at WhenGendarmeSleeps.org (Volodya) Date: Tue, 05 Feb 2008 14:49:04 +0300 Subject: [freenet-support] freenet/jvm priority over linux system? In-Reply-To: <200802041709.42256.martin.nyhus@sensewave.com> References: <200802041709.42256.martin.nyhus@sensewave.com> Message-ID: <47A84D30.9050708@WhenGendarmeSleeps.org> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Martin Nyhus wrote: > On Monday 04 February 2008 14:45:31 Ermanno Baschiera wrote: >> IMHO that's a problem of process priority. Anybody knows how to rise >> the priority of freenet? (or JVM, I don't know which one) >> (My CPU isn't too slow for Freenet. My monitoring tool says it's 25% >> busy average) > > I'm not sure how you can do this automatically, but you can use renice to do > it manually: > $ renice -p > > The new priority should be lower than the priority portage runs at (not sure > what this is), and the pid should be that of the java process that runs > Freenet. > > Hope that helps, at least temporarily... > > Nogaso In run.sh i have these lines: # Priority at which to run the wrapper. See "man nice" for valid priorities. # nice is only used if a priority is specified. PRIORITY=15 q;-) - -- http://freedom.libsyn.com/ Voice of Freedom, Radical Podcast http://eng.anarchopedia.org/ Anarchopedia, A Free Knowledge Portal "None of us are free until all of us are free." ~ Mihail Bakunin -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHqE0wuWy2EFICg+0RAjKuAJ0Q3e2uCk4uYD0axGpDOZre5fOOVACg3GZ7 E6x++qLILnownq4nW+8azBk= =IE0S -----END PGP SIGNATURE----- From bob_j_hayes at yahoo.co.uk Tue Feb 5 11:50:04 2008 From: bob_j_hayes at yahoo.co.uk (Bob) Date: Tue, 5 Feb 2008 11:50:04 +0000 (GMT) Subject: [freenet-support] freenet/jvm priority over linux system? Message-ID: <525358.33382.qm@web25502.mail.ukl.yahoo.com> Hi, On 2008-02-04 13:45, Ermanno Baschiera wrote: > Hello, > I'm running my node on a Gentoo Linux machine. > You know... we gentooers sometimes have to compile updates and new > packages. Ok, we OFTEN have to compile stuff. :-) > During those compile sessions, my node pings higher and higher. Up to > 22sec! Also if there's heavy use of samba, my node gets slower. You should be able to address slowdown during emerges by setting PORTAGE_NICENESS to e.g. 15 in make.conf, see http://gentoo-wiki.com/TIP_nice_and_PORTAGE_NICENESS. You could also edit run.sh(?) so the java-launching line reads something like "nice -10 java (...)" if it still seems necessary. Bob __________________________________________________________ Sent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com From ebaschiera at gmail.com Tue Feb 5 13:35:27 2008 From: ebaschiera at gmail.com (Ermanno Baschiera) Date: Tue, 5 Feb 2008 14:35:27 +0100 Subject: [freenet-support] freenet/jvm priority over linux system? In-Reply-To: <525358.33382.qm@web25502.mail.ukl.yahoo.com> References: <525358.33382.qm@web25502.mail.ukl.yahoo.com> Message-ID: Thanks a lot boys! I edited run.sh (priority 0) and also added PORTAGE_NICENESS="15" in make.conf. I tested my new configuration with a quick kernel compilation... That's fine now! -ermanno 2008/2/5, Bob : > Hi, > > On 2008-02-04 13:45, Ermanno Baschiera wrote: > > Hello, > > I'm running my node on a Gentoo Linux machine. > > You know... we gentooers sometimes have to compile updates and new > > packages. Ok, we OFTEN have to compile stuff. :-) > > During those compile sessions, my node pings higher and higher. Up to > > 22sec! Also if there's heavy use of samba, my node gets slower. > > You should be able to address slowdown during emerges by setting > PORTAGE_NICENESS to e.g. 15 in make.conf, see > http://gentoo-wiki.com/TIP_nice_and_PORTAGE_NICENESS. > > You could also edit run.sh(?) so the java-launching line reads > something like "nice -10 java (...)" if it still seems necessary. > > Bob > > > > __________________________________________________________ > Sent from Yahoo! Mail - a smarter inbox http://uk.mail.yahoo.com > > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe > From toad at amphibian.dyndns.org Fri Feb 8 20:58:07 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 8 Feb 2008 20:58:07 +0000 Subject: [freenet-support] Freenet 0.7 build 1109 Message-ID: <200802082058.12171.toad@amphibian.dyndns.org> Freenet 0.7 build 1109 is now available. Please upgrade ASAP. This build will be mandatory on Tuesday, and includes some critical bugfixes and major new features: - The "my node stops using bandwidth after N hours" bug is fixed. - Ultra-Lightweight Passive Requests and Per-node Failure Tables are implemented. These should make clients that need to poll lots of keys such as FMS much more efficient. Note that this is not yet complete and in particular there is no client API yet, but it's been tested in simulation. - Robert is developing a way to identify subnetworks, to take them into account in routing. - Some fixes to the JPEG filter. - Some HTL fixes in RequestSender and AnnounceSender. - Various other bugfixes and minor changes. Please upgrade ASAP! Please report any bugs you find to the bugtracker or to Frost. Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080208/81bcecd2/attachment.pgp From jeanclaudeferet at orange.fr Mon Feb 11 14:42:30 2008 From: jeanclaudeferet at orange.fr (=?ISO-8859-1?Q?Jean-Claude_F=E9ret?=) Date: Mon, 11 Feb 2008 15:42:30 +0100 Subject: [freenet-support] problems with config Message-ID: <47B05ED6.8010808@orange.fr> Hi, I guess you feel better if I do write in English ? First of all, I'm on OS X 10.4.10 and used upto now Azureus and mlDonkey (occasionally LimeWire or Ants) Having heard about freenet, I did download it, and followed the installation procedure (/by the way, and if it can be of any interest for you, the bug mentionned when using ubuntu, was there also with Mac OS X : error message saying that the download of that or that part didn't work, and, how I was advised to, I did click on continue... that happened quite many times during the installation, in fact for maybe the 2/3 of the files but it came to the end of it/) So, I went to the next document : How to configure Freenet. And there, was unable to get the config wizard. ? La connexion a ?chou?, Firefox ne peut ?tablir de connexion avec le serveur ? l'adresse 127.0.0.1:8888 ? Since it it goes through local host, I guess it probably is part of the downloaded folder, but I didn't see there any trace of it. Since I also didn't manage to find how to open anything in relation to Freenet, I wasn't either able to do any config manualy... Some advise would then be most welcome... Thanks in advance -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080211/c572d63c/attachment.htm From sitharus at gmail.com Mon Feb 11 18:25:11 2008 From: sitharus at gmail.com (Phillip Hutchings) Date: Tue, 12 Feb 2008 07:25:11 +1300 Subject: [freenet-support] problems with config In-Reply-To: <47B05ED6.8010808@orange.fr> References: <47B05ED6.8010808@orange.fr> Message-ID: <1AD2CEA7-4DD4-4E50-9973-7350FD9CEE48@gmail.com> On 12/02/2008, at 03:42, Jean-Claude F?ret wrote: > Hi, > I guess you feel better if I do write in English ? > First of all, I'm on OS X 10.4.10 and used upto now Azureus and > mlDonkey (occasionally LimeWire or Ants) > Having heard about freenet, I did download it, and followed the > installation procedure > > (by the way, and if it can be of any interest for you, the bug > mentionned when using ubuntu, was there also with Mac OS X : error > message saying that the download of that or that part didn't work, > and, how I was advised to, I did click on continue? that happened > quite many times during the installation, in fact for maybe the 2/3 > of the files but it came to the end of it) That sounds like a broken mirror. I know my host has been down several times recently, complaining to the ISP seems to have helped though. > So, I went to the next document : How to configure Freenet. And > there, was unable to get the config wizard. > > ? La connexion a ?chou?, Firefox ne peut ?tablir de connexion avec > le serveur ? l'adresse 127.0.0.1:8888 ? That means either the Freenet process isn't running, or hasn't finished starting up yet. Unfortunately there isn't a real OS X GUI yet. Try this: Open Terminal, type these commands: cd path/to/freenet ./run.sh stop ./run.sh start -- Phillip Hutchings http://www.sitharus.com/ From darren_jones11 at yahoo.co.uk Tue Feb 12 10:48:43 2008 From: darren_jones11 at yahoo.co.uk (Darren Jones) Date: Tue, 12 Feb 2008 10:48:43 +0000 Subject: [freenet-support] problems with config In-Reply-To: <47B05ED6.8010808@orange.fr> References: <47B05ED6.8010808@orange.fr> Message-ID: <58C0DBF5-0A8C-4A5C-B743-6EC68A51097A@yahoo.co.uk> I installed freenet on 10.5.1 and have had no issues during the install or using freenet, if that helps anybody track down this error. Darren On 11 Feb 2008, at 14:42, Jean-Claude F?ret wrote: > Hi, > I guess you feel better if I do write in English ? > First of all, I'm on OS X 10.4.10 and used upto now Azureus and > mlDonkey (occasionally LimeWire or Ants) > Having heard about freenet, I did download it, and followed the > installation procedure > > (by the way, and if it can be of any interest for you, the bug > mentionned when using ubuntu, was there also with Mac OS X : error > message saying that the download of that or that part didn't work, > and, how I was advised to, I did click on continue? that happened > quite many times during the installation, in fact for maybe the 2/3 > of the files but it came to the end of it) > > So, I went to the next document : How to configure Freenet. And > there, was unable to get the config wizard. > > ? La connexion a ?chou?, Firefox ne peut ?tablir de connexion avec > le serveur ? l'adresse 127.0.0.1:8888 ? > > Since it it goes through local host, I guess it probably is part of > the downloaded folder, but I didn't see there any trace of it. > > Since I also didn't manage to find how to open anything in relation > to Freenet, I wasn't either able to do any config manualy? > > Some advise would then be most welcome? Thanks in advance > > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080212/2718b5c2/attachment.htm From toad at amphibian.dyndns.org Tue Feb 12 15:51:43 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 12 Feb 2008 15:51:43 +0000 Subject: [freenet-support] problems with config In-Reply-To: <47B05ED6.8010808@orange.fr> References: <47B05ED6.8010808@orange.fr> Message-ID: <200802121551.49230.toad@amphibian.dyndns.org> So you installed Freenet, it opened a browser, you clicked on the link to go to http://127.0.0.1:8888/wizard/ ? Please send us your wrapper.log. On Monday 11 February 2008 14:42, Jean-Claude F?ret wrote: > Hi, > I guess you feel better if I do write in English ? > First of all, I'm on OS X 10.4.10 and used upto now Azureus and mlDonkey > (occasionally LimeWire or Ants) > Having heard about freenet, I did download it, and followed the > installation procedure > > (/by the way, and if it can be of any interest for you, the bug > mentionned when using ubuntu, was there also with Mac OS X : error > message saying that the download of that or that part didn't work, and, > how I was advised to, I did click on continue... that happened quite > many times during the installation, in fact for maybe the 2/3 of the > files but it came to the end of it/) > > So, I went to the next document : How to configure Freenet. And there, > was unable to get the config wizard. > > ? La connexion a ?chou?, Firefox ne peut ?tablir de connexion avec le > serveur ? l'adresse 127.0.0.1:8888 ? > > Since it it goes through local host, I guess it probably is part of the > downloaded folder, but I didn't see there any trace of it. > > Since I also didn't manage to find how to open anything in relation to > Freenet, I wasn't either able to do any config manualy... > > Some advise would then be most welcome... Thanks in advance > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080212/1398473e/attachment.pgp From eusougreg1 at yahoo.com Tue Feb 12 20:38:15 2008 From: eusougreg1 at yahoo.com (Heitor Varela) Date: Tue, 12 Feb 2008 12:38:15 -0800 (PST) Subject: [freenet-support] process execution failed Message-ID: <412123.78353.qm@web58205.mail.re3.yahoo.com> I've been having a serie of problems installing my freenet program, it first starts on processing step 3, where it says "process execution failed" and then it continues to fail from then on... I receive the "congratilation" page, but when I try to connect to the http://(..)8888 it shows a that mozila page saying "the page is unavailable" and I just cant connect... what should I do?, I have the java up and running, but still, there's nothing I can do? --------------------------------- Looking for last minute shopping deals? Find them fast with Yahoo! Search. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080212/d03b4adf/attachment.htm From toad at amphibian.dyndns.org Wed Feb 13 22:35:27 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Wed, 13 Feb 2008 22:35:27 +0000 Subject: [freenet-support] process execution failed In-Reply-To: <412123.78353.qm@web58205.mail.re3.yahoo.com> References: <412123.78353.qm@web58205.mail.re3.yahoo.com> Message-ID: <200802132235.27864.toad@amphibian.dyndns.org> On Tuesday 12 February 2008 20:38, Heitor Varela wrote: > I've been having a serie of problems installing my freenet program, it first starts on processing step 3, where it says "process execution failed" and then it continues to fail from then on... A screenshot would be interesting. Uninstall and reinstall if you need to to get one. > > I receive the "congratilation" page, but when I try to connect to the http://(..)8888 it shows a that mozila page saying "the page is unavailable" and I just cant connect... what should I do?, I have the java up and running, but still, there's nothing I can do? Check that there isn't a proxy set in the browser settings. Then send me your wrapper.log. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080213/def8fdc3/attachment.pgp From goye01 at yahoo.com Thu Feb 14 15:04:47 2008 From: goye01 at yahoo.com (diego goyeneche) Date: Thu, 14 Feb 2008 09:04:47 -0600 (CST) Subject: [freenet-support] Help! Ayuda! Message-ID: <272102.31936.qm@web34401.mail.mud.yahoo.com> Hello, I need aid with freenet since does not appear ?cono straight of configuration in the inferior margin of my screen (the rabbit) and in program you do not case out either, and I need it to form the node. In addition there are paginas within freenet wings that cannot be accesder without before lowering a file that whereupon program is not opened, says that it is a file potencualmente dangerous MIME/Aplicacion. They can help me? Thanks! I do not know to speak ingles, I used the translator of Yahoo. --------------------------------- ?Capacidad ilimitada de almacenamiento en tu correo! No te preocupes m?s por el espacio de tu cuenta con Correo Yahoo!: http://correo.espanol.yahoo.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080214/744247e8/attachment.htm From toad at amphibian.dyndns.org Thu Feb 14 15:35:34 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Thu, 14 Feb 2008 15:35:34 +0000 Subject: [freenet-support] Help! Ayuda! In-Reply-To: <272102.31936.qm@web34401.mail.mud.yahoo.com> References: <272102.31936.qm@web34401.mail.mud.yahoo.com> Message-ID: <200802141535.41266.toad@amphibian.dyndns.org> On Thursday 14 February 2008 15:04, you wrote: > Hello, I need aid with freenet since does not appear ?cono straight of configuration in the inferior margin of my screen (the rabbit) and in program you do not case out either, and I need it to form the node. In addition there are paginas within freenet wings that cannot be accesder without before lowering a file that whereupon program is not opened, says that it is a file potencualmente dangerous MIME/Aplicacion. They can help me? Thanks! I do not know to speak ingles, I used the translator of Yahoo. You might want to try #freenet-es on irc.freenode.net, people there speak spanish and know about freenet. But there aren't many people there at the moment. Freenet 0.7 doesn't install a rabbit icon. But it should make some icons on the desktop and the start menu. What operating system are you using? (Linux? Windows?). The node warns you about dangerous MIME types when it doesn't know how to make that kind of data safe. It might cause your browser to do bad things and give away your identity (for example with a PDF). You can either take that risk, find a way to make it safe, or you can not download the file. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080214/a259904c/attachment.pgp From toad at amphibian.dyndns.org Thu Feb 14 16:05:18 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Thu, 14 Feb 2008 16:05:18 +0000 Subject: [freenet-support] Freenet 0.7 build 1111 Message-ID: <200802141605.27954.toad@amphibian.dyndns.org> Freenet 0.7 build 1111 is now available. Please upgrade! This build will be mandatory on Monday, and includes many improvements: - Much faster swapping (via queueing swap requests for a short period rather than rejecting them). - Don't delete downloads.dat.gz (the file containing the persistent downloads/uploads list) until we've successfully written a new one. - Improved PNG filter strips out comments, timestamps, chunks with a bad CRC, unknown chunks etc. - Fix some data corruption bugs in the content filter layer. - More work on network coloring by robert (turned off at the moment). Network coloring means identifying when there are subnetworks which are not strongly connected to each other. - Some changes to the messaging layer (faster retransmission), and double the Accepted timeout on requests, to prevent timeouts waiting for Accepted. - Fix a bug in an averager class we use for ping times etc. We had some code to make it more sensitive just after startup but this was causing inconsistency and is unnecessary anyway. - Much more sensitive / shorter term ping time averager. This should reduce the impact of "startup spikes" and other temporary network or CPU bursts. - Fix a bug relating to persistent throttle filenames. - Don't poll for bookmarks if fproxy is turned off. - /wizard should redirect to /wizard/ , same with other toadlets. - Lots of work on simulations of many nodes in one JVM, using the real node code. This has contributed to many of the above fixes and improvements. - Fixes to probe requests. Should be working soon. - Speed up datastore reconstruction slightly by bypassing the dbdump phase, which has never worked. - Lots of internal code tidying up, dead code deletion, logging, etc. Another recent development: dieppe is working on a fork of thingamablog, which will have support for inserting flogs. Please upgrade, and report any bugs you find to the bug tracker at https://bugs.freenetproject.org/ , or otherwise. Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080214/12935cfa/attachment.pgp From wanderer at nycap.rr.com Fri Feb 15 12:16:40 2008 From: wanderer at nycap.rr.com (Peter Shields) Date: Fri, 15 Feb 2008 07:16:40 -0500 Subject: [freenet-support] Problem with restarts Message-ID: Hi there, I'm not sure I'm correct in sending this message to you guys, but I've got problem I suspect is embarrassingly simple to fix. Whenever I restart my machine and attempt to connect to my Freenet node, I am told that I can't establish a connection. This is the embarrassing part: what do I have to do to "start" my node up again? -Thanks a lot, Peter. From toad at amphibian.dyndns.org Fri Feb 15 20:22:58 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 15 Feb 2008 20:22:58 +0000 Subject: [freenet-support] Problem with restarts In-Reply-To: References: Message-ID: <200802152023.05021.toad@amphibian.dyndns.org> On Friday 15 February 2008 12:16, Peter Shields wrote: > Hi there, > I'm not sure I'm correct in sending this message to you guys, but > I've got problem I suspect is embarrassingly simple to fix. > Whenever I restart my machine and attempt to connect to my Freenet > node, I am told that I can't establish a connection. This is the > embarrassing part: what do I have to do to "start" my node up again? > -Thanks a lot, > Peter. Linux? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080215/7ff49172/attachment.pgp From toad at amphibian.dyndns.org Tue Feb 19 18:34:09 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 19 Feb 2008 18:34:09 +0000 Subject: [freenet-support] Freenet 0.7 build 1112 - big changes and feature freeze Message-ID: <200802191834.13558.toad@amphibian.dyndns.org> Freenet 0.7 build 1112 is now available. It will be mandatory on Thursday so please update ASAP (if your node has auto-update enabled it will do this for you). This build features a number of substantial changes (I apologise for the length of this mail!): - Major changes to HTL (the means by which we limit the number of nodes a request will visit before it gives up): We no longer record the nearest location to the target visited so far. We no longer reset the HTL to the maximum when we get closer to the target than we have been so far. We now have an average of 5 hops at maximum HTL (was 2), followed by 15 hops of declining HTL (was 10). The next build will make this 10 hops at maximum HTL followed by 10 hops of declining HTL. This is to try to get as smooth a transition as possible. The point of all this is to significantly improve request security: the nearest-so-far mechanism gives far too much information to an attacker, and the more hops we do at maximum HTL the better (ideally we'd not have HTL at all, but that would break inserts and make for lots of really short requests). - Support for thread priorities on Linux: We use thread priorities to ensure that the most important jobs get more CPU time. However, this only works on Windows because java uses an API which isn't implemented on Linux. With a helper library (included in freenet-ext.jar edition 19), we set the nice value of each thread to reflect its java-level priority. This, combined with a range of related changes (many of which also affect nodes running on windows), will eliminate the massive spike in ping time that occurs on starting up most linux nodes (and to some degree windows nodes). Because Freenet uses a range of priorities for different threads, you should ideally set its initial nice level to no more than 15, to give it room to maneuver; the unix install script now sets the initial nice level to 12 (the node can make threads more nice but not less nice). - Request cooldown queue: After attempting 3 times to fetch a key, the node will now wait 5 minutes before fetching it again. This will be increased to 30 minutes after I am sure the bugs are worked out. This means that polling apps such as FMS can simply queue their keys with MaxRetries=-1 and not worry about explicit polling. Note that the data will often be found during the cooldown period via ULPRs: this is effectively the client API for ULPRs. - The JPEG filter supports a wider range of images (we had been excluding a lot of encoding formats which were actually necessary for many images). Apart from the above features, which appear to work in testing so far but probably need further debugging, this build also marks a feature freeze: No major features should be committed to trunk before 0.7.0, please create a branch if you need to work on them. The network coloring code for example will be disabled in 0.7.0 (but maybe just by a flag). Developers should commit major changes as branches so they can be merged after 0.7.0; I will ask them to revert their changes if necessary. Bugfixes are of course always welcome in trunk. Please upgrade, test, and report any bugs you find, preferably to the bug tracker at https://bugs.freenetproject.org/ . -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080219/9887f435/attachment.pgp From mrflibble at urbantakeover.freeserve.co.uk Sat Feb 23 17:46:10 2008 From: mrflibble at urbantakeover.freeserve.co.uk (Mr. Flibble) Date: Sat, 23 Feb 2008 17:46:10 -0000 Subject: [freenet-support] Odd freenet.ini line In-Reply-To: <200802191834.13558.toad@amphibian.dyndns.org> References: <200802191834.13558.toad@amphibian.dyndns.org> Message-ID: <06b501c87643$fc29bfa0$0a7b0001@deepspace3> I have a freenet.ini file which has the following line in it: node.clientThrottleFile=.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\ .\.\.\.\.\.\.\.\.\.\client-throttle.dat Is there any reason for so many ".\"s as it looks weird? Thanks, MrFlibble From alladin2000 at free.fr Sat Feb 23 14:44:18 2008 From: alladin2000 at free.fr (alladin2000) Date: Sat, 23 Feb 2008 15:44:18 +0100 Subject: [freenet-support] What is next Message-ID: <47C03142.9080108@free.fr> Hi I just installed the package on windows XP on My Portable But when I enter the URL , http://127.0.0.1:8888/wizard/ page is not found what is wrong ? Normally, when I use EasyPHP on mly PC, there is no pb. I have access to my local www So except the port N? which could be different I don't know what is wrong with the installation steps What process to run or to check running who give the Do I have to java some code running ? regards From aladin at free.fr Sat Feb 23 15:06:10 2008 From: aladin at free.fr (aladin) Date: Sat, 23 Feb 2008 16:06:10 +0100 Subject: [freenet-support] What is next In-Reply-To: <47C03142.9080108@free.fr> References: <47C03142.9080108@free.fr> Message-ID: <47C03662.7090302@free.fr> An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080223/819e2e80/attachment.htm From Volodya at WhenGendarmeSleeps.org Sat Feb 23 18:06:41 2008 From: Volodya at WhenGendarmeSleeps.org (Volodya) Date: Sat, 23 Feb 2008 21:06:41 +0300 Subject: [freenet-support] Odd freenet.ini line In-Reply-To: <06b501c87643$fc29bfa0$0a7b0001@deepspace3> References: <200802191834.13558.toad@amphibian.dyndns.org> <06b501c87643$fc29bfa0$0a7b0001@deepspace3> Message-ID: <47C060B1.5000308@WhenGendarmeSleeps.org> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Mr. Flibble wrote: > I have a freenet.ini file which has the following line in it: > node.clientThrottleFile=.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\.\ > .\.\.\.\.\.\.\.\.\.\client-throttle.dat > > Is there any reason for so many ".\"s as it looks weird? > Thanks, > > MrFlibble One should be just enough. Looks like some recursion or loop problem. Try stopping the node, removing all but one .\ and then starting and stopping the node again. If it you get more than one again, then perhaps it's something that happens at start-up/shut-down that is at fault. - Volodya - -- http://freedom.libsyn.com/ Voice of Freedom, Radical Podcast http://eng.anarchopedia.org/ Anarchopedia, A Free Knowledge Portal "None of us are free until all of us are free." ~ Mihail Bakunin -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHwGCxuWy2EFICg+0RAk8NAKDE3Uwo9Mi4XenECKUVOzXuBNdDeACgvLTS nTnMY/KdqxAH4MAGJ7CvsVM= =8T+O -----END PGP SIGNATURE----- From toad at amphibian.dyndns.org Sat Feb 23 21:16:03 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Sat, 23 Feb 2008 21:16:03 +0000 Subject: [freenet-support] What is next In-Reply-To: <47C03662.7090302@free.fr> References: <47C03142.9080108@free.fr> <47C03662.7090302@free.fr> Message-ID: <200802232116.09501.toad@amphibian.dyndns.org> Hmmm. Well, we create a user to run Freenet in (for security, so it doesn't run as system), and apparently although we try 3 different kinds of random passwords, none of them meet your local criteria... nextgens, any suggestions? On Saturday 23 February 2008 15:06, aladin wrote: > An other fact is the following ... > > I had that error I didn't see before ... > > Installing the wrapper > ??? - Creating a user for freenet > The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements. > > More help is available by typing NET HELPMSG 2245. > > ??? - Hiding the freenet user from the login screen > ??? - Tweaking the permissions of the freenet user > ??? - Changing file permissions > ??? - Registering Freenet as a system service > wrapper? | CreateService failed - The account name is invalid or does not exist, or the password is invalid for the account name specified. (0x421) > ??? - Start the node up > The service name is invalid. > > More help is available by typing NET HELPMSG 2185. > > > > Hi > I just installed the package on windows XP on My Portable > > But when I enter the URL ,? http://127.0.0.1:8888/wizard/ > page is not found > > what is wrong ? > > Normally, when I use EasyPHP on mly PC, there is no pb. I have access to my local www > > So except the port N? which could be different I don't know what is wrong with the installation steps > > What process to run or to check running who give the > Do I have to java some code?? running ? > > regards > > > > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080223/137b5db0/attachment.pgp From nextgens at freenetproject.org Sun Feb 24 02:21:04 2008 From: nextgens at freenetproject.org (Florent =?iso-8859-1?Q?Daigni=E8re?=) Date: Sun, 24 Feb 2008 03:21:04 +0100 Subject: [freenet-support] What is next In-Reply-To: <200802232116.09501.toad@amphibian.dyndns.org> References: <47C03142.9080108@free.fr> <47C03662.7090302@free.fr> <200802232116.09501.toad@amphibian.dyndns.org> Message-ID: <20080224022102.GC3802@freenetproject.org> * Matthew Toseland [2008-02-23 21:16:03]: > Hmmm. Well, we create a user to run Freenet in (for security, so it doesn't > run as system), and apparently although we try 3 different kinds of random > passwords, none of them meet your local criteria... nextgens, any > suggestions? Well, ask the user what his local password policy is... and fix the installer so that it tries something matching it ;) @aladin: what is your local password policy ? > > On Saturday 23 February 2008 15:06, aladin wrote: > > An other fact is the following ... > > > > I had that error I didn't see before ... > > > > Installing the wrapper > > ??? - Creating a user for freenet > > The password does not meet the password policy requirements. Check the > minimum password length, password complexity and password history > requirements. > > > > More help is available by typing NET HELPMSG 2245. > > > > ??? - Hiding the freenet user from the login screen > > ??? - Tweaking the permissions of the freenet user > > ??? - Changing file permissions > > ??? - Registering Freenet as a system service > > wrapper? | CreateService failed - The account name is invalid or does not > exist, or the password is invalid for the account name specified. (0x421) > > ??? - Start the node up > > The service name is invalid. > > > > More help is available by typing NET HELPMSG 2185. > > > > > > > > Hi > > I just installed the package on windows XP on My Portable > > > > But when I enter the URL ,? http://127.0.0.1:8888/wizard/ > > page is not found > > > > what is wrong ? > > > > Normally, when I use EasyPHP on mly PC, there is no pb. I have access to my > local www > > > > So except the port N? which could be different I don't know what is wrong > with the installation steps > > > > What process to run or to check running who give the > > Do I have to java some code?? running ? > > > > regards > > > > > > > > > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://emu.freenetproject.org/pipermail/support/attachments/20080224/d92edf07/attachment.pgp From ckiczek at MIT.EDU Sun Feb 24 02:02:04 2008 From: ckiczek at MIT.EDU (Craig Kiczek) Date: Sat, 23 Feb 2008 21:02:04 -0500 Subject: [freenet-support] freenet installation problem Message-ID: <000001c87689$43d97120$cb8c5360$@edu> I've installed freenet, but opening the "first time wizard" gives me an "Internet Explorer cannot display this page" error. Here is the text shown in the installation dialog box. It looks like there is some problem. Registering .fref file extension Downloading update.cmd Downloading the Opennet seednode file Setting up plugins -JSTUN -MDNSDiscovery -UPnP -XMLLibrarian Downloading freenet-stable-latest.jar Downloading freenet-ext.jar Detecting tcp port availability Installing the wrapper - Creating a user for freenet The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements. More help is available by typing NET HELPMSG 2245. - Hiding the freenet user from the login screen - Tweaking the permissions of the freenet user - Changing file permissions - Registering Freenet as a system service wrapper | CreateService failed - The account name is invalid or does not exist, or the password is invalid for the account name specified. (0x421) - Start the node up The service name is invalid. More help is available by typing NET HELPMSG 2185. Spawning up a browser Downloading Thaw Setting Thaw up Downloading Frost Setting Frost up Downloading jSite -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080223/ffaf2caf/attachment.htm From c_dum at yahoo.fr Sun Feb 24 02:08:16 2008 From: c_dum at yahoo.fr (Cyril Dumont) Date: Sun, 24 Feb 2008 03:08:16 +0100 Subject: [freenet-support] untimely stop and restart of my node Message-ID: <000001c8768a$24b0cc70$6e126550$@fr> Hi everybody, I write this message to the dev and give my problem. My node untimely stop and restart particulary when I launch freenet applications such as thaw or frost (node stop and restart every 2 minutes.). This is my config : Os : windows XP Vesion of java : java version "1.6.0_03" Java(TM) SE Runtime Environment (build 1.6.0_03-b05) Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode) CPU spped : PIII 700Mhz Ram : 392 KB Freenet version : Freenet 0.7 version #1112 r18077M Freenet-ext version #19 r at custom@ Line concern in wrapper.log : ERROR | wrapper | 2008/02/23 01:45:37 | JVM appears hung: Timed out waiting for signal from JVM. I have notice that too : when freenet is launching alone, java take 120 KB of memory. When java and thaw for example are both launched, java take 50-70 KB of memory and javaw take 50 KB f memory. If you have any solutions, thanks a lot. Kliorgogan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080224/cba36a57/attachment.htm From c_dum at yahoo.fr Sun Feb 24 02:12:36 2008 From: c_dum at yahoo.fr (Cyril Dumont) Date: Sun, 24 Feb 2008 03:12:36 +0100 Subject: [freenet-support] untimely stop and restart of my node Message-ID: <000501c8768a$bad2f110$3078d330$@fr> I have done a mistake, my ram is 392 MB De : Cyril Dumont [mailto:c_dum at yahoo.fr] Envoy? : dimanche 24 f?vrier 2008 03:08 ? : 'support at freenetproject.org' Objet : untimely stop and restart of my node Hi everybody, I write this message to the dev and give my problem. My node untimely stop and restart particulary when I launch freenet applications such as thaw or frost (node stop and restart every 2 minutes ). This is my config : Os : windows XP Vesion of java : java version "1.6.0_03" Java(TM) SE Runtime Environment (build 1.6.0_03-b05) Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode) CPU spped : PIII 700Mhz Ram : 392 KB Freenet version : Freenet 0.7 version #1112 r18077M Freenet-ext version #19 r at custom@ Line concern in wrapper.log : ERROR | wrapper | 2008/02/23 01:45:37 | JVM appears hung: Timed out waiting for signal from JVM. I have notice that too : when freenet is launching alone, java take 120 KB of memory. When java and thaw for example are both launched, java take 50-70 KB of memory and javaw take 50 KB f memory. If you have any solutions, thanks a lot. Kliorgogan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080224/bc260559/attachment.htm From kevin.kenneybrew at gmail.com Sun Feb 24 08:27:05 2008 From: kevin.kenneybrew at gmail.com (Dark Icer) Date: Sun, 24 Feb 2008 03:27:05 -0500 Subject: [freenet-support] I can't use Freenet details inside Message-ID: FreeNet don't work for me and I receive this error when i try to start a node: *Starting FreeNet The service name is invalid. More help is available by typing NET HELPMSG 2185 Press any key to continue...* when I install FreeNet I get the following message as well: *Registering .fref file extension "Offline installation mode" Downloading update.cmd Setting up plugins -JSTUN -MDNSDiscovery -UPnP -XMLLibrarian Detecting tcp port availability Installing the wrapper - Creating a user for freenet The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements. More help is available by typing NET HELPMSG 2245. - Hiding the freenet user from the login screen - Tweaking the permissions of the freenet user - Changing file permissions - Registering Freenet as a system service wrapper | CreateService failed - The account name is invalid or does not exist, or the password is invalid for the account name specified. (0x421) - Start the node up The service name is invalid. More help is available by typing NET HELPMSG 2185. Spawning up a browser The system cannot find the file D:\Program Files\Freenet\welcome.html. Downloading Thaw Setting Thaw up Setting Frost up * -- Kevin Kenneybrew Kevin.Kenneybrew at GMail.com KKenneybrew at Hotmail.com Dark_Icer at Yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080224/e7aeafd7/attachment.htm From ebaschiera at gmail.com Tue Feb 26 15:39:26 2008 From: ebaschiera at gmail.com (Ermanno Baschiera) Date: Tue, 26 Feb 2008 16:39:26 +0100 Subject: [freenet-support] I can't use Freenet details inside In-Reply-To: References: Message-ID: Try redownloading the Freenet installer from the website. It seems that the today new release fixes some bugs with your issues. -ermanno 2008/2/24, Dark Icer : > FreeNet don't work for me and I receive this error when i try to start a > node: > > Starting FreeNet > The service name is invalid. > > More help is available by typing NET HELPMSG 2185 > > Press any key to continue... > > > when I install FreeNet I get the following message as well: > > Registering .fref file extension > "Offline installation mode" > Downloading update.cmd > Setting up plugins > -JSTUN > -MDNSDiscovery > -UPnP > -XMLLibrarian > Detecting tcp port availability > Installing the wrapper > - Creating a user for freenet > The password does not meet the password policy requirements. Check the > minimum password length, password complexity and password history > requirements. > > More help is available by typing NET HELPMSG 2245. > > - Hiding the freenet user from the login screen > - Tweaking the permissions of the freenet user > - Changing file permissions > - Registering Freenet as a system service > wrapper | CreateService failed - The account name is invalid or does not > exist, or the password is invalid for the account name specified. (0x421) > - Start the node up > The service name is invalid. > > More help is available by typing NET HELPMSG 2185. > > Spawning up a browser > The system cannot find the file D:\Program Files\Freenet\welcome.html. > Downloading Thaw > Setting Thaw up > Setting Frost up > > > -- > Kevin Kenneybrew > Kevin.Kenneybrew at GMail.com > KKenneybrew at Hotmail.com > Dark_Icer at Yahoo.com > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at > http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or > mailto:support-request at freenetproject.org?subject=unsubscribe > From reriks at gmail.com Tue Feb 26 15:45:52 2008 From: reriks at gmail.com (Richard Eriksson) Date: Tue, 26 Feb 2008 10:45:52 -0500 Subject: [freenet-support] I can't use Freenet details inside In-Reply-To: References: Message-ID: <223a46030802260745h7cf69e7fuf0ce9627d9a955ab@mail.gmail.com> The answer is your Java. Same problem happened to me. Go to http://www.freenethelp.org:14741/InstallingFreenet And follow the instructions. I don't know why the freenet page doesn't have this instruction but once you download and install Java 5.0 The installation will be successful. Good luck. -rich- On Tue, Feb 26, 2008 at 10:39 AM, Ermanno Baschiera wrote: > Try redownloading the Freenet installer from the website. It seems > that the today new release fixes some bugs with your issues. > > -ermanno > > 2008/2/24, Dark Icer : > > FreeNet don't work for me and I receive this error when i try to start a > > node: > > > > Starting FreeNet > > The service name is invalid. > > > > More help is available by typing NET HELPMSG 2185 > > > > Press any key to continue... > > > > > > when I install FreeNet I get the following message as well: > > > > Registering .fref file extension > > "Offline installation mode" > > Downloading update.cmd > > Setting up plugins > > -JSTUN > > -MDNSDiscovery > > -UPnP > > -XMLLibrarian > > Detecting tcp port availability > > Installing the wrapper > > - Creating a user for freenet > > The password does not meet the password policy requirements. Check the > > minimum password length, password complexity and password history > > requirements. > > > > More help is available by typing NET HELPMSG 2245. > > > > - Hiding the freenet user from the login screen > > - Tweaking the permissions of the freenet user > > - Changing file permissions > > - Registering Freenet as a system service > > wrapper | CreateService failed - The account name is invalid or does > not > > exist, or the password is invalid for the account name specified. > (0x421) > > - Start the node up > > The service name is invalid. > > > > More help is available by typing NET HELPMSG 2185. > > > > Spawning up a browser > > The system cannot find the file D:\Program Files\Freenet\welcome.html. > > Downloading Thaw > > Setting Thaw up > > Setting Frost up > > > > > > -- > > Kevin Kenneybrew > > Kevin.Kenneybrew at GMail.com > > KKenneybrew at Hotmail.com > > Dark_Icer at Yahoo.com > > _______________________________________________ > > Support mailing list > > Support at freenetproject.org > > http://news.gmane.org/gmane.network.freenet.support > > Unsubscribe at > > http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > > Or > > mailto:support-request at freenetproject.org?subject=unsubscribe > > > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at > http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://emu.freenetproject.org/pipermail/support/attachments/20080226/b050628c/attachment.htm From toad at amphibian.dyndns.org Tue Feb 26 16:12:03 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 26 Feb 2008 16:12:03 +0000 Subject: [freenet-support] Freenet 0.7 build 1113 Message-ID: <200802261612.10708.toad@amphibian.dyndns.org> Freenet 0.7 build 1113 is now available (and will be mandatory tomorrow). Changelog: - Various fixes to how we handle HTL. - Lots of client layer fixes (mostly relating to splitfile downloads and the cooldown queue). - Major bugfixes to per-node failure tables and ULPRs. - Improvements to the queue page. - Warn the user on linux if we have too few nice levels. - Fix some open file leaks. Also some bugfixes to the installer, and dieppe's Thingamablog fork for making flog's is rapidly approaching usability. Please upgrade, and report any bugs you find, preferably to the bug tracker at https://bugs.freenetproject.org/ . Thank you. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080226/85b0401f/attachment.pgp From toad at amphibian.dyndns.org Tue Feb 26 16:32:20 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 26 Feb 2008 16:32:20 +0000 Subject: [freenet-support] What is next In-Reply-To: <47C03142.9080108@free.fr> References: <47C03142.9080108@free.fr> Message-ID: <200802261632.25594.toad@amphibian.dyndns.org> Please could you uninstall Freenet and then try again (from the download page) ? Nextgens has fixed some bugs in the installer that might have caused your problems. On Saturday 23 February 2008 14:44, alladin2000 wrote: > Hi > I just installed the package on windows XP on My Portable > > But when I enter the URL , http://127.0.0.1:8888/wizard/ > page is not found > > what is wrong ? > > Normally, when I use EasyPHP on mly PC, there is no pb. I have access to > my local www > > So except the port N? which could be different I don't know what is > wrong with the installation steps > > What process to run or to check running who give the > Do I have to java some code running ? > > regards > > _______________________________________________ > Support mailing list > Support at freenetproject.org > http://news.gmane.org/gmane.network.freenet.support > Unsubscribe at http://emu.freenetproject.org/cgi-bin/mailman/listinfo/support > Or mailto:support-request at freenetproject.org?subject=unsubscribe > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080226/3bd25b0d/attachment.pgp From toad at amphibian.dyndns.org Tue Feb 26 16:33:16 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 26 Feb 2008 16:33:16 +0000 Subject: [freenet-support] freenet installation problem In-Reply-To: <000001c87689$43d97120$cb8c5360$@edu> References: <000001c87689$43d97120$cb8c5360$@edu> Message-ID: <200802261633.17195.toad@amphibian.dyndns.org> Please could you uninstall Freenet and then try again (from the download page) ? Nextgens has fixed some bugs in the installer that might have caused your problems. On Sunday 24 February 2008 02:02, Craig Kiczek wrote: > I've installed freenet, but opening the "first time wizard" gives me an > "Internet Explorer cannot display this page" error. Here is the text shown > in the installation dialog box. It looks like there is some problem. > > > > Registering .fref file extension > > Downloading update.cmd > > Downloading the Opennet seednode file > > Setting up plugins > > -JSTUN > > -MDNSDiscovery > > -UPnP > > -XMLLibrarian > > Downloading freenet-stable-latest.jar > > Downloading freenet-ext.jar > > Detecting tcp port availability > > Installing the wrapper > > - Creating a user for freenet > > The password does not meet the password policy requirements. Check the > minimum password length, password complexity and password history > requirements. > > > > More help is available by typing NET HELPMSG 2245. > > > > - Hiding the freenet user from the login screen > > - Tweaking the permissions of the freenet user > > - Changing file permissions > > - Registering Freenet as a system service > > wrapper | CreateService failed - The account name is invalid or does not > exist, or the password is invalid for the account name specified. (0x421) > > - Start the node up > > The service name is invalid. > > > > More help is available by typing NET HELPMSG 2185. > > > > Spawning up a browser > > Downloading Thaw > > Setting Thaw up > > Downloading Frost > > Setting Frost up > > Downloading jSite > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080226/4f6c9fe0/attachment.pgp From toad at amphibian.dyndns.org Tue Feb 26 18:49:38 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Tue, 26 Feb 2008 18:49:38 +0000 Subject: [freenet-support] I can't use Freenet details inside In-Reply-To: References: Message-ID: <200802261849.44984.toad@amphibian.dyndns.org> Please uninstall and try again, a bug has been fixed which caused such problems. On Sunday 24 February 2008 08:27, Dark Icer wrote: > FreeNet don't work for me and I receive this error when i try to start a > node: > > *Starting FreeNet > The service name is invalid. > > More help is available by typing NET HELPMSG 2185 > > Press any key to continue...* > > > when I install FreeNet I get the following message as well: > > *Registering .fref file extension > "Offline installation mode" > Downloading update.cmd > Setting up plugins > -JSTUN > -MDNSDiscovery > -UPnP > -XMLLibrarian > Detecting tcp port availability > Installing the wrapper > - Creating a user for freenet > The password does not meet the password policy requirements. Check the > minimum password length, password complexity and password history > requirements. > > More help is available by typing NET HELPMSG 2245. > > - Hiding the freenet user from the login screen > - Tweaking the permissions of the freenet user > - Changing file permissions > - Registering Freenet as a system service > wrapper | CreateService failed - The account name is invalid or does not > exist, or the password is invalid for the account name specified. (0x421) > - Start the node up > The service name is invalid. > > More help is available by typing NET HELPMSG 2185. > > Spawning up a browser > The system cannot find the file D:\Program Files\Freenet\welcome.html. > Downloading Thaw > Setting Thaw up > Setting Frost up > * > > -- > Kevin Kenneybrew > Kevin.Kenneybrew at GMail.com > KKenneybrew at Hotmail.com > Dark_Icer at Yahoo.com > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080226/b8328c3e/attachment.pgp From toad at amphibian.dyndns.org Wed Feb 27 13:34:01 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Wed, 27 Feb 2008 13:34:01 +0000 Subject: [freenet-support] untimely stop and restart of my node In-Reply-To: <000001c8768a$24b0cc70$6e126550$@fr> References: <000001c8768a$24b0cc70$6e126550$@fr> Message-ID: <200802271334.10568.toad@amphibian.dyndns.org> On Sunday 24 February 2008 02:08, Cyril Dumont wrote: > Hi everybody, > > I write this message to the dev and give my problem. > > My node untimely stop and restart particulary when I launch freenet > applications such as thaw or frost (node stop and restart every 2 minutes.). > > This is my config : > > Os : windows XP > > Vesion of java : java version "1.6.0_03" > Java(TM) SE Runtime Environment (build > 1.6.0_03-b05) > Java HotSpot(TM) Client VM (build > 1.6.0_03-b05, mixed mode) > > CPU spped : PIII 700Mhz > > Ram : 392 KB Your CPU is a bit slow, but you have plenty of RAM, so it ought to work... > > Freenet version : Freenet 0.7 version #1112 r18077M > Freenet-ext version #19 r at custom@ > > Line concern in wrapper.log : ERROR | wrapper | 2008/02/23 01:45:37 | JVM > appears hung: Timed out waiting for signal from JVM. > > I have notice that too : when freenet is launching alone, java take 120 KB > of memory. > > When java and thaw for example are both launched, java take 50-70 KB of > memory and javaw take 50 KB f memory. > > If you have any solutions, thanks a lot. Try increasing the memory limit in wrapper.conf. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080227/40ce6493/attachment.pgp From toad at amphibian.dyndns.org Fri Feb 29 11:43:03 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 29 Feb 2008 11:43:03 +0000 Subject: [freenet-support] Unbundling Frost Message-ID: <200802291143.10299.toad@amphibian.dyndns.org> Ian has stated that Frost is a separate project, and we should not wait for a usable FMS. (Background: Frost has been severely DoS'ed recently due to being based on KSK queues, and FMS is the answer). Right now we are not actually being DoS'ed, but yesterday we were; the spammer occasionally takes a day off, but IMHO he's likely to stop spamming now until shortly before we ship 0.7.0, and then make Frost unusable again. 1) We could just not ship Frost, in order to meet Ian's totally arbitrary deadline (not that totally arbitrary deadlines aren't of some value!). However IMHO we will have *dramatically* less user retention if we don't have a usable chat client - at least on the order of 50%. This is because Freenet is a community, and no community can function without chat. 2) Or we could ship Frost even though we know it will probably be DoS'ed again, and may be being actively DoS'ed at the point that we ship it. In which case IMHO we should advise users about this fact in our announcement for 0.7.0. Maybe some good publicity will come from it - it could hardly be any worse than us shipping an application which is utterly useless, and each user having to figure that out themselves! Telling users will put them off ... but not telling users will also put them off. 3) Or we could make a working chat system of some kind a release blocker, and act accordingly: review third party code and help in porting FMS to java if that is necessary. At the moment FMS is written in C (and therefore not bundle-able), and uses a combination of HTTP and NNTP interfaces (and therefore is not user friendly). IMHO the critical path would be to translate it to java, implement it as a plugin, implement a separate plugin with a web interface based on that of Worst, bundle those, and let the Frost devs port Frost to use the plugin. Some of this has already been started, but I haven't seen much progress recently on the FMS board (which oddly is the only board never to have been DoS'ed). Important note: We are not quite ready to ship Freenet yet; there is a good deal more debugging needs to be done. IMHO we will be easily ready to ship a release candidate in March, although maybe not 0.7.0 (Ian's deadline is March). Freenet 0.7.0 is likely to be slashdotted; it may not get any wider coverage, since the world has moved on, but we will see. Last time, over two years ago, 0.5.0 got mentioned on ZD Business Week as well as slashdot. We need to make the best possible use of this opportunity - provided that it doesn't delay matters indefinitely. Opinions on which of the above options is most useful? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080229/cd651a2b/attachment.pgp From toad at amphibian.dyndns.org Fri Feb 29 16:50:45 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 29 Feb 2008 16:50:45 +0000 Subject: [freenet-support] Freenet 0.7 build 1115 Message-ID: <200802291650.50041.toad@amphibian.dyndns.org> Freenet 0.7 build 1115 is now available, and will be mandatory on Monday. Please upgrade. Changes: - Link level congestion control should work better. - More HTL changes: 10 hops at HTL 15, then 14 hops, then 4 hops at HTL 1. We will reduce the max HTL to 10 in the next build and that'll be it. - Increase the cooldown delay to 30 minutes. After a key at MaxRetries=-1 has been tried 3 times, it will not be tried again for 30 minutes. This means that polling clients such as FMS or Frost can happily queue requests with MaxRetries=-1 knowing the node will not flood the network with requests for them. Note that the key can be found during the 30 minutes through ULPRs. - Delete the freeHeap* options, they don't work and don't make sense. - More stats, and bugfixes. Also there have been improvements to the installer, XMLSpider, Thingamablog and the website. Please report any bugs you find to the bug tracker at https://bugs.freenetproject.org/ (or otherwise). Thank you for using Freenet. -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080229/10cc5f92/attachment.pgp From toad at amphibian.dyndns.org Fri Feb 29 18:46:41 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 29 Feb 2008 18:46:41 +0000 Subject: [freenet-support] Freenet 0.7 build 1116 Message-ID: <200802291846.46632.toad@amphibian.dyndns.org> Apologies for the new mandatory just after the last build, but it's worth it. Build 1116 has various improvements to connectivity for nodes with low MTUs and/or evil firewalls. Such nodes cannot successfully send or receive large UDP packets. Connecting to seednodes has always used such big packets, hence it hasn't worked for many newbies - especially newbies on wierd connections. This build implements support for a group lookup table; once this build is mandatory (Monday), I will implement the other half of this support, and we will be able to cut the size of the biggest seednode connection setup packets from ~ 1400 bytes to ~ 900 bytes. Hence anywhere you can connect via darknet you'll be able to connect via opennet. Of course, such connections may be problematic once you are connected; that's a larger problem which will be addressed after 0.7.0, but 1116 and 1117 should provide enough for a usable opennet connection in many more places than 1115. Please upgrade to 1116 asap. Thanks. And please report bugs to https://bugs.freenetproject.org . -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080229/a798cb79/attachment.pgp From toad at amphibian.dyndns.org Fri Feb 29 20:04:07 2008 From: toad at amphibian.dyndns.org (Matthew Toseland) Date: Fri, 29 Feb 2008 20:04:07 +0000 Subject: [freenet-support] [freenet-dev] Freenet 0.7 build 1116 In-Reply-To: <200802291846.46632.toad@amphibian.dyndns.org> References: <200802291846.46632.toad@amphibian.dyndns.org> Message-ID: <200802292004.14863.toad@amphibian.dyndns.org> 1117 is out with a bugfix to that code (and a fix for subdirs in implicit containers). Mandatory on Monday. Sorry folk. On Friday 29 February 2008 18:46, Matthew Toseland wrote: > Apologies for the new mandatory just after the last build, but it's worth it. > Build 1116 has various improvements to connectivity for nodes with low MTUs > and/or evil firewalls. Such nodes cannot successfully send or receive large > UDP packets. Connecting to seednodes has always used such big packets, hence > it hasn't worked for many newbies - especially newbies on wierd connections. > This build implements support for a group lookup table; once this build is > mandatory (Monday), I will implement the other half of this support, and we > will be able to cut the size of the biggest seednode connection setup packets > from ~ 1400 bytes to ~ 900 bytes. Hence anywhere you can connect via darknet > you'll be able to connect via opennet. Of course, such connections may be > problematic once you are connected; that's a larger problem which will be > addressed after 0.7.0, but 1116 and 1117 should provide enough for a usable > opennet connection in many more places than 1115. > > Please upgrade to 1116 asap. Thanks. And please report bugs to > https://bugs.freenetproject.org . > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://emu.freenetproject.org/pipermail/support/attachments/20080229/2da6d269/attachment.pgp