Bitcoin Forum
June 16, 2024, 06:20:38 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.3 on: October 18, 2017, 12:08:49 AM
I am new to this but have been mining ZEC for 10days now with no problems.  Tried to mine VTC several times and the miner runs smooth but my address and worker never shows up in the pool.  I can't find what I'm missing and been trying to figure it out on my own for several days. Below is the relevant 1bash and 3main info from my files.

3main

if [ $COIN == "VTC" ]
then
HCD='/home/m1/ASccminer/ccminer'
ADDR="$VTC_ADDRESS.$VTC_WORKER"

if [ $VTC_AUTOCONVERT_TO_BTC == "YES" ]
then
ADDR="$BTC_ADDRESS.$VTC_WORKER"

screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR c=BTC

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

if [ $VTC_AUTOCONVERT_TO_BTC == "NO" ]
then

screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR -p x c=VTC -i $VTC_INTENSITY

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
fi

--------------------------------------------------------

1bash

COIN="VTC"

Maxximus007_AUTO_TEMPERATURE_CONTROL="YES"

IAmNotAJeep_and_Maxximus007_WATCHDOG="YES"

# LOCAL will attach the mining process to the gnome or guake terminal
# REMOTE will leave it unattached / ready for SSH
LOCALorREMOTE="LOCAL"          # LOCAL  or  REMOTE

TEAMVIEWER="NO"                 # YES NO

SSH="YES"                       # YES NO

POWERLIMIT="NO"                 # YES NO

   POWERLIMIT_WATTS=200

__CORE_OVERCLOCK=50
MEMORY_OVERCLOCK=950

MANUAL_FAN="NO"                # YES NO

   FAN_SPEED=75                    # Set fan speed if MANUAL_FAN="YES"

# GLOBAL_WORKERNAME will use a single worker name for all coins
GLOBAL_WORKERNAME="NO"         # YES NO

   # HOST will use the rigs host address
   # MAC will use the rigs NIC's MAC address
   # CUSTOM will use your own
   AUTO_WORKERNAME="CUSTOM"         # HOST  or  MAC  or  CUSTOM

   # if AUTO_WORKERNAME="CUSTOM"
   CUSTOM_WORKERNAME="NICOSIN1"

# AUTO_UPDATE will enable your rig to pull updates
AUTO_UPDATE="NO"                # YES NO

   # BETA will pull the newest unverified updates
   # STABLE will only pull verified updates
   AUTO_UPDATE="STABLE"         # STABLE  or  BETA

   AUTO_UPDATE_TIMEOUT_IN_MINUTES=1440

_Parallax_MODE="NO"             # YES NO

   pasteBASH="uZNXXJuE"  #change for v0019

   upPASTE_TIMEOUT_IN_MINUTES=30

CLEAR_LOGS_ON_BOOT="YES"        # YES NO

BaliMiner_TELEGRAM_ALERTS="NO"           # YES NO
# ensure IAmNotAJeep_and_Maxximus007_WATCHDOG is set to "YES" if using TELEGRAM_ALERTS to ensure reboot telegrams
# use BotFather ( https://core.telegram.org/bots/api ) to make a new bot and get a CHATID and APIKEY
# BaliMiner is going to make a Guide (+ hopefully a video demonstrating how to set this up; it is not as straightforward as I expected it to be; but it is worth the time to have Telegram Alerts)

   TELEGRAM_TIMEOUT_IN_MINUTES=30

   TELEGRAM_CHATID="422650663"

   TELEGRAM_APIKEY="417738071:AAE7nwRoaJec4f6zMuK9W5dMmpQ_yAt6YAw"

# Mine XMR with CPU
plusCPU="NO"              # YES NO

   threadCOUNT="1"                 # Number of threads for plusCPU: varies per CPU

P106_100_FULL_HEADLESS_MODE="NO"

AUTO_REBOOT="NO"

   REBOOT_TIMEOUT_IN_MINUTES=1440  # once every 24 hours

# If you are using a slow USB Key
SLOW_USB_KEY_MODE="NO"           # YES NO

GPUPowerMizerMode_Adjust="NO"

   # Set PowerMizerMode
   GPUPowerMizerMode=1

SRR="NO"                        # YES NO
   SRR_SERIAL="000055"
   __SRR_SLOT="1"


#######################################################################################

# Maxximus007_AUTO_TEMPERATURE_CONTROL

# Set the target temperature; Recommended ranges: 55 - 75.  Don't set it too low, if the temperature can't be reached with fan adjustments it will decrease power.  If the actual temp is above the target temp this script will up the fan speed.  If actual temp is above value set above and fan speed is 100, the script will lower the power limit.

TARGET_TEMP=70

__FAN_ADJUST=5      # Adjustment size in percent

POWER_ADJUST=5      # Adjustment size in watts

# Difference in actual temperature allowed before action:  Works only if current is BELOW target temp

ALLOWED_TEMP_DIFF=3

# Restore original power limit if fan speed is lower than this percentage

RESTORE_POWER_LIMIT=90

# lowest fan speed that will be used

MINIMAL_FAN_SPEED=30

########################################################################################
#GLOBAL_WORKERNAME implementation
IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
if [ $GLOBAL_WORKERNAME == "YES" ]
then
if [ $AUTO_WORKERNAME == "HOST" ]
then
WORKERNAME=$IP_AS_WORKER
fi
if [ $AUTO_WORKERNAME == "MAC" ]
then
WORKERNAME=$MAC_AS_WORKER
fi
if [ $AUTO_WORKERNAME == "CUSTOM" ]
then
WORKERNAME=$CUSTOM_WORKERNAME
fi
fi

------------------------------------------------------

# if YES ensure you update BTC_ADDRESS
VTC_AUTOCONVERT_TO_BTC="NO"        #YES  NO
VTC_INTENSITY=20
VTC_WORKER="Nicosin1"
VTC_ADDRESS="Ve9krAbgcXQgDK882x8Cn3yrT7MLx9jpBp"
VTC_POOL="stratum+tcp://vtc.alwayshashing.com:9171"

This line from 3main seems to be issue to me

Code:
screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR -p x c=VTC -i $VTC_INTENSITY

I will debug it now and update in this comment in 5-10 mins, please wait

UPDATE :

Yes, that's the only difference i can point it out so far;

change the above line to the below :

Code:
screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR -p c=VTC -i $VTC_INTENSITY

Let me know if this has fixed your issue?
yes, that worked, MANY THANKS!  None of the other addresses have a Address.worker, they just have their VTC address.  Should i just remove the worker or is this OK.  Is there a different way alwayshashing wants workers?
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.3 on: October 17, 2017, 08:42:01 PM
I am new to this but have been mining ZEC for 10days now with no problems.  Tried to mine VTC several times and the miner runs smooth but my address and worker never shows up in the pool.  I can't find what I'm missing and been trying to figure it out on my own for several days. Below is the relevant 1bash and 3main info from my files.

3main

if [ $COIN == "VTC" ]
then
HCD='/home/m1/ASccminer/ccminer'
ADDR="$VTC_ADDRESS.$VTC_WORKER"

if [ $VTC_AUTOCONVERT_TO_BTC == "YES" ]
then
ADDR="$BTC_ADDRESS.$VTC_WORKER"

screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR c=BTC

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

if [ $VTC_AUTOCONVERT_TO_BTC == "NO" ]
then

screen -dmS miner $HCD -a lyra2v2 -o $VTC_POOL -u $ADDR -p x c=VTC -i $VTC_INTENSITY

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
fi

--------------------------------------------------------

1bash

COIN="VTC"

Maxximus007_AUTO_TEMPERATURE_CONTROL="YES"

IAmNotAJeep_and_Maxximus007_WATCHDOG="YES"

# LOCAL will attach the mining process to the gnome or guake terminal
# REMOTE will leave it unattached / ready for SSH
LOCALorREMOTE="LOCAL"          # LOCAL  or  REMOTE

TEAMVIEWER="NO"                 # YES NO

SSH="YES"                       # YES NO

POWERLIMIT="NO"                 # YES NO

   POWERLIMIT_WATTS=200

__CORE_OVERCLOCK=50
MEMORY_OVERCLOCK=950

MANUAL_FAN="NO"                # YES NO

   FAN_SPEED=75                    # Set fan speed if MANUAL_FAN="YES"

# GLOBAL_WORKERNAME will use a single worker name for all coins
GLOBAL_WORKERNAME="NO"         # YES NO

   # HOST will use the rigs host address
   # MAC will use the rigs NIC's MAC address
   # CUSTOM will use your own
   AUTO_WORKERNAME="CUSTOM"         # HOST  or  MAC  or  CUSTOM

   # if AUTO_WORKERNAME="CUSTOM"
   CUSTOM_WORKERNAME="NICOSIN1"

# AUTO_UPDATE will enable your rig to pull updates
AUTO_UPDATE="NO"                # YES NO

   # BETA will pull the newest unverified updates
   # STABLE will only pull verified updates
   AUTO_UPDATE="STABLE"         # STABLE  or  BETA

   AUTO_UPDATE_TIMEOUT_IN_MINUTES=1440

_Parallax_MODE="NO"             # YES NO

   pasteBASH="uZNXXJuE"  #change for v0019

   upPASTE_TIMEOUT_IN_MINUTES=30

CLEAR_LOGS_ON_BOOT="YES"        # YES NO

BaliMiner_TELEGRAM_ALERTS="NO"           # YES NO
# ensure IAmNotAJeep_and_Maxximus007_WATCHDOG is set to "YES" if using TELEGRAM_ALERTS to ensure reboot telegrams
# use BotFather ( https://core.telegram.org/bots/api ) to make a new bot and get a CHATID and APIKEY
# BaliMiner is going to make a Guide (+ hopefully a video demonstrating how to set this up; it is not as straightforward as I expected it to be; but it is worth the time to have Telegram Alerts)

   TELEGRAM_TIMEOUT_IN_MINUTES=30

   TELEGRAM_CHATID="422650663"

   TELEGRAM_APIKEY="417738071:AAE7nwRoaJec4f6zMuK9W5dMmpQ_yAt6YAw"

# Mine XMR with CPU
plusCPU="NO"              # YES NO

   threadCOUNT="1"                 # Number of threads for plusCPU: varies per CPU

P106_100_FULL_HEADLESS_MODE="NO"

AUTO_REBOOT="NO"

   REBOOT_TIMEOUT_IN_MINUTES=1440  # once every 24 hours

# If you are using a slow USB Key
SLOW_USB_KEY_MODE="NO"           # YES NO

GPUPowerMizerMode_Adjust="NO"

   # Set PowerMizerMode
   GPUPowerMizerMode=1

SRR="NO"                        # YES NO
   SRR_SERIAL="000055"
   __SRR_SLOT="1"


#######################################################################################

# Maxximus007_AUTO_TEMPERATURE_CONTROL

# Set the target temperature; Recommended ranges: 55 - 75.  Don't set it too low, if the temperature can't be reached with fan adjustments it will decrease power.  If the actual temp is above the target temp this script will up the fan speed.  If actual temp is above value set above and fan speed is 100, the script will lower the power limit.

TARGET_TEMP=70

__FAN_ADJUST=5      # Adjustment size in percent

POWER_ADJUST=5      # Adjustment size in watts

# Difference in actual temperature allowed before action:  Works only if current is BELOW target temp

ALLOWED_TEMP_DIFF=3

# Restore original power limit if fan speed is lower than this percentage

RESTORE_POWER_LIMIT=90

# lowest fan speed that will be used

MINIMAL_FAN_SPEED=30

########################################################################################
#GLOBAL_WORKERNAME implementation
IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
if [ $GLOBAL_WORKERNAME == "YES" ]
then
if [ $AUTO_WORKERNAME == "HOST" ]
then
WORKERNAME=$IP_AS_WORKER
fi
if [ $AUTO_WORKERNAME == "MAC" ]
then
WORKERNAME=$MAC_AS_WORKER
fi
if [ $AUTO_WORKERNAME == "CUSTOM" ]
then
WORKERNAME=$CUSTOM_WORKERNAME
fi
fi

------------------------------------------------------

# if YES ensure you update BTC_ADDRESS
VTC_AUTOCONVERT_TO_BTC="NO"        #YES  NO
VTC_INTENSITY=20
VTC_WORKER="Nicosin1"
VTC_ADDRESS="Ve9krAbgcXQgDK882x8Cn3yrT7MLx9jpBp"
VTC_POOL="stratum+tcp://vtc.alwayshashing.com:9171"
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!