hey guys, I am trying to run mining on my synology which is armv7 32 bit.
I downloaded burstcoin-jminer-0.4.4-SNAPSHOT.zip file and tried to run it.
But this is the error.
neo@bitcoinuser:~$ ls
README.txt burstcoin-jminer-0.4.4-SNAPSHOT.jar burstcoin-jminer-0.4.4-SNAPSHOT.zip jminer.properties run.bat run.sh
neo@bitcoinuser:~$ sh run.sh
Error: This Java instance does not support a 64-bit JVM.
Please install the desired version.
This is my java version btw
java version "1.7.0_101"
OpenJDK Runtime Environment (IcedTea 2.6.6) (7u101-2.6.6-2~deb8u1)
OpenJDK Zero VM (build 24.95-b01, interpreted mode)
Is 32 bit not supported??
Any help really appreciated
run.sh
java -jar -d64 -XX:+UseG1GC burstcoin-jminer-0.4.4-SNAPSHOT.jar
if you remove the
-d64 you will be able to use 32bit java.
it has forced 64bit, cause it may use a lot of memory, and 32bit can not address that much, so you may run in out of memory exceptions ... but you can try.
-luxe