Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
damNmad
on 16/02/2018, 14:48:46 UTC
Does anyone know how i can start mining Ellasim with Nvoc 19.2. I currently mining Pirl, but can't seem to start mining Ella. 

I guess it was added in the later version of updates.

You can get all new coins from here :

1bash :

https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/19-2.1/1bash


0miner :

https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/19-2.1/0miner


Else, you can just add the ella parts from 1bash and 0miner, search for ELLA and copy the relevant parts.

to 1bash

Quote
#Ellaism ELLA
ELLA_WORKER="$WORKERNAME"
ELLA_ADDRESS="replace_with_your_address"
ELLA_POOL="replace_with_pool_address"
ELLA_PORT="replace_with_pool_port"
ELLA_EXTENSION_ARGUMENTS=""    # add any additional Claymore miner arguments here

to 0 miner

Quote
if [ $COIN == "ELLA" ]
then
  ELLAADDR="$ELLA_ADDRESS/$ELLA_WORKER"
  if [ $DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT == "DOT" ]
  then
    ELLAADDR="$ELLA_ADDRESS.$ELLA_WORKER"
  fi
  if [ $ETHASH_MINER == "GENOIL" ]
  then
    HCD='/home/m1/miners/Genoil-U/ethminer'
    screen -dmSL miner $HCD -S $ELLA_POOL:$ELLA_PORT -O $ELLAADDR:x -SP 1 -U $ELLA_EXTENSION_ARGUMENTS
  fi
  if [ $ETHASH_MINER == "ETHMINER" ]
  then
    HCD='/home/m1/miners/ethminer/latest/ethminer'
    screen -dmSL miner $HCD -S $ELLA_POOL:$ELLA_PORT -O $ELLAADDR:x -SP 1 -U $ELLA_EXTENSION_ARGUMENTS
  fi
  if [ $ETHASH_MINER == "CLAYMORE" ]
  then
    HCD=/home/m1/miners/claymore/$CLAYMORE_VERSION/ethdcrminer64
    screen -dmSL miner $HCD -epool $ELLA_POOL:$ELLA_PORT -ewal $ELLAADDR -epsw x -mode 1 -allpools 1 -dbg -1 $ELLA_EXTENSION_ARGUMENTS
  fi
fi

Hope it helps.