Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
papampi
on 11/09/2017, 06:39:07 UTC
Can you mine with Skein multi algo on CCminer Alexis connected to zpool?

I have 10x 1080ti but windows can only support 8 so far so the other two just being idle in the box..

Is it possible to do it on nvOC as the above with 10 GPUs?

If so where can I find instructions?

Thanks  Smiley

We have a ccminer version from alexis 78 in /home/m1/ASccminer
Add these configs to appropriate locations :


Zpool skein with ccminer Alexis78 :

(Not tested yet, please check and post result)

1bash:

Code:
COIN="ZPOOL_SKEIN"

Code:
# ZPOOL uses your BTC_ADDRESS
ZPOOL_SKEIN_POOL="stratum+tcp://skein.mine.zpool.ca:4933"


3main:

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

screen -dmS miner $HCD -a skein -o $ZPOOL_SKEIN_POOL -u $BTC_ADDRESS -p $WORKERNAME,c=BTC
 
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
 
BITCOIN="theGROUND"
 
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi