Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
fullzero
on 18/06/2017, 15:44:02 UTC
Just made some changes to oneBash to test out if Lyra2v2 can be mined.  It works.

Code:
COIN="LYRA2V2"

Code:
LYRA2V2_WORKER="nvOC"
LYRA2V2_ADDRESS="bitcoin.wallet.address"
LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"


Implementation section.

Code:
if [ $COIN == "LYRA2V2" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$LYRA2V2_ADDRESS.$LYRA2V2_WORKER"

until $HCD -a lyra2v2 -o $LYRA2V2_POOL -u $ADDR -p x
   do
   echo "FAILURE; reinit in 5" >&2
   sleep 5
done
fi

  This is currently working with the SPccminer within the nvOC.  Although I hope to see CCminer2.0 implemented soon.  Or is there a way to insert our own miner software such as Alexis78?

I will add this "LYRA" config to the next version.

Alexis78 is on v0015; to use it instead of the SP fork, replace this line:

Code:
HCD='/home/m1/SPccminer/ccminer'

with:

Code:
HCD='/home/m1/ASccminer/ccminer'

to use the tpruvot fork change it to:

Code:
HCD='/home/m1/TPccminer/ccminer'


You can also add any client you want yourself.

If you send me a link to any desired client I will add it for the next version. 

Also include what pool and coin you plan on mining with the client.