Ouch, we are speaking about a ram eater, it is possible then to mine it in a core2duo with 4gb of ram or it is a waste?
Dev have you think about to add the coin to some other pool?
thanks
Some people seem to be having trouble with the Windows CPUMiner, but on Linux cpuminer is using less than 50MB of RAM to mine on 8 hyperthreaded cores.
even on ubuntu the standalone miner gives me only 90-100 H/s per thread on my box, while setgenerate gives a little over 300 H/s per thread. I tried building the miner with VS2013 but the libs are missing.
yea i cant get it to build ether.
What error(s) are you getting?
sudo apt-get update
sudo apt-get install -y git curl gedit autoconf automake build-essential libtool libcurl4-openssl-dev libncurses5-dev pkg-config
git clone https://github.com/ocminer/cpuminer-multi-1
cd cpuminer-multi-1
./autogen.sh
./configure CFLAGS="-O3"
make
sudo make install [b]OPTIONAL, then you don't have to run with ./cpuminer since cpuminer will be located in something like /usr/local/bin/cpuminer[/b]
./cpuminer -a argon2 -o stratum+tcp://ar2.suprnova.cc:7095 -u username.worker -p password -t threads
Of course, you can change the above stratum+tcp://... to 127.0.0.1:5555 for local solomining if you have RPC set up correctly, and the username, password, and thread count need to be set.
As usual, I'd recommend putting it in a screen session so it doesn't die if you close your SSH window:
screen -S miner -d -m ./cpuminer -a argon2 -o stratum+tcp://ar2.suprnova.cc:7095 -u username.worker -p password -t threads
If the above doesn't work, install screen:
sudo apt-get install screen
This works fine on Ubuntu 14.04 fresh from an ISO.