Bitcoin Forum
November 12, 2024, 05:02:44 PM *
News: Check out the artwork 1Dq created to commemorate this forum's 15th anniversary
 
   Home   Help Search Login Register More  
Pages: « 1 ... 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 [372] 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 »
  Print  
Author Topic: [OS] nvOC easy-to-use Linux Nvidia Mining  (Read 418242 times)
pigseye
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
February 26, 2018, 02:52:58 PM
 #7421

Hi All,
Hope someone can help me.  Trying to mine ETC on the Ethteam pool.

nvOC boots fine and starts to mine but then I get an "Eth Authorization failed...retry in 20 seconds" error.  

I noticed the following in the 1bash file:

# Some pools require dot (address.worker), some require slash (address/worker) format.
# Depending on the pool you use, set this approprietly:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"   # DOT or SLASH


But the pool i am using does not use a dot or a slash.  is there a way to have blank where the dot or slash is?   When I don't have either DOT or SLASH in between the quotes it defaults to /.

Or is something else wrong?

Thanks!

if it does not use dot or slash how you set worker name in pool?

The pool doesn't require a worker name, just a wallet address.  But if you want a worker name you can use -eworker username.


Then you should edit 0miner to have your own settings.
Find the lines for your coin and edit them.

My apologies, but what is 0miner?  

I did edit the lines for ETC but couldn't find a way to make it work.  I also tried using a dot or a dash and my worker name with my windows bat files and that didn't work either. So I think that confirms this pool doesn't use dots or dashes.  Unfortunately, nvOC defaults to a slash even if you leave a blank in between the quotation marks.

Could you please provide a little more guidance?

Thanks
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
February 26, 2018, 03:28:10 PM
 #7422

Hi All,
Hope someone can help me.  Trying to mine ETC on the Ethteam pool.

nvOC boots fine and starts to mine but then I get an "Eth Authorization failed...retry in 20 seconds" error.  

I noticed the following in the 1bash file:

# Some pools require dot (address.worker), some require slash (address/worker) format.
# Depending on the pool you use, set this approprietly:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"   # DOT or SLASH


But the pool i am using does not use a dot or a slash.  is there a way to have blank where the dot or slash is?   When I don't have either DOT or SLASH in between the quotes it defaults to /.

Or is something else wrong?

Thanks!

if it does not use dot or slash how you set worker name in pool?

The pool doesn't require a worker name, just a wallet address.  But if you want a worker name you can use -eworker username.


Then you should edit 0miner to have your own settings.
Find the lines for your coin and edit them.

My apologies, but what is 0miner?  

I did edit the lines for ETC but couldn't find a way to make it work.  I also tried using a dot or a dash and my worker name with my windows bat files and that didn't work either. So I think that confirms this pool doesn't use dots or dashes.  Unfortunately, nvOC defaults to a slash even if you leave a blank in between the quotation marks.

Could you please provide a little more guidance?

Thanks

0miner is the file that contains all the mining commands
Look in home folder

leenoox
Full Member
***
Offline Offline

Activity: 200
Merit: 101



View Profile
February 26, 2018, 06:13:10 PM
Last edit: February 26, 2018, 06:44:58 PM by leenoox
 #7423

Hi All,
Hope someone can help me.  Trying to mine ETC on the Ethteam pool.

nvOC boots fine and starts to mine but then I get an "Eth Authorization failed...retry in 20 seconds" error.  

I noticed the following in the 1bash file:

# Some pools require dot (address.worker), some require slash (address/worker) format.
# Depending on the pool you use, set this approprietly:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"   # DOT or SLASH


But the pool i am using does not use a dot or a slash.  is there a way to have blank where the dot or slash is?   When I don't have either DOT or SLASH in between the quotes it defaults to /.

Or is something else wrong?

Thanks!

if it does not use dot or slash how you set worker name in pool?

The pool doesn't require a worker name, just a wallet address.  But if you want a worker name you can use -eworker username.


Then you should edit 0miner to have your own settings.
Find the lines for your coin and edit them.

My apologies, but what is 0miner?  

I did edit the lines for ETC but couldn't find a way to make it work.  I also tried using a dot or a dash and my worker name with my windows bat files and that didn't work either. So I think that confirms this pool doesn't use dots or dashes.  Unfortunately, nvOC defaults to a slash even if you leave a blank in between the quotation marks.

Could you please provide a little more guidance?

Thanks

Open Nautilus file explorer (it's the icon with folder sign on the left panel). This will open your /home directory. You will find 0miner file here, double click on it, it will open it for editing.
Find this section:
Code:
if [ $COIN == "ETC" ]then
ETCADDR="$ETC_ADDRESS/$ETC_WORKER"
And change it to:
Code:
if [ $COIN == "ETC" ]then
ETCADDR="$ETC_ADDRESS"
Save it and exit.
Double click on 1bash and make these changes:
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="SLASH"
# ETC
ETC_WORKER="$WORKERNAME"
ETC_ADDRESS="replace_with_your_address"
ETC_POOL="etc-us.ethteam.com"
ETC_PORT="8008"
ETC_EXTENSION_ARGUMENTS=""
Save and exit.
Press F12 to open guake terminal and type:
Code:
./nvOC stop
./nvOC start
Or just reboot.

thaelin
Newbie
*
Offline Offline

Activity: 64
Merit: 0


View Profile
February 26, 2018, 08:55:05 PM
 #7424

@pigseye

I use just my wallet  pool and port on ethermine. Only one I could connect to and work.

"eu1-etc.ethermine.org

4444

thay
pigseye
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
February 27, 2018, 04:20:19 AM
 #7425

Hi Leenoox!
Your instructions worked perfectly!  They also helped me understand how it works a little bit and that will give me more confidence to try other settings.

This type of guidance needs to be in a FAQ or help section somewhere.  It is very useful especially to linux and mining noobs like me.

Thank you so much!




Hi All,
Hope someone can help me.  Trying to mine ETC on the Ethteam pool.

nvOC boots fine and starts to mine but then I get an "Eth Authorization failed...retry in 20 seconds" error.  

I noticed the following in the 1bash file:

# Some pools require dot (address.worker), some require slash (address/worker) format.
# Depending on the pool you use, set this approprietly:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"   # DOT or SLASH


But the pool i am using does not use a dot or a slash.  is there a way to have blank where the dot or slash is?   When I don't have either DOT or SLASH in between the quotes it defaults to /.

Or is something else wrong?

Thanks!

if it does not use dot or slash how you set worker name in pool?

The pool doesn't require a worker name, just a wallet address.  But if you want a worker name you can use -eworker username.


Then you should edit 0miner to have your own settings.
Find the lines for your coin and edit them.

My apologies, but what is 0miner?  

I did edit the lines for ETC but couldn't find a way to make it work.  I also tried using a dot or a dash and my worker name with my windows bat files and that didn't work either. So I think that confirms this pool doesn't use dots or dashes.  Unfortunately, nvOC defaults to a slash even if you leave a blank in between the quotation marks.

Could you please provide a little more guidance?

Thanks

Open Nautilus file explorer (it's the icon with folder sign on the left panel). This will open your /home directory. You will find 0miner file here, double click on it, it will open it for editing.
Find this section:
Code:
if [ $COIN == "ETC" ]then
ETCADDR="$ETC_ADDRESS/$ETC_WORKER"
And change it to:
Code:
if [ $COIN == "ETC" ]then
ETCADDR="$ETC_ADDRESS"
Save it and exit.
Double click on 1bash and make these changes:
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="SLASH"
# ETC
ETC_WORKER="$WORKERNAME"
ETC_ADDRESS="replace_with_your_address"
ETC_POOL="etc-us.ethteam.com"
ETC_PORT="8008"
ETC_EXTENSION_ARGUMENTS=""
Save and exit.
Press F12 to open guake terminal and type:
Code:
./nvOC stop
./nvOC start
Or just reboot.
pigseye
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
February 27, 2018, 04:41:42 AM
 #7426

Hi Thay,
I appreciate your insight. 

Please check out Leenoox's suggestion on how to get to other pools that do not use a dot or a slash after the wallet address for worker name.  It worked great for me and will give you more pool options.

Thanks


@pigseye

I use just my wallet  pool and port on ethermine. Only one I could connect to and work.

"eu1-etc.ethermine.org

4444

thay
leenoox
Full Member
***
Offline Offline

Activity: 200
Merit: 101



View Profile
February 27, 2018, 05:13:20 AM
 #7427

Hi Leenoox!
Your instructions worked perfectly!  They also helped me understand how it works a little bit and that will give me more confidence to try other settings.

This type of guidance needs to be in a FAQ or help section somewhere.  It is very useful especially to linux and mining noobs like me.

Thank you so much!

You are welcome. I am glad it worked well for you and boosted your confidence. Please post future changes/modifications so other can benefit as well.
If you know of more pools that require this setup (no worker) please let us know. We can add it as an option in the next release (e.g. SLASH or DOT or NONE)

ctlangtao
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
February 27, 2018, 07:21:21 AM
 #7428

It's too big to download.......
WaveFront
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile
February 27, 2018, 08:45:21 AM
 #7429

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

Code:
WARNING: Tue Feb 27 09:35:24 CET 2018 - Problem found: See diagnostics below: 
Percent of GPUs bellow threshold: 100 %
name, pstate, temperature.gpu, fan.speed [%], utilization.gpu [%], power.draw [W], power.limit [W]
GeForce GTX 1060 6GB, P5, 63, 60 %, 1 %, 12.96 W, 80.00 W
GeForce GTX 1060 6GB, P2, 45, 50 %, 0 %, 27.97 W, 80.00 W
GeForce GTX 1060 6GB, P5, 58, 50 %, 0 %, 13.95 W, 80.00 W
GeForce GTX 1060 6GB, P5, 59, 50 %, 0 %, 11.65 W, 80.00 W
GeForce GTX 1060 6GB, P5, 49, 50 %, 0 %, 12.42 W, 80.00 W
GeForce GTX 1060 6GB, P5, 56, 50 %, 0 %, 10.57 W, 80.00 W
GeForce GTX 1060 6GB, P5, 54, 50 %, 0 %, 12.23 W, 80.00 W
GeForce GTX 1060 6GB, P5, 59, 50 %, 0 %, 9.47 W, 80.00 W
GeForce GTX 1060 6GB, P5, 50, 50 %, 0 %, 12.10 W, 80.00 W
GeForce GTX 1060 6GB, P5, 41, 50 %, 0 %, 13.65 W, 80.00 W
 ✘ 09:35:03|cuda-4  Error CUDA mining: an illegal memory access was encountered
CUDA error in func 'search' at line 489 : an illegal memory access was encountered.
 ✘ 09:35:03|cuda-6  Error CUDA mining: an illegal memory access was encountered
 m 09:35:04|ethminer Speed 231.75 Mh/s gpu/0 22.52 gpu/1 24.14 gpu/2 24.06 gpu/3 22.84 gpu/4 22.84 gpu/5 22.84 gpu/6 22.84 gpu/7 22.84 gpu/8 22.76 gpu/9 24.06 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:06|ethminer Speed 213.04 Mh/s gpu/0 20.73 gpu/1 22.13 gpu/2 22.13 gpu/3 20.99 gpu/4 20.99 gpu/5 20.99 gpu/6 20.99 gpu/7 20.99 gpu/8 20.99 gpu/9 22.13 [A338+0:R0+0:F0] Time: 01:36
 ℹ 09:35:06|stratum  Received new job #ff63903c seed: #1261dfe17d0bf58cb2861ae84734488b target: #0000000112e0be826d694b2e
 m 09:35:08|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:10|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:12|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 ℹ 09:35:12|stratum  Received new job #76b48990 seed: #1261dfe17d0bf58cb2861ae84734488b target: #0000000112e0be826d694b2e
 m 09:35:14|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:16|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:18|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:20|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
 m 09:35:22|ethminer Speed 208.73 Mh/s gpu/0 20.36 gpu/1 21.62 gpu/2 21.62 gpu/3 20.57 gpu/4 20.57 gpu/5 20.57 gpu/6 20.57 gpu/7 20.57 gpu/8 20.57 gpu/9 21.72 [A338+0:R0+0:F0] Time: 01:36
CRITICAL: Tue Feb 27 09:35:25 CET 2018 - GPU Utilization is too low: restarting 3main...
bitkoni
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
February 27, 2018, 10:07:28 AM
 #7430

I write the image to flashdisk, insert into mobo and its loading to grub.
How can i start the OS ?
LuKePicci
Jr. Member
*
Offline Offline

Activity: 128
Merit: 1


View Profile
February 27, 2018, 11:16:44 AM
 #7431

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

See for NVRM errors in /var/log/kern.log
WaveFront
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile
February 27, 2018, 02:15:01 PM
 #7432

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

See for NVRM errors in /var/log/kern.log

Hi LukePicci,
If I check kern.log approximately at the time of the watchdog error above (Tue Feb 27 09:35:24 CET 2018) I get:
Code:
Feb 27 09:35:03 m1-desktop kernel: [72498.782215] NVRM: Xid (PCI:0000:02:00): 31, Ch 0000001b, engmask 00000101, intr 10000000
Feb 27 09:46:34 m1-desktop kernel: [73190.045754] NVRM: Xid (PCI:0000:0f:00): 31, Ch 0000001b, engmask 00000101, intr 10000000

Does that mean that the GPU that gave the error is on PCI slot 02 (or whatever is mapped to PCI slot 02)?
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
February 27, 2018, 05:18:19 PM
Merited by CryptAtomeTrader44 (1)
 #7433

Hi guys,

as a newbie to linux i have to thank all developers for their work. Thank you guys and please don´t stop, if you did, you would leave people like me hanging in the cold.

A problem i encountered with the new community release version 2.0 is the following.

If i try to connect any of my rigs (doesn´t matter whether nvidia or amd cards) to any etn pool (doesn´t matter as well which pool it is) nvOC uses KTccminer as the miner but once i connect the pool always sets the difficulty at 19, exactly at 19 and this repeats no matter what rig i connect to what etn pool. I had all rigs running under 19. 1.4 and everything was good, now i can´t connect to any of the etn pools.

Any suggestions?

It uses 'KTccminer-cryptonight'

Can you paste result of this command (type in guake)

Quote
ps aux | grep miner

Paste the result over here.



Can you also paste the ETN coin details you have in 1bash?




Thanks for trying to help this is the result of your command

m1@m1-desktop:~$ ps aux | grep miner
m1       10259  288  0.6 564212 49368 pts/17   Sl+  22:37   2:15 /home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.1600.19_2_ASGT405XE3 -p x -t 3
m1       10553  0.0  0.0  27188  2896 ?        Ss   22:37   0:00 SCREEN -dmSL miner /home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x
m1       10554 12.5  5.1 64984620 414744 pts/24 Ssl+ 22:37   0:04 /home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x
m1       10702  0.0  0.0  14224   944 pts/16   R+   22:38   0:00 grep --color=auto miner


I also tried to connect to etn.easyhash.io:3631 with the same result, diff gets set at exactly 19 and stays there. I can however set the diff manually by adding it to my etn address as "...address.20000" This works but then the diff stays at that at all times. Once again everything worked fine in 19_1.4

As for the details of my 1bash settings for the etn coin. I have my etn address in there as shown above as well as the port. I use port 3333 for the cpu threads and 7777 for the gpu´s in the rig i am using right now to get back online. There are 4 1050 ti`s in there.

When i look at at the outcome above it adds the diff 1600 for the cpu thread (which i set manually by adding it to 1bash) and it puts my custom worker name right behind the etn address. Seeing this now i just converted back to HOST instead of CUSTOM worker name but that doesn´t help a lot. In that case the diff gets set to 100, stays there and the miner never starts mining. The cpu works but only because i set it manually to a 1600 diff. KTccminer-cryptonight never starts mining even though it shows accepted shares.

Unfortunately i don´t know enough about Linux to get anywhere close to resolving this.

Sorry, it took a while to respond.

Ok, i think i've found the issue.

a) Your cpu miner command :

Quote
/home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.1600.19_2_ASGT405XE3 -p x -t 3

What pool expecting to see is : It's not expecting to see worker name attached to ADDY.

Quote
/home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ -p x -t 3

Search for this code in 3main;

Quote
if [ $plusCPU == "YES" ] && [ $AUTO_START_MINER == "YES" ]
then
  HCD='/home/m1/cpuOPT/cpuminer'
  XMRADDR="$XMR_ADDRESS.$XMR_WORKER"

Change

Quote
XMRADDR="$XMR_ADDRESS.$XMR_WORKER"

to this

Quote
XMRADDR="$XMR_ADDRESS

b) Your ccminer command


Quote
/home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x


What pool is expecting to see is : It's not expecting to see worker name attached to ADDY.

Quote
/home/m1/KTccminer-cryptonight/ -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ -p x

Go to 0miner, search for these lines

Quote
if [ $COIN == "ETN" ]
then
  HCD='/home/m1/KTccminer-cryptonight/ccminer'
  ADDR="$ETN_ADDRESS.$ETN_WORKER"

Change this
Quote
 ADDR="$ETN_ADDRESS.$ETN_WORKER"

to this
Quote
 ADDR="$ETN_ADDRESS"

This should work.

Difficulty will vary based on the port you select (most of the stratum pools automatically adjust the difficulty - my suggestion, leave your current port as is), please check the below link for more information :

https://etnminers.com/#getting_started




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

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
February 27, 2018, 06:49:11 PM
Last edit: February 27, 2018, 08:31:41 PM by papampi
 #7434

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

See for NVRM errors in /var/log/kern.log

Hi LukePicci,
If I check kern.log approximately at the time of the watchdog error above (Tue Feb 27 09:35:24 CET 2018) I get:
Code:
Feb 27 09:35:03 m1-desktop kernel: [72498.782215] NVRM: Xid (PCI:0000:02:00): 31, Ch 0000001b, engmask 00000101, intr 10000000
Feb 27 09:46:34 m1-desktop kernel: [73190.045754] NVRM: Xid (PCI:0000:0f:00): 31, Ch 0000001b, engmask 00000101, intr 10000000

Does that mean that the GPU that gave the error is on PCI slot 02 (or whatever is mapped to PCI slot 02)?


Run
Code:
nvidia-smi
and find that pci slot GPU number, then you can either run :
Code:
./nvOC gpumap
or max the fan speed of that GPU from nvidia-settings or disable that GPU from miner.

But usually that cuda memory illegal access is because of high memory overclock.
Lower memory clock, then start raising in small steps.

_S_C_
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
February 27, 2018, 10:08:36 PM
 #7435

Hi all,

Trying to switch to nvOC v0019-2.0 but I have some errors and I'm unable to run a miner.

Here is my log.

In advance thanks for your help.

(MSI Z270-A PRO / Intel P 4400 / ram 8GB / SSD 60 GB / 6 MSI GTX 1080 TI)

Quote
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:47:09 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  Off  | 00000000:01:00.0  On |                  N/A |
|  0%   29C    P0    59W / 280W |    118MiB / 11172MiB |      1%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  Off  | 00000000:03:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 280W |      9MiB / 11172MiB |      8%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  Off  | 00000000:06:00.0 Off |                  N/A |
|  0%   33C    P8    13W / 280W |      9MiB / 11172MiB |      5%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  Off  | 00000000:07:00.0 Off |                  N/A |
|  0%   37C    P8    15W / 280W |      9MiB / 11172MiB |      2%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  Off  | 00000000:08:00.0 Off |                  N/A |
|  0%   35C    P8    16W / 280W |      9MiB / 11172MiB |      3%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  Off  | 00000000:09:00.0 Off |                  N/A |
|  0%   39C    P8    14W / 280W |      9MiB / 11172MiB |      5%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            87MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES

LAUNCHING:  MINER WATCHDOG

process in guake terminal Tab (f12), ~/nvOC wdog-log


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
    
    
    
/home/m1/2unix: line 55:  1998 Terminated              bash '/home/m1/3main'
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:47:25 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  On   | 00000000:01:00.0  On |                  N/A |
| 50%   30C    P2    55W / 150W |    124MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  On   | 00000000:03:00.0 Off |                  N/A |
|  0%   34C    P8    10W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  On   | 00000000:06:00.0 Off |                  N/A |
|  0%   33C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  On   | 00000000:07:00.0 Off |                  N/A |
|  0%   37C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  On   | 00000000:08:00.0 Off |                  N/A |
|  0%   35C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  On   | 00000000:09:00.0 Off |                  N/A |
|  0%   39C    P8    12W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            93MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 150.00 W.
All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
    
    
    
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:48:47 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  On   | 00000000:01:00.0  On |                  N/A |
| 50%   25C    P8    16W / 150W |    124MiB / 11172MiB |      6%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  On   | 00000000:03:00.0 Off |                  N/A |
|  0%   34C    P8    10W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  On   | 00000000:06:00.0 Off |                  N/A |
|  0%   32C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  On   | 00000000:07:00.0 Off |                  N/A |
|  0%   36C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  On   | 00000000:08:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  On   | 00000000:09:00.0 Off |                  N/A |
|  0%   38C    P8    12W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            93MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 150.00 W.
All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
    
    
    
/home/m1/2unix: line 55:  3071 Terminated              bash '/home/m1/3main'
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:50:09 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  On   | 00000000:01:00.0  On |                  N/A |
| 50%   24C    P8    12W / 150W |    118MiB / 11172MiB |      6%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  On   | 00000000:03:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  On   | 00000000:06:00.0 Off |                  N/A |
|  0%   32C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  On   | 00000000:07:00.0 Off |                  N/A |
|  0%   36C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  On   | 00000000:08:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  On   | 00000000:09:00.0 Off |                  N/A |
|  0%   38C    P8    12W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            87MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 150.00 W.
All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
    
    
    
/home/m1/2unix: line 55:  3652 Terminated              bash '/home/m1/3main'
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:51:30 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  On   | 00000000:01:00.0  On |                  N/A |
| 50%   23C    P8    13W / 150W |    124MiB / 11172MiB |      2%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  On   | 00000000:03:00.0 Off |                  N/A |
|  0%   33C    P8    10W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  On   | 00000000:06:00.0 Off |                  N/A |
|  0%   32C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  On   | 00000000:07:00.0 Off |                  N/A |
|  0%   35C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  On   | 00000000:08:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  On   | 00000000:09:00.0 Off |                  N/A |
|  0%   38C    P8    12W / 150W |      9MiB / 11172MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            93MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 150.00 W.
Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 150.00 W.
All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
WaveFront
Member
**
Offline Offline

Activity: 126
Merit: 10


View Profile
February 27, 2018, 10:36:01 PM
 #7436

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

See for NVRM errors in /var/log/kern.log

Hi LukePicci,
If I check kern.log approximately at the time of the watchdog error above (Tue Feb 27 09:35:24 CET 2018) I get:
Code:
Feb 27 09:35:03 m1-desktop kernel: [72498.782215] NVRM: Xid (PCI:0000:02:00): 31, Ch 0000001b, engmask 00000101, intr 10000000
Feb 27 09:46:34 m1-desktop kernel: [73190.045754] NVRM: Xid (PCI:0000:0f:00): 31, Ch 0000001b, engmask 00000101, intr 10000000

Does that mean that the GPU that gave the error is on PCI slot 02 (or whatever is mapped to PCI slot 02)?


Run
Code:
nvidia-smi
and find that pci slot GPU number, then you can either run :
Code:
./nvOC gpumap
or max the fan speed of that GPU from nvidia-settings or disable that GPU from miner.

But usually that cuda memory illegal access is because of high memory overclock.
Lower memory clock, then start raising in small steps.
Hi Papampi,
I am tuning one rig. Since most cards are of different models, I cannot use the same overclock rate for all cards.
This is great. That way I can identify the cards that are crashing and change the rates.
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
February 27, 2018, 11:30:50 PM
 #7437

Hi all,

Trying to switch to nvOC v0019-2.0 but I have some errors and I'm unable to run a miner.

Here is my log.

In advance thanks for your help.

(MSI Z270-A PRO / Intel P 4400 / ram 8GB / SSD 60 GB / 6 MSI GTX 1080 TI)

Quote
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release




rig IP: 192.168.0.135


rig MAC:


01:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
03:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
06:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
07:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
08:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 1b06 (rev a1)


Tue Feb 27 22:47:09 2018      
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 387.34                 Driver Version: 387.34                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 108...  Off  | 00000000:01:00.0  On |                  N/A |
|  0%   29C    P0    59W / 280W |    118MiB / 11172MiB |      1%      Default |
+-------------------------------+----------------------+----------------------+
|   1  GeForce GTX 108...  Off  | 00000000:03:00.0 Off |                  N/A |
|  0%   34C    P8    11W / 280W |      9MiB / 11172MiB |      8%      Default |
+-------------------------------+----------------------+----------------------+
|   2  GeForce GTX 108...  Off  | 00000000:06:00.0 Off |                  N/A |
|  0%   33C    P8    13W / 280W |      9MiB / 11172MiB |      5%      Default |
+-------------------------------+----------------------+----------------------+
|   3  GeForce GTX 108...  Off  | 00000000:07:00.0 Off |                  N/A |
|  0%   37C    P8    15W / 280W |      9MiB / 11172MiB |      2%      Default |
+-------------------------------+----------------------+----------------------+
|   4  GeForce GTX 108...  Off  | 00000000:08:00.0 Off |                  N/A |
|  0%   35C    P8    16W / 280W |      9MiB / 11172MiB |      3%      Default |
+-------------------------------+----------------------+----------------------+
|   5  GeForce GTX 108...  Off  | 00000000:09:00.0 Off |                  N/A |
|  0%   39C    P8    14W / 280W |      9MiB / 11172MiB |      5%      Default |
+-------------------------------+----------------------+----------------------+
                                                                              
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0       978      G   /usr/lib/xorg/Xorg                            87MiB |
|    0      1785      G   compiz                                        28MiB |
|    1       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    2       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    3       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    4       978      G   /usr/lib/xorg/Xorg                             6MiB |
|    5       978      G   /usr/lib/xorg/Xorg                             6MiB |
+-----------------------------------------------------------------------------+

/home/m1/3main: line 202: [: ==: unary operator expected

  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:0]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:1]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:2]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:3]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:4]) assigned value 0.
  Attribute 'GPULogoBrightness' (m1-desktop:0[gpu:5]) assigned value 0.

Power limit for GPU 00000000:01:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:03:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:06:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:07:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:08:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

Power limit for GPU 00000000:09:00.0 was set to 150.00 W from 280.00 W.

Warning: persistence mode is disabled on this device. This settings will go back to default as soon as driver unloads (e.g. last application like nvidia-smi or cuda application terminates). Run with [--help | -h] switch to get more information on how to enable persistence mode.

All done.
/home/m1/3main: line 222: [: ==: unary operator expected

LAUNCHING:  MINER TEMPCONTROL

process in guake terminal Tab (f12), ~/nvOC temp-log

/home/m1/3main: line 843: [: ==: unary operator expected
/home/m1/3main: line 885: [: ==: unary operator expected

  Attribute 'GPUGraphicsClockOffset' (m1-desktop:0[gpu:0]) assigned value 120.


  Attribute 'GPUMemoryTransferRateOffset' (m1-desktop:0[gpu:0]) assigned value 1200.



ERROR: Error parsing assignment '[gpu:1]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:1]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:2]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:3]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:4]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUGraphicsClockOffset[3]=' (No attribute value specified).



ERROR: Error parsing assignment '[gpu:5]/GPUMemoryTransferRateOffset[3]=' (No attribute value specified).

Auto Start Miner Set to YES

LAUNCHING:  MINER WATCHDOG

process in guake terminal Tab (f12), ~/nvOC wdog-log


LAUNCHING:  WTM AUTO SWITCH


LAUNCHING:  MINER
    
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file
/home/m1/0miner: line 67: [: ==: unary operator expected
/home/m1/0miner: line 72: [: ==: unary operator expected
/home/m1/0miner: line 79: [: ==: unary operator expected
/home/m1/0miner: line 85: [: ==: unary operator expected
    
    
    
/home/m1/2unix: line 55:  1998 Terminated              bash '/home/m1/3main'
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

Have you made any edits to 1bash file? Seems it's not happy with the format of it.

I would be better if you paste your 1bash here.

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

Activity: 200
Merit: 101



View Profile
February 28, 2018, 04:02:13 AM
 #7438

Hi all,

Trying to switch to nvOC v0019-2.0 but I have some errors and I'm unable to run a miner.

Here is my log.

In advance thanks for your help.

(MSI Z270-A PRO / Intel P 4400 / ram 8GB / SSD 60 GB / 6 MSI GTX 1080 TI)

Quote
nvOC v0019-2.0 - Community Release
/home/m1/1bash: line 1041: unexpected EOF while looking for matching `"'
/home/m1/1bash: line 1047: syntax error: unexpected end of file

 nvOC v0019-2.0 - Community Release


Have you made any edits to 1bash file? Seems it's not happy with the format of it.

I would be better if you paste your 1bash here.

It seems your 0miner, 1bash and 3main are somehow corrupted. Try to reimage.

P.S. Please enclose long post within CODE formatting. Click on the # icon to post long code.

papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
February 28, 2018, 08:11:25 AM
 #7439

Hello,
When we get a watchdog alert, is there an easy way to determine which GPU created the error? It looks to me that in the example below, the all 10 GPUs are failing at the same time which is not possible.
Do you have any peace of advice?

See for NVRM errors in /var/log/kern.log

Hi LukePicci,
If I check kern.log approximately at the time of the watchdog error above (Tue Feb 27 09:35:24 CET 2018) I get:
Code:
Feb 27 09:35:03 m1-desktop kernel: [72498.782215] NVRM: Xid (PCI:0000:02:00): 31, Ch 0000001b, engmask 00000101, intr 10000000
Feb 27 09:46:34 m1-desktop kernel: [73190.045754] NVRM: Xid (PCI:0000:0f:00): 31, Ch 0000001b, engmask 00000101, intr 10000000

Does that mean that the GPU that gave the error is on PCI slot 02 (or whatever is mapped to PCI slot 02)?


Run
Code:
nvidia-smi
and find that pci slot GPU number, then you can either run :
Code:
./nvOC gpumap
or max the fan speed of that GPU from nvidia-settings or disable that GPU from miner.

But usually that cuda memory illegal access is because of high memory overclock.
Lower memory clock, then start raising in small steps.
Hi Papampi,
I am tuning one rig. Since most cards are of different models, I cannot use the same overclock rate for all cards.
This is great. That way I can identify the cards that are crashing and change the rates.

Usually disabling the gpu from miner and find the cold gpu is the fastest way.

If mining with dstm zm miner use this :
Code:
ZM_OPTS=" -dev 0 1 2 3 5"  ##  gpu 4 is disabled.
Ethminer use this:
Code:
ETH_EXTENSION_ARGUMENTS=" --cuda-devices 0 1 2 3 5" 

JustM4rt
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
February 28, 2018, 02:24:11 PM
 #7440

Demo video links don't work anymore
Pages: « 1 ... 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 [372] 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 »
  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!