Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.2
by
damNmad
on 07/10/2017, 06:40:08 UTC
Hey guys, can some1 guide me how to mine ZCoin?

Which version you are using currently?

ZCOIN has been added in v 19 (you can see version in the beginning of 1bash file )

If you want to add it to your current version; use the following:

Make sure you have your coin selected first in 1bash -
Code:
COIN="ZCOIN"

Add the pool and coin details in 1bash -

Code:
ZCOIN_WORKER="Your Miningpoolhub Worker Name"
ZCOIN_ADDRESS="replace_with_your_miningpoolhub_account login name"
ZCOIN_POOL="us-east.lyra2z-hub.miningpoolhub.com:20581"

This is the tricky bit; don't remember the exact version of nvOC but oneBash has been split into 1bash and 3main;

if you have oneBash add the below (& above) code in the right place.

If you can see 3main; add the below code in the right place of 3main.


Code:
if [ $COIN == "ZCOIN" ]
then
HCD='/home/m1/TPccminer/ccminer'

ADDR="$ZCOIN_ADDRESS.$ZCOIN_WORKER"

screen -dmS miner $HCD -a lyra2z -o $ZCOIN_POOL -u $ADDR -p x

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Feel free to ask any questions you have.