pigseye
Newbie
Offline
Activity: 35
Merit: 0
|
|
February 26, 2018, 02:52:58 PM |
|
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
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
|
|
February 26, 2018, 03:28:10 PM |
|
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
|
|
February 26, 2018, 06:13:10 PM Last edit: February 26, 2018, 06:44:58 PM by leenoox |
|
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: if [ $COIN == "ETC" ]then ETCADDR="$ETC_ADDRESS/$ETC_WORKER" And change it to: if [ $COIN == "ETC" ]then ETCADDR="$ETC_ADDRESS" Save it and exit. Double click on 1bash and make these changes: 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: Or just reboot.
|
|
|
|
thaelin
Newbie
Offline
Activity: 64
Merit: 0
|
|
February 26, 2018, 08:55:05 PM |
|
@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
Activity: 35
Merit: 0
|
|
February 27, 2018, 04:20:19 AM |
|
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: if [ $COIN == "ETC" ]then ETCADDR="$ETC_ADDRESS/$ETC_WORKER" And change it to: if [ $COIN == "ETC" ]then ETCADDR="$ETC_ADDRESS" Save it and exit. Double click on 1bash and make these changes: 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: Or just reboot.
|
|
|
|
pigseye
Newbie
Offline
Activity: 35
Merit: 0
|
|
February 27, 2018, 04:41:42 AM |
|
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
|
|
February 27, 2018, 05:13:20 AM |
|
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
Activity: 32
Merit: 0
|
|
February 27, 2018, 07:21:21 AM |
|
It's too big to download.......
|
|
|
|
WaveFront
Member
Offline
Activity: 126
Merit: 10
|
|
February 27, 2018, 08:45:21 AM |
|
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? 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 [101m[1;30m ✘ [35m09:35:03[0m[30m|[34mcuda-4 [0m Error CUDA mining: an illegal memory access was encountered CUDA error in func 'search' at line 489 : an illegal memory access was encountered. [101m[1;30m ✘ [35m09:35:03[0m[30m|[34mcuda-6 [0m Error CUDA mining: an illegal memory access was encountered [32m m [35m09:35:04[0m[30m|[34methminer[0m Speed [1;36m231.75[0m Mh/s gpu/0 [36m22.52[0m gpu/1 [36m24.14[0m gpu/2 [36m24.06[0m gpu/3 [36m22.84[0m gpu/4 [36m22.84[0m gpu/5 [36m22.84[0m gpu/6 [36m22.84[0m gpu/7 [36m22.84[0m gpu/8 [36m22.76[0m gpu/9 [36m24.06[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:06[0m[30m|[34methminer[0m Speed [1;36m213.04[0m Mh/s gpu/0 [36m20.73[0m gpu/1 [36m22.13[0m gpu/2 [36m22.13[0m gpu/3 [36m20.99[0m gpu/4 [36m20.99[0m gpu/5 [36m20.99[0m gpu/6 [36m20.99[0m gpu/7 [36m20.99[0m gpu/8 [36m20.99[0m gpu/9 [36m22.13[0m [A338+0:R0+0:F0] Time: 01:36[0m [94m ℹ [35m09:35:06[0m[30m|[34mstratum [0m Received new job #ff63903c[0m seed: #1261dfe17d0bf58cb2861ae84734488b[0m target: #0000000112e0be826d694b2e[0m [32m m [35m09:35:08[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:10[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:12[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [94m ℹ [35m09:35:12[0m[30m|[34mstratum [0m Received new job #76b48990[0m seed: #1261dfe17d0bf58cb2861ae84734488b[0m target: #0000000112e0be826d694b2e[0m [32m m [35m09:35:14[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:16[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:18[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:20[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m [32m m [35m09:35:22[0m[30m|[34methminer[0m Speed [1;36m208.73[0m Mh/s gpu/0 [36m20.36[0m gpu/1 [36m21.62[0m gpu/2 [36m21.62[0m gpu/3 [36m20.57[0m gpu/4 [36m20.57[0m gpu/5 [36m20.57[0m gpu/6 [36m20.57[0m gpu/7 [36m20.57[0m gpu/8 [36m20.57[0m gpu/9 [36m21.72[0m [A338+0:R0+0:F0] Time: 01:36[0m CRITICAL: Tue Feb 27 09:35:25 CET 2018 - GPU Utilization is too low: restarting 3main...
|
|
|
|
bitkoni
Newbie
Offline
Activity: 30
Merit: 0
|
|
February 27, 2018, 10:07:28 AM |
|
I write the image to flashdisk, insert into mobo and its loading to grub. How can i start the OS ?
|
|
|
|
LuKePicci
Jr. Member
Offline
Activity: 128
Merit: 1
|
|
February 27, 2018, 11:16:44 AM |
|
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
Activity: 126
Merit: 10
|
|
February 27, 2018, 02:15:01 PM |
|
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: 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
Activity: 378
Merit: 104
nvOC forever
|
|
February 27, 2018, 05:18:19 PM |
|
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) 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 :/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. /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; if [ $plusCPU == "YES" ] && [ $AUTO_START_MINER == "YES" ] then HCD='/home/m1/cpuOPT/cpuminer' XMRADDR="$XMR_ADDRESS.$XMR_WORKER" Change XMRADDR="$XMR_ADDRESS.$XMR_WORKER" to this XMRADDR="$XMR_ADDRESS b) Your ccminer command
/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. /home/m1/KTccminer-cryptonight/ -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ -p x Go to 0miner, search for these lines if [ $COIN == "ETN" ] then HCD='/home/m1/KTccminer-cryptonight/ccminer' ADDR="$ETN_ADDRESS.$ETN_WORKER"
Change this ADDR="$ETN_ADDRESS.$ETN_WORKER" to this 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
|
|
|
|
papampi
Full Member
Offline
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
|
|
February 27, 2018, 06:49:11 PM Last edit: February 27, 2018, 08:31:41 PM by papampi |
|
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: 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 and find that pci slot GPU number, then you can either run : 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
Activity: 11
Merit: 0
|
|
February 27, 2018, 10:08:36 PM |
|
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) 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
Activity: 126
Merit: 10
|
|
February 27, 2018, 10:36:01 PM |
|
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: 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 and find that pci slot GPU number, then you can either run : 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
Activity: 378
Merit: 104
nvOC forever
|
|
February 27, 2018, 11:30:50 PM |
|
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) 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.
|
|
|
|
leenoox
|
|
February 28, 2018, 04:02:13 AM |
|
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) 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
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
|
|
February 28, 2018, 08:11:25 AM |
|
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: 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 and find that pci slot GPU number, then you can either run : 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 : ZM_OPTS=" -dev 0 1 2 3 5" ## gpu 4 is disabled.
Ethminer use this: ETH_EXTENSION_ARGUMENTS=" --cuda-devices 0 1 2 3 5"
|
|
|
|
JustM4rt
Newbie
Offline
Activity: 25
Merit: 0
|
|
February 28, 2018, 02:24:11 PM |
|
Demo video links don't work anymore
|
|
|
|
|