Search found 45 matches

by jogger
23 Apr 2019 13:21
Forum: I2PSnark
Topic: i2pSnark data directory configuration
Replies: 6
Views: 20252

Re: i2pSnark data directory configuration

You could run 2 Snark instances, see here http://zzz.i2p/topics/1374.

Or use Snark standalone multiple times, you will have to patch jetty for different Web UI ports.

Or use BiglyBT, which allows any complex configuration.
by jogger
15 Apr 2019 06:24
Forum: Router
Topic: Is there some documentation for the router.config options?
Replies: 4
Views: 19028

Re: Is there some documentation for the router.config options?

Some useful hints: routerconsole.advanced=true This will give you access to more options and enable you to change settings on the fly from /configadvanced without restarting. Useful for number of connections and tunnels. router.maxParticipatingTunnels= Best way to control bandwidth if you do not nee...
by jogger
27 Mar 2019 09:45
Forum: I2PSnark
Topic: Caution when migrating to Java 12
Replies: 0
Views: 15285

Caution when migrating to Java 12

I encountered a weird Java 12 error with OpenJDK compiled by myself on my Linux ARM32 machines. It does not open certain files (some of my videos) named like "my-video.mpg". All open fine with Java 11. I can not open those videos in the same video editor I used 2 years ago to cut them. Of ...
by jogger
17 Mar 2019 19:57
Forum: I2PSnark
Topic: Seeding a lot?
Replies: 4
Views: 19868

Re: Seeding a lot?

Update: Postman now allows 20480 pieces, thus further helping to keep piece sizes small.
by jogger
13 Dec 2018 20:29
Forum: I2PSnark
Topic: Seeding a lot?
Replies: 4
Views: 19868

Re: Seeding a lot?

Thanks for valuing my work. BiglBT is no such resource hog as people say, when run at i2p typical speeds of just a few 100 KB/s. Not recommended on Windoze at all. 600 MB RAM should be sufficient. Just enable classic mode and deinstall all addons except i2p. If your download came with an embedded JR...
by jogger
06 Dec 2018 09:22
Forum: I2PSnark
Topic: Seeding a lot?
Replies: 4
Views: 19868

Seeding a lot?

If you do, I suggest you take a look at BiglyBT. First of all BiglyBT does away with Snarks pesty unsafe characters feature, which causes it often not to check its own torrents clean. There is one character substitution by default within BiglyBT, which I suggest you delete first. You can then freely...
by jogger
06 Dec 2018 08:21
Forum: I2PSnark
Topic: Torrenting too slow?
Replies: 2
Views: 16811

Re: Torrenting too slow?

Sure a virtual machine will do. A powerful ARM linux box with case, power supply and SSD can be had for around $100 nowadays though.
by jogger
05 Dec 2018 19:36
Forum: I2PSnark
Topic: Torrenting too slow?
Replies: 2
Views: 16811

Torrenting too slow?

I am not going to open old discussions - just one fact. I am running quite a couple of i2p routers, all well tuned I think. I have two identical machines, 8 (virtual) cores, cloned config, firewalled, low cpu usage, enough RAM, seeding 100s of gigs worth of identical or similar torrents, uptime 18 d...
by jogger
31 Oct 2018 06:57
Forum: Router
Topic: Short hint for NFS users
Replies: 0
Views: 14219

Short hint for NFS users

Be sure to limit your NFS exports to the local subnet. Otherwise your log file will be clogged with misleading messages about your UDP peers complaining about an invalid ip address like"your.ip.add.ress:2049"
by jogger
06 Oct 2018 12:59
Forum: Guides
Topic: Tuning for high load under Linux
Replies: 2
Views: 9933

Re: Tuning for high load under Linux

The following script brings you 10 seconds views of the performance impacting context switches: #!/bin/bash oldpid=99999 while true do javapid=$(pidof java) if [ -z $javapid ] then sleep 300 continue fi if [ $javapid -ne $oldpid ] then credits=0 unset nonvol unset sum unset newsum unset names declar...