hey papampi and developers, love working with the OS and tweaking the build. I've been doing some work on v0019-2.0 lately trying to get a few coins to work and here's some issues i found.
For FTC coin i had to change 0miner to this below to make it work, it had incorrect miner listed
if [ $COIN == "FTC" ]
then
HCD='/home/m1/KTccminer/ccminer'
ADDR="$FTC_ADDRESS.$FTC_WORKER"
screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$FTC_POOL:$FTC_PORT -u $ADDR -p $MINER_PWD -i $FTC_INTENSITY
fi
To get XMR to work i had to do the following,
Added this to 0miner for XMR
if [ $COIN == "XMR" ]
then
HCD='/home/m1/KTccminer-cryptonight/ccminer'
ADDR="$XMR_ADDRESS.$XMR_WORKER"
screen -dmSL miner $HCD -o stratum+tcp://$XMR_POOL:$XMR_PORT -u $ADDR -p $MINER_PWD
fi
Section i had to comment out in 0miner for XMR, as I believe it was screwing with what i have above.
#if [ $COIN == "XMR" ]
#then
# HCD='/home/m1/xmr/stakGPU/bin/xmr-stak-nvidia'
# ADDR="$XMR_ADDRESS.$XMR_WORKER"
#
# GPUS_FOR_XMR=0
# echo "" > /home/m1/tmp_threads
#
# while [ $GPUS_FOR_XMR != $GPUS ]
# do
#
# cat <>/home/m1/tmp_threads
#{ "index" : $GPUS_FOR_XMR,
# "threads" : 32, "blocks" : 18,
# "bfactor" : 8, "bsleep" : 10,
# "affine_to_cpu" : false,
# },
...................................etc
In order to get XVG (lyra2rev2 algo) working had to put in auto intensity setting (0) as it had memory errors instantly. Is there any disadvantage to using auto intensity setting? I think it would help with people getting memory errors for having too high of intensity setting.
Addition to 1bash for XVG
# XVG ## No Need to add stratum+tcp:// to server address
XVG_WORKER="$WORKERNAME"
XVG_ADDRESS="add BTC address"
XVG_POOL="lyra2v2.mine.zpool.ca"
XVG_PORT="4533"
XVG_INTENSITY="0"
and this for Algo specific OC setting in 1bash
# lyra2vRev2
if [ $COIN == "MONA" -o $COIN == "VTC" -o $COIN == "XVG" ]
then
ALGORITHM="LYRA2REV2"
POWERLIMIT_WATTS=130
__CORE_OVERCLOCK=125
MEMORY_OVERCLOCK=600
fi
Added this to 0miner for XVG. Can also use $BTC_ADDRESS in place of $ADDR
if [ $COIN == "XVG" ]
then
HCD='/home/m1/ASccminer/ccminer'
ADDR="$XVG_ADDRESS"
screen -dmSL miner $HCD -a lyra2v2 -o stratum+tcp://$XVG_POOL:$XVG_PORT -u $ADDR -p c=XVG -i $XVG_INTENSITY
fi
After making these changes, i'm able to mine XMR and XVG successfully. Getting about 4700 h/s for XMR using Klaus and around 217 MH/s for XVG. Just wanted to give that feedback, thanks.