Bitcoin Forum
August 14, 2025, 01:24:06 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 [258] 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 ... 352 »
  Print  
Author Topic: [ mining os ] nvoc  (Read 418568 times)
killeriq
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
December 27, 2017, 11:51:14 PM
 #5141

Hello,

Im using water cooling rig system and ive realised that when cards get bit hotter it increase power take (PSU is getting louder).

I would like to keep "RESTORE_POWER_LIMIT" but in relation to TEMP not the FAN speed (as there are none)

How can i do that? if the card get hot im getting this:

Code:
2017-12-27 11:36:09 PM|>  GPU2  51C  Sol/s: 653.3  Sol/W: 3.92  Avg: 664.1  I/s: 353.6  Sh: 0.34   0.98 43
2017-12-27 11:36:09 PM|gpu_id 7 65 0 an illegal memory access was encountered
2017-12-27 11:36:09 PM|gpu 7 unresponsive - check overclocking
2017-12-27 11:36:09 PM|cudaMemcpy 1 failed


I assume if i put like this it could help a bit but is not perfect for my setup

Thanks

Code:
MANUAL_FAN="YES"             # YES or NO # Manually set the fans, no auto adjustment. Set this to NO if using the auto MINER_TEMP_CONTROL

FAN_SPEED=0                # Set fan speed percentage if MANUAL_FAN="YES" (Do not write the % sign)

MINER_TEMP_CONTROL="NO"    # YES or NO # Automatically adjusts the fan speed to keep the desired temp. Highly recommended to use this!


########################################################
#                                                      #
# MINER_TEMP_CONTROL settings                          #
#                                                      #
########################################################

# Automatically adjusts the fan speed to keep the desired target temp. If the actual temp is above the target temp this script will increase the fan speed. If the actual temp is 2C below the target temp this script will reduce the fan speed. If the target temperature can't be reached with fan adjustments it will decrease the Power Limit. If actual temp is above the desired target temp and fan speed is already at 100%, the script will lower the Power Limit. Once the target temp is reached, Power Limit will be restored.

TARGET_TEMP=70              # Set the desired target temperature in Celsius. Recommended ranges: 55 - 75

ALLOWED_TEMP_DIFF=4         # If current temp is 2C below the target temp reduce the fan speed. Works only if current temp is below target temp

MINIMAL_FAN_SPEED=0        # Lowest fan speed that will be used. Recommended ranges: 40 - 60

__FAN_ADJUST=0              # Fan adjustment size in percent

POWER_ADJUST=5              # Adjustment size in watts. If the target temp can not be achieved and fan is already at 100%, reduce Power Limit

RESTORE_POWER_LIMIT=90      # Restore original Power Limit if fan speed is lower than this percentage. Recommended: 90

Restore power limit happens after fan speed hit 100% and temp control lowers power limit to keep it cool.

This is how it works.
When GPU goes over target temp, temp control starts raising fan speed to get gpu cooler until fan speed reach 100% then if GPU temp has not drop below limit yet it starts dropping power to cool down GPU, when gpu temp reached target temp it start lowering fan speed and when fan speed reached 90 it restore the original power limit.

But since you have no fans things get complicated for temp control to control things, may be Leenoox could find a way for water cooling systems.

Thanks for explaining...

could u also tell if this part:
Code:
2017-12-27 11:36:09 PM|>  GPU2  51C  Sol/s: 653.3  Sol/W: 3.92  Avg: 664.1  I/s: 353.6  Sh: 0.34   0.98 43
2017-12-27 11:36:09 PM|gpu_id 7 65 0 an illegal memory access was encountered
2017-12-27 11:36:09 PM|gpu 7 unresponsive - check overclocking
2017-12-27 11:36:09 PM|cudaMemcpy 1 failed

Is due to high temp and some nvOC setting / protection or its pure card failure due to temp over some limit?

Thing is im also heating water with those cards at home so for some time i would like to keep them running lets say on 60C, this was normal temperature on AIR, but i had also bit lower clocks, on water they are almost 7--10% faster on sols.

thanks
CryptAtomeTrader44
Full Member
***
Offline Offline

Activity: 340
Merit: 103

It is easier to break an atom than partialities AE


View Profile
December 28, 2017, 12:12:39 AM
 #5142

For equihash miners, It's a bit off topic but it can probably shed light on Zclassic's violent and sudden rise this day:

Here is a news that explain the great raise of ZCL this day :
https://medium.com/chain-intelligence/the-resurgence-of-zcl-and-an-upcoming-hardfork-3ba65de3cf21

hardfok is comming on this currencie :

"While the fork wasn’t ready by Christmas eve, development is currently under progress and the date for the snapshot will likely be near mid January or the end of January.

At the high level, the plan is the following:

    Circulating BTC = 17 million, Circulating ZCL = 2 million.
    The ZClassic coin will be migrated to become a Bitcoin hard-fork “Bitcoin Private” or “BTCP” by dropping coinbase inputs into the blockchain as a hard-fork.
    This way, holders of BTC (or BCH) will receive BTCP in a 1:1 ratio and holders of ZCL will receive BTCP in a 1:1 ratio as well.
    The community is still in the process of deciding the details of the fork, choosing between non-SegWit BTC addresses and BCH addresses.
    BTCP will regardless be a fork of Bitcoin, and the first purely privacy focused Bitcoin fork driven by the community itself. Its circulation will be roughly 19 million at the time of the drop."


I took my benefits now, this night. I hope i will profit of segweet2x BTC hardforkthis night too

papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
December 28, 2017, 09:37:30 AM
 #5143

Hello,

Im using water cooling rig system and ive realised that when cards get bit hotter it increase power take (PSU is getting louder).

I would like to keep "RESTORE_POWER_LIMIT" but in relation to TEMP not the FAN speed (as there are none)

How can i do that? if the card get hot im getting this:

Code:
2017-12-27 11:36:09 PM|>  GPU2  51C  Sol/s: 653.3  Sol/W: 3.92  Avg: 664.1  I/s: 353.6  Sh: 0.34   0.98 43
2017-12-27 11:36:09 PM|gpu_id 7 65 0 an illegal memory access was encountered
2017-12-27 11:36:09 PM|gpu 7 unresponsive - check overclocking
2017-12-27 11:36:09 PM|cudaMemcpy 1 failed


I assume if i put like this it could help a bit but is not perfect for my setup

Thanks

Code:
MANUAL_FAN="YES"             # YES or NO # Manually set the fans, no auto adjustment. Set this to NO if using the auto MINER_TEMP_CONTROL

FAN_SPEED=0                # Set fan speed percentage if MANUAL_FAN="YES" (Do not write the % sign)

MINER_TEMP_CONTROL="NO"    # YES or NO # Automatically adjusts the fan speed to keep the desired temp. Highly recommended to use this!


########################################################
#                                                      #
# MINER_TEMP_CONTROL settings                          #
#                                                      #
########################################################

# Automatically adjusts the fan speed to keep the desired target temp. If the actual temp is above the target temp this script will increase the fan speed. If the actual temp is 2C below the target temp this script will reduce the fan speed. If the target temperature can't be reached with fan adjustments it will decrease the Power Limit. If actual temp is above the desired target temp and fan speed is already at 100%, the script will lower the Power Limit. Once the target temp is reached, Power Limit will be restored.

TARGET_TEMP=70              # Set the desired target temperature in Celsius. Recommended ranges: 55 - 75

ALLOWED_TEMP_DIFF=4         # If current temp is 2C below the target temp reduce the fan speed. Works only if current temp is below target temp

MINIMAL_FAN_SPEED=0        # Lowest fan speed that will be used. Recommended ranges: 40 - 60

__FAN_ADJUST=0              # Fan adjustment size in percent

POWER_ADJUST=5              # Adjustment size in watts. If the target temp can not be achieved and fan is already at 100%, reduce Power Limit

RESTORE_POWER_LIMIT=90      # Restore original Power Limit if fan speed is lower than this percentage. Recommended: 90

Restore power limit happens after fan speed hit 100% and temp control lowers power limit to keep it cool.

This is how it works.
When GPU goes over target temp, temp control starts raising fan speed to get gpu cooler until fan speed reach 100% then if GPU temp has not drop below limit yet it starts dropping power to cool down GPU, when gpu temp reached target temp it start lowering fan speed and when fan speed reached 90 it restore the original power limit.

But since you have no fans things get complicated for temp control to control things, may be Leenoox could find a way for water cooling systems.

Thanks for explaining...

could u also tell if this part:
Code:
2017-12-27 11:36:09 PM|>  GPU2  51C  Sol/s: 653.3  Sol/W: 3.92  Avg: 664.1  I/s: 353.6  Sh: 0.34   0.98 43
2017-12-27 11:36:09 PM|gpu_id 7 65 0 an illegal memory access was encountered
2017-12-27 11:36:09 PM|gpu 7 unresponsive - check overclocking
2017-12-27 11:36:09 PM|cudaMemcpy 1 failed

Is due to high temp and some nvOC setting / protection or its pure card failure due to temp over some limit?

Thing is im also heating water with those cards at home so for some time i would like to keep them running lets say on 60C, this was normal temperature on AIR, but i had also bit lower clocks, on water they are almost 7--10% faster on sols.

thanks


Illegal memory access is usually because of high MC values, I suggest lower it and test

hdmark
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
December 28, 2017, 11:10:37 AM
Last edit: December 28, 2017, 11:26:01 AM by hdmark
 #5144

Is anyone else having issues with 19-2.0 auto temp?  When the miner restarts after a switch, it wont auto control the fans until i manually click "enable gpu fan settings" in nvidia server x

in miner temp control i get :
Error: error assigning value 33 to attribute 'GPUTargetFanSpeed'
(m1-desktop:0[fan:0]) as specified in assignment
'[fan:0]/GPUTargetFanSpeed=33' (unknown error)
lards
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
December 28, 2017, 01:18:25 PM
 #5145

Hi guys,

Met a new problem lately with 1bash being unable to read or open with the error saying :

" Error reading lock file ./.1bash.swp: Not enough data read"

Has anybody seen this before and how to solve this? I don't want to reinstall the whole OS just because of 1bash isn't opening. The miner works fine and been on for over 10 days but I can't change any settings or anything due to this problem.

Its usually a swp file created when editing with nano and stoped nano with ctrl-z instead of exiting
Remove the file with:
Code:
rm .1bash.swp


Thanks for your quick response but the command you gave doesn't do anything , I've tried the same with sudo and my file name but with no success.

Are there any alternative ways to solve this?
rooihond
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
December 28, 2017, 01:21:49 PM
 #5146

Is anyone else having issues with 19-2.0 auto temp?  When the miner restarts after a switch, it wont auto control the fans until i manually click "enable gpu fan settings" in nvidia server x

in miner temp control i get :
Error: error assigning value 33 to attribute 'GPUTargetFanSpeed'
(m1-desktop:0[fan:0]) as specified in assignment
'[fan:0]/GPUTargetFanSpeed=33' (unknown error)

Just checked after upgrading one rig. Exactly the same symptoms as you getting .

Thanks for the "enable gpu fan settings" tip. At least we can keep mining until we figure it out.
hdmark
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
December 28, 2017, 02:18:08 PM
 #5147

Is anyone else having issues with 19-2.0 auto temp?  When the miner restarts after a switch, it wont auto control the fans until i manually click "enable gpu fan settings" in nvidia server x

in miner temp control i get :
Error: error assigning value 33 to attribute 'GPUTargetFanSpeed'
(m1-desktop:0[fan:0]) as specified in assignment
'[fan:0]/GPUTargetFanSpeed=33' (unknown error)

Just checked after upgrading one rig. Exactly the same symptoms as you getting .

Thanks for the "enable gpu fan settings" tip. At least we can keep mining until we figure it out.


Just FYI, if it fails and has to restart, you'll need to recheck it. For some reason, It was re running the setup and I'd lose temp control again. I just went back to 19.4
kk003
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
December 28, 2017, 02:30:40 PM
Last edit: December 28, 2017, 02:42:49 PM by kk003
 #5148

Hi guys,

Met a new problem lately with 1bash being unable to read or open with the error saying :

" Error reading lock file ./.1bash.swp: Not enough data read"

Has anybody seen this before and how to solve this? I don't want to reinstall the whole OS just because of 1bash isn't opening. The miner works fine and been on for over 10 days but I can't change any settings or anything due to this problem.

Its usually a swp file created when editing with nano and stoped nano with ctrl-z instead of exiting
Remove the file with:
Code:
rm .1bash.swp


Thanks for your quick response but the command you gave doesn't do anything , I've tried the same with sudo and my file name but with no success.

Are there any alternative ways to solve this?

Please as user m1 do:
Code:
ls -al *bash

and paste output here.
Thx
rooihond
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
December 28, 2017, 04:11:27 PM
 #5149

Is anyone else having issues with 19-2.0 auto temp?  When the miner restarts after a switch, it wont auto control the fans until i manually click "enable gpu fan settings" in nvidia server x

in miner temp control i get :
Error: error assigning value 33 to attribute 'GPUTargetFanSpeed'
(m1-desktop:0[fan:0]) as specified in assignment
'[fan:0]/GPUTargetFanSpeed=33' (unknown error)

Just checked after upgrading one rig. Exactly the same symptoms as you getting .

Thanks for the "enable gpu fan settings" tip. At least we can keep mining until we figure it out.


Just FYI, if it fails and has to restart, you'll need to recheck it. For some reason, It was re running the setup and I'd lose temp control again. I just went back to 19.4

Yes thanks, I saw that.

Odd, I'll do a full installation from scratch when I have time and see if it solves the problem (I Presume so)

lards
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
December 28, 2017, 04:34:34 PM
 #5150

Hi guys,

Met a new problem lately with 1bash being unable to read or open with the error saying :

" Error reading lock file ./.1bash.swp: Not enough data read"

Has anybody seen this before and how to solve this? I don't want to reinstall the whole OS just because of 1bash isn't opening. The miner works fine and been on for over 10 days but I can't change any settings or anything due to this problem.

Its usually a swp file created when editing with nano and stoped nano with ctrl-z instead of exiting
Remove the file with:
Code:
rm .1bash.swp


Thanks for your quick response but the command you gave doesn't do anything , I've tried the same with sudo and my file name but with no success.

Are there any alternative ways to solve this?

Please as user m1 do:
Code:
ls -al *bash

and paste output here.
Thx

m1@m1-desktop:~$ ls -al *bash
-rw-r--r-- 1 m1 m1 79986 Nov 13 17:03 1bash


This is what I get when using your command
kk003
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
December 28, 2017, 05:34:03 PM
Last edit: December 28, 2017, 06:05:13 PM by kk003
 #5151

Hi guys,

Met a new problem lately with 1bash being unable to read or open with the error saying :

" Error reading lock file ./.1bash.swp: Not enough data read"

Has anybody seen this before and how to solve this? I don't want to reinstall the whole OS just because of 1bash isn't opening. The miner works fine and been on for over 10 days but I can't change any settings or anything due to this problem.

Its usually a swp file created when editing with nano and stoped nano with ctrl-z instead of exiting
Remove the file with:
Code:
rm .1bash.swp


Thanks for your quick response but the command you gave doesn't do anything , I've tried the same with sudo and my file name but with no success.

Are there any alternative ways to solve this?

Please as user m1 do:
Code:
ls -al *bash

and paste output here.
Thx

m1@m1-desktop:~$ ls -al *bash
-rw-r--r-- 1 m1 m1 79986 Nov 13 17:03 1bash


This is what I get when using your command

Ok, do a ls -al of the .swp file and post the output please.

You may try to install mc (apt-get install mc), run like this:
Code:
mc


And see if you can delete the file (F8 over the file) or post the error mc says.

That "./" is weird
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
December 28, 2017, 06:27:19 PM
Last edit: December 29, 2017, 05:07:00 AM by damNmad
 #5152

For equihash miners, It's a bit off topic but it can probably shed light on Zclassic's violent and sudden rise this day:

Here is a news that explain the great raise of ZCL this day :
https://medium.com/chain-intelligence/the-resurgence-of-zcl-and-an-upcoming-hardfork-3ba65de3cf21

hardfok is comming on this currencie :

"While the fork wasn’t ready by Christmas eve, development is currently under progress and the date for the snapshot will likely be near mid January or the end of January.

At the high level, the plan is the following:

    Circulating BTC = 17 million, Circulating ZCL = 2 million.
    The ZClassic coin will be migrated to become a Bitcoin hard-fork “Bitcoin Private” or “BTCP” by dropping coinbase inputs into the blockchain as a hard-fork.
    This way, holders of BTC (or BCH) will receive BTCP in a 1:1 ratio and holders of ZCL will receive BTCP in a 1:1 ratio as well.
    The community is still in the process of deciding the details of the fork, choosing between non-SegWit BTC addresses and BCH addresses.
    BTCP will regardless be a fork of Bitcoin, and the first purely privacy focused Bitcoin fork driven by the community itself. Its circulation will be roughly 19 million at the time of the drop."


I took my benefits now, this night. I hope i will profit of segweet2x BTC hardforkthis night too



Wow, very nice and informative, I was shell shocked by seeing the rise of ZCL, so I have like 20 ZCL bought long long ago, so I need to keep them in the desktop wallet to get BTCP??

Can some one guide me the best way to proceed and get my benefit Cheesy

BUT, why on earth these forks happening (any real purpose!!)? hope they stop these meaning less forks soon...

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
hurvajs77
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
December 29, 2017, 01:04:32 AM
 #5153

Here is the Klaust ccminer v 8.17 compiled with cuda 8
So far I get so much better neoscrypt hashrate with it
SPccminer was giving me around 400 with 1060 and KT is giving me more than 630


KTccminer-v8.17

Download, extract and copy it to /home/m1/KTccminer folder.
Please test and check before replacing your old version.

Change 0miner for the coins you want it to be the default miner.

Any one testing KlausT ccminer 8.17 please report your hashrate and changes to default miners so we can change the default miners if its better on those coins.
Thanks.

 Smiley Smiley Smiley thanks Smiley Smiley Smiley

my hash rate on 1070 were about 1100kH/s, with KTccminer v8.17 are hash rates about 1280kH/s... Excellent :-)

5x Zotac 1070
Code:
[2017-12-29 02:02:37] accepted: 19/19 (100.00%), 6413.03 kH/s yay!!!
[2017-12-29 02:02:40] GPU #3: Zotac GTX 1070, 1284.14 kH/s
[2017-12-29 02:02:40] GPU #1: Zotac GTX 1070, 1288.12 kH/s
[2017-12-29 02:02:40] GPU #4: Zotac GTX 1070, 1279.40 kH/s
[2017-12-29 02:02:40] GPU #0: Zotac GTX 1070, 1268.48 kH/s
[2017-12-29 02:02:40] GPU #2: Zotac GTX 1070, 1273.72 kH/s
[2017-12-29 02:02:51] GPU #0: Zotac GTX 1070, 1277.30 kH/s
[2017-12-29 02:02:51] accepted: 20/20 (100.00%), 6411.26 kH/s yay!!!
[2017-12-29 02:03:04] GPU #4: Zotac GTX 1070, 1279.82 kH/s
[2017-12-29 02:03:04] accepted: 21/21 (100.00%), 6411.14 kH/s yay!!!
[2017-12-29 02:03:04] GPU #3: Zotac GTX 1070, 1286.11 kH/s
[2017-12-29 02:03:05] GPU #2: Zotac GTX 1070, 1275.07 kH/s
[2017-12-29 02:03:05] GPU #1: Zotac GTX 1070, 1284.76 kH/s
[2017-12-29 02:03:08] GPU #2: Zotac GTX 1070, 1277.51 kH/s
[2017-12-29 02:03:08] accepted: 22/22 (100.00%), 6410.67 kH/s yay!!!
[2017-12-29 02:03:08] GPU #1: Zotac GTX 1070, 1281.44 kH/s
[2017-12-29 02:03:08] accepted: 23/23 (100.00%), 6410.38 kH/s yay!!!
papilyn
Member
**
Offline Offline

Activity: 210
Merit: 10


View Profile
December 29, 2017, 01:08:17 AM
 #5154

im reading almost the whole thread and cant find the way to add new coins like Verge XVG. thanks in advance.

damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
December 29, 2017, 03:18:19 AM
 #5155

im reading almost the whole thread and cant find the way to add new coins like Verge XVG. thanks in advance.

I think XVG is already added before, i can see it on my 1.4 version.

Not sure which version you are using! You can add using the following instructions, if you are using 1.4 version.

Quote
COIN="XVG"

Add coin details in 1bash, used miningpoolhub pool

Quote
XVG_WORKER="Your Miningpoolhub Worker Name"
XVG_ADDRESS="Your Miningpoolhub account name"
XVG_POOL="hub.miningpoolhub.com:20523"
XVG_INTENSITY="21"

Add this in 3main

Quote
if [ $COIN == "XVG" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$XVG_ADDRESS.$XVG_WORKER"

screen -dmSL miner $HCD -a scrypt -o $XVG_POOL -u $ADDR -p x -i $XVG_INTENSITY

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

BITCOIN="theGROUND"

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

Sorry if you are not using this version, let me know your version, i will try to give instructions for that!

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
JayneL
Member
**
Offline Offline

Activity: 104
Merit: 10


View Profile
December 29, 2017, 03:22:58 AM
 #5156

Here is the Klaust ccminer v 8.17 compiled with cuda 8
So far I get so much better neoscrypt hashrate with it
SPccminer was giving me around 400 with 1060 and KT is giving me more than 630


KTccminer-v8.17

Download, extract and copy it to /home/m1/KTccminer folder.
Please test and check before replacing your old version.

Change 0miner for the coins you want it to be the default miner.

Any one testing KlausT ccminer 8.17 please report your hashrate and changes to default miners so we can change the default miners if its better on those coins.
Thanks.

 Smiley Smiley Smiley thanks Smiley Smiley Smiley

my hash rate on 1070 were about 1100kH/s, with KTccminer v8.17 are hash rates about 1280kH/s... Excellent :-)

5x Zotac 1070
Code:
[2017-12-29 02:02:37] accepted: 19/19 (100.00%), 6413.03 kH/s yay!!!
[2017-12-29 02:02:40] GPU #3: Zotac GTX 1070, 1284.14 kH/s
[2017-12-29 02:02:40] GPU #1: Zotac GTX 1070, 1288.12 kH/s
[2017-12-29 02:02:40] GPU #4: Zotac GTX 1070, 1279.40 kH/s
[2017-12-29 02:02:40] GPU #0: Zotac GTX 1070, 1268.48 kH/s
[2017-12-29 02:02:40] GPU #2: Zotac GTX 1070, 1273.72 kH/s
[2017-12-29 02:02:51] GPU #0: Zotac GTX 1070, 1277.30 kH/s
[2017-12-29 02:02:51] accepted: 20/20 (100.00%), 6411.26 kH/s yay!!!
[2017-12-29 02:03:04] GPU #4: Zotac GTX 1070, 1279.82 kH/s
[2017-12-29 02:03:04] accepted: 21/21 (100.00%), 6411.14 kH/s yay!!!
[2017-12-29 02:03:04] GPU #3: Zotac GTX 1070, 1286.11 kH/s
[2017-12-29 02:03:05] GPU #2: Zotac GTX 1070, 1275.07 kH/s
[2017-12-29 02:03:05] GPU #1: Zotac GTX 1070, 1284.76 kH/s
[2017-12-29 02:03:08] GPU #2: Zotac GTX 1070, 1277.51 kH/s
[2017-12-29 02:03:08] accepted: 22/22 (100.00%), 6410.67 kH/s yay!!!
[2017-12-29 02:03:08] GPU #1: Zotac GTX 1070, 1281.44 kH/s
[2017-12-29 02:03:08] accepted: 23/23 (100.00%), 6410.38 kH/s yay!!!

Which NVOC image u using? can u share it with me?

Please anyone know how to update my nvoc 19 to cuda 9? please help tnx more power
WaveFront
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile
December 29, 2017, 05:28:39 AM
 #5157

Hello,
I am mining using the WTM_AUTO_SWITCH on two coins.
After few days of work I have the impression that the auto switch process hangs as the coin are not switched anymore (no matter of the changes in whattomine.com) and the information on ./nvOC wtm-log doesn't get updated anymore.

Any idea of what might be the cause?

here is my software configuration:
Software info:
Report ver    :  v0019-2.0.002
nvOC (1bash)  :  nvOC v0019-2.0 - Community Release
nvOC (3main)  :  nvOC v0019-2.0 - Community Release   
1bash ver     :  v0019-2.0.003
3main ver     :  v0019-2.0.006                   
5watchdog ver :  v0019-2.0.011   
6tempcontrol v:  v0019-2.0.003   
wtm switch ver:  v0019-2.0.008   
Kernel        :  4.4.0-97-generic
OS            :  Ubuntu 16.04.3 LTS
System        :  (gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4)
nvidia driver :  387.34
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
December 29, 2017, 05:49:43 AM
Last edit: December 29, 2017, 06:42:19 AM by papampi
 #5158

Hello,
I am mining using the WTM_AUTO_SWITCH on two coins.
After few days of work I have the impression that the auto switch process hangs as the coin are not switched anymore (no matter of the changes in whattomine.com) and the information on ./nvOC wtm-log doesn't get updated anymore.

Any idea of what might be the cause?

here is my software configuration:
Software info:
Report ver    :  v0019-2.0.002
nvOC (1bash)  :  nvOC v0019-2.0 - Community Release
nvOC (3main)  :  nvOC v0019-2.0 - Community Release  
1bash ver     :  v0019-2.0.003
3main ver     :  v0019-2.0.006                  
5watchdog ver :  v0019-2.0.011    
6tempcontrol v:  v0019-2.0.003    
wtm switch ver:  v0019-2.0.008  
Kernel        :  4.4.0-97-generic
OS            :  Ubuntu 16.04.3 LTS
System        :  (gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4)
nvidia driver :  387.34


Minimum Mining time causing problem in wtm auto switch,
And I cant find a fix for it
For now please disable it by updating to v0011

Code:
cd /home/m1/Downloads
wget https://www.dropbox.com/s/3fbrlv4t5js8xt7/wtm_update
bash /home/m1/Downloads/wtm_update


You can check the status of wtm, wdog, temp and other stuff in webinfo
http://your-rig-ip/cgi-bin/minerinfo

arsen_a
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
December 29, 2017, 07:07:29 AM
 #5159

I tried removing all the partitions and doing it again and now I get directly into the normal GRUB, which let's me choose to boot Ubuntu, but that just says "error: no such partition." When I go into the GRUB command-line and try `ls` I get nothing back.

Any chance to get a link to v0018? I know that definitely worked for me.

For those people who need nvOC 0018, here is a link for download on Google Drive:
https://drive.google.com/drive/folders/1-4rnCYe2ZQOxe5u88LIHOhOxO8abRiBk?usp=sharing


Best,
Arsen.
bumbu100
Newbie
*
Offline Offline

Activity: 44
Merit: 0


View Profile
December 29, 2017, 10:30:31 AM
 #5160

INPUT:
--------------------------------------------------------------------------------------------------------------------
PAPAMPI_WTM_AUTO_SWITCH="YES"

PAPAMPI_WTM_PROFIT_INFO="YES"

WTM_AUTO_SWITCH_COINS="XMR;ZCL;ETH"

WTM_AUTO_SWITCH_SYNC_INTERVAL="3"

WTM_PROFIT_CHECK_INTERVAL="60"

WTM_MIN_DIFFERENCE="7"

WTM_CURRENCY="USD"

WTM_AUTO_SWITCH_URL="https://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0&eth=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability3&volume=0&revenue=3d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&dataset=&commit=Calculate"

Maxximus007_AUTO_TEMPERATURE_CONTROL="YES"

IAmNotAJeep_and_Maxximus007_WATCHDOG="YES"

damNmad_ALGO_SPECIFIC_OC="YES"

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

OUTPUT:

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

Boot Time ------------------------- 2017-12-29 03:19:23
System Up Time ----------------- up 5 minutes
Currently Mining --------------- "ZEC"
Reboot Required ---------------- No
Auto Temp Control ------------- Enbaled
Watch Dog ----------------------- Enbaled
Gpu Count ----------------------- 13
GPU Target Temp -------------- 75
GPU Minimum Fan Speed --- 50
Auto Switcher ------------------- WTM Auto Switch Running
Profitabilty: ZCL:125 % ETH:100 % XMR:51 %
USD Revenue: ZCL:35.54 ETH:28.48 XMR:14.46

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


Why is mining ZEC Huh??
Pages: « 1 ... 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 [258] 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 ... 352 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!