Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
papampi
on 29/01/2018, 11:10:32 UTC
Hi Guys

Pap your WTM switch is not switching after the clean setup from the self expanding image. Script is running and tells me i switch from bla to bla but nothing happens in the miner window.

Any ideas?

greetings

I think i found the problem

Code:
if  [[ $ALGO_SPECIFIC_OC == "NO" && $plusCPU == "NO" ]] || [[ $ALGO_SPECIFIC_OC == "YES"  &&  $CURRENT_COIN_ALGORITHM == $TOP_COIN_ALGORITHM ]]; then

elif [[ $ALGO_SPECIFIC_OC == "YES"  &&  $CURRENT_COIN_ALGORITHM != $TOP_COIN_ALGORITHM ]]; then



I use $plusCPU but not $ALGO_SPECIFIC_OC. So there is no way the Switch can work.



Sorry
I had fixed that in my local update folder and GitHub, but forgot to make the change in compressed file for update script and image.
Remove the plusCPU and change it to

Code:
if  [[ $ALGO_SPECIFIC_OC == "NO"  ]] || [[ $ALGO_SPECIFIC_OC == "YES"  &&  $CURRENT_COIN_ALGORITHM == $TOP_COIN_ALGORITHM ]]; then

Fixed update script too.
Thanks for mentioning the problem.