Package Details: freenet 0.7.5.1497-1

Git Clone URL: https://aur.archlinux.org/freenet.git (read-only, click to copy)
Package Base: freenet
Description: A peer-to-peer platform for censorship-resistant communication and publishing
Upstream URL: https://freenetproject.org
Keywords: anonymous censorship encrypted freenet network
Licenses: GPL2
Submitter: Xemertix
Maintainer: Thynix
Last Packager: skydrome
Votes: 183
Popularity: 0.24
First Submitted: 2009-04-17 16:46 (UTC)
Last Updated: 2023-03-05 00:21 (UTC)

Dependencies (7)

Required by (0)

Sources (8)

Pinned Comments

amanvg commented on 2020-10-13 08:32 (UTC)

if you are having issues with the key, run this command:

curl -sS https://freenetproject.org/assets/keyring.gpg | gpg --import -

Latest Comments

« First ‹ Previous 1 .. 11 12 13 14 15 16 17 18 Next › Last »

sknd commented on 2014-01-14 19:56 (UTC)

in PKGBUILD, in line cp -aL ../bcprov-jdk15on-150.jar . there should be 149 instead of 150, otherwise build fails

exine commented on 2014-01-05 16:46 (UTC)

Thanks Andares! Well, this package have used bouncycastle 147 before and it crashed too. After using 150 it also crashed afterwards, but I had no time to check it. Thanks for the fix!

Andares commented on 2013-12-31 09:20 (UTC)

The package is broken. I've found that bcprov-jdk15on-150 causes Freenet to throw the following exception: java.lang.IllegalArgumentException: IV must be no more than 15 bytes at org.bouncycastle.crypto.modes.OCBBlockCipher.init(Unknown Source) at freenet.crypt.AEADOutputStream.(AEADOutputStream.java:44) Looking at the bouncycastle code, I saw that the 149 release only throws if IV is greater than 127 bytes. Therefore, the following workaround uses v149 instead of v150 and worked for me: 1. systemctl stop freenet 2. Change the last line of /opt/freenet/wrapper.conf to "wrapper.java.classpath.3=bcprov-jdk15on-149.jar" 3. wget http://www.bouncycastle.org/download/bcprov-jdk15on-149.jar in /opt/freenet 4. systemctl start freenet

grawity commented on 2013-12-27 13:43 (UTC)

Does this always install the latest build, or only the 0.7.5 release?

cros13 commented on 2013-09-18 15:28 (UTC)

needs 'bsprov' in depends

felixonmars commented on 2013-07-18 08:44 (UTC)

The two lines in freenet.service: ExecStart=/bin/su freenet -c "/opt/freenet/run.sh start" ExecStop=/bin/su freenet -c "/opt/freenet/run.sh stop" Could now be simplify to User=freenet ExecStart=/opt/freenet/run.sh start ExecStop=/opt/freenet/run.sh stop And you may add a "TimeoutSec=0" into the [Service] section to avoid timeout on first-time downloading.

Nikus commented on 2012-12-06 00:35 (UTC)

Finally, I removed the freenet-ext.jar and freenet-ext.jar.sha1 files. Then I ran the update.sh script. And after that, I managed to run freenet successfully. Maybe there is something to update in the package.

Nikus commented on 2012-12-05 22:25 (UTC)

I don't manage to start FreeNet : when I execute the following command : sudo su -c "/opt/freenet/run.sh start" freenet I get the following error in the /opt/freenet/wrapper.log file : Exception in thread "main" java.lang.NoClassDefFoundError: org/tanukisoftware/wrapper/WrapperListener Caused by: java.lang.ClassNotFoundException: org.tanukisoftware.wrapper.WrapperListener Any idea to correct the problem ?