Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
fullzero
on 22/06/2017, 00:51:49 UTC
Fantastic work. Really liking the build.

I ran into the problem where my over clocks were not getting set, but your fix seemed to correct that (started with one gpu before putting more in). After the fix, the gpufan error messages (I saw others were having that) are still showing up. Not a big issue since it looks like the fans are dynamic and should adjust up.

One suggestion for the next build, can you add ZEN cash to the list of available coins?
You can add it to oneBash yourself if you want to mine ZEN now:
Add your ZEN pool and address around line 86 the following:
Code:
ZEN_WORKER="nvOC"
ZEN_ADDRESS="your_address"
ZEN_POOL="mining.miningspeed.com"
ZEN_PORT="3063"

Add around line 815 the following block:
Code:
if [ $COIN == "ZEN" ]
then
HCD='/home/m1/zec/miner'
ZENADDR="$ZEN_ADDRESS.$ZEN_WORKER"
until $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $ZEN_POOL --user $ZENADDR --pass z --port $ZEN_PORT;
   do
   echo "FAILURE; reinit in 5" >&2
   sleep 5
done
fi

Set COIN="ZEN" on line 22 and there you go.
Good tuning : thank you.

Other than added version selection code; this is exactly how I implemented ZEN in v0016. 

Whenever a coin uses the same algo as another you can make your own COIN selection as Maxximus007 did here.