Someone can teach me how to mine from 3 different computers in the same wallet , pls note the computers have linux . Is there any option? Without using a pool I mean . Can I connect miners directly to my wallet?
I have a couple machines mining pointing at the same wallet on a linux box.
First your veriumd server needs a config file with something like this in it:
addnode=vrmsupernode3.vericoin.info
daemon=1
server=1
gen=0
rpcuser=user
rpcpassword=password
rpcport=36987
rpcallowip=127.0.0.1
rpcallowip=192.168.0.*
The important part is to allow rpc connections from other machines on your local network (the rpcallow=192.168.0.* line).
For my miners, I am using a cpuminer fork and the config(s) looks something like this:
{
"url" : "http://192.168.0.105:36987/",
"user" : "user",
"pass" : "password",
"algo" : "scrypt",
"threads" : "5",
"quiet" : true
}
Hopefully this will give you what you need to get started. It works great and I have been doing it since the launch. Mined about 325 VRM so far.