Bitcoin Forum
May 01, 2024, 01:12:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 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 ... 417 »
  Print  
Author Topic: [OS] nvOC easy-to-use Linux Nvidia Mining  (Read 417954 times)
Stubo
Member
**
Offline Offline

Activity: 224
Merit: 13


View Profile
January 10, 2018, 12:03:21 PM
 #6681

Hi guys
Nvidia driver updated today to version 384.111. I did as same as above. Everythings work fine, except power usage got ERR! in nvidia-smi and in miner shows 0w. I guess because of the new driver.
I'm wondering if there's any way I can downgrade Nvidia driver to 384.90 which is my old driver version. If it's possible please teach me step by step, I'm very new to Linux. Thank you very much.

As I posted just a few posts ago...  The downgrade to a previous version is done via locally attached display using these instructions from leenoox:

The easiest way is LOCAL:
1. I suggest closing all apps, ctrl-c on wdog, temp, miner
2. click on the 4th icon on the left-side panel "Additional Drivers"
3. in the new window click on "Additional Drivers" tab
4. click on the "Using NVIDIA binary driver - version 384.90 from..."
5. click on "Apply Changes" button <this can take a while>
6. enter root password: miner1
6. reboot
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714525924
Hero Member
*
Offline Offline

Posts: 1714525924

View Profile Personal Message (Offline)

Ignore
1714525924
Reply with quote  #2

1714525924
Report to moderator
Moordact
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
January 10, 2018, 02:02:41 PM
 #6682

All my miners died today??
I read something about driver update??

If I boot it doesn't go anywhere after boot screen..

I think my nvoc image is broken cause of update..

This is on all installs..

I don't have remote access.
All I get when I restart is boot screen -> black screen for ages.

Do I have to reimage.. if so how do I prevent this happening next time driver update?
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 10, 2018, 03:07:08 PM
 #6683

All my miners died today??
I read something about driver update??

If I boot it doesn't go anywhere after boot screen..

I think my nvoc image is broken cause of update..

This is on all installs..

I don't have remote access.
All I get when I restart is boot screen -> black screen for ages.

Do I have to reimage.. if so how do I prevent this happening next time driver update?

What was your version?
This is fixed in 19-1.4 and 19-2.0

Moordact
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
January 10, 2018, 03:13:03 PM
 #6684

All my miners died today??
I read something about driver update??

If I boot it doesn't go anywhere after boot screen..

I think my nvoc image is broken cause of update..

This is on all installs..

I don't have remote access.
All I get when I restart is boot screen -> black screen for ages.

Do I have to reimage.. if so how do I prevent this happening next time driver update?

What was your version?
This is fixed in 19-1.4 and 19-2.0

I believe it was 19-1-4 however I manually all updated them from 1-2 or 1-3..

I'm ordering some usb sticks so I have some backups I can just swap stick. Instead of having to image these ssd's each time something is wrong
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 10, 2018, 03:43:07 PM
 #6685

All my miners died today??
I read something about driver update??

If I boot it doesn't go anywhere after boot screen..

I think my nvoc image is broken cause of update..

This is on all installs..

I don't have remote access.
All I get when I restart is boot screen -> black screen for ages.

Do I have to reimage.. if so how do I prevent this happening next time driver update?

What was your version?
This is fixed in 19-1.4 and 19-2.0

I believe it was 19-1-4 however I manually all updated them from 1-2 or 1-3..

I'm ordering some usb sticks so I have some backups I can just swap stick. Instead of having to image these ssd's each time something is wrong

Nvidia driver 384 is updated today and it was on 19-1.3 and before
19-1.4 and later are on Nvidia 387


Stubo
Member
**
Offline Offline

Activity: 224
Merit: 13


View Profile
January 10, 2018, 05:08:02 PM
 #6686

Setup password-less SSH on Your Rigs

This is useful if you have multiple rigs and getting tired of putting ssh password every time logging into your rigs.
Also good if you want to run commands from ssh but not start ssh session, for example just want to know miner command on rig 2 or if watchdog is running on rig 3 ...

To make sure outsiders dont have access to all your rigs dont open the rig ssh port you want to enable ssh password-less login from on your router. Any one who has access to this rig has access to all your rigs via ssh.
What I do is I forwarded a random port to ssh port of Rig 2 on router, remote ssh to rig 2, then ssh from rig 2 to rig 1 with password and do all stuff from rig 1 to all my rigs without password.

Run this on rig 1:
Code:
ssh-keygen
You can leave all options empty on prompts.

Then to enable passwordless on your rig 2 with internal ip 192.168.1.102 run:
Code:
ssh-copy-id m1@192.168.1.102
It will ask for m1 password default is "miner1", same process for all other rigs

Now ssh to your rig 2
Code:
ssh m1@192.168.1.102
It should login without asking for password.

Now you can run any commands on rig 2 from rig 1 with this command :
Code:
ssh m1@192.168.1.102 command

Example, get nvOC report on rig 2 :
Code:
ssh m1@192.168.1.102 ./nvOC report

Or to restart miner on rig 3:
Code:
ssh m1@192.168.1.103 miner-restart

Thanks, Pap. I have been meaning to get around to this. It was very helpful and worked perfectly.
Orion_M42
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
January 10, 2018, 07:09:25 PM
 #6687

When I try to write the .img file to the usb drive, it says the downloaded file is corrupted. I deleted the file and am going to try again. Anyone else run into this issue?
geekcryptogal
Jr. Member
*
Offline Offline

Activity: 56
Merit: 2


View Profile
January 10, 2018, 07:37:04 PM
 #6688

Which version of noc should I download for MSI Z270 and 4 x Nvidia 1070 ti?  I see a 2.0 version and 1.9 version.  I see 3 different 1.9 versions for nvidia cards.  I want to be able to mine anything on whattomine.com. 

SOrry if this was already explained in this thread, but it's over 300 pages, and my head is spinning lol.

Any help would be greatly appreciated.
pzyxian
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
January 10, 2018, 08:08:33 PM
 #6689

nvOC 19-2.0 Community Release Notes:


Code:
Miner Updates/Additions:
  DSTM's Zcash/Equihash Miner v. 0.5.6
  tpruvot/ccminer v. 2.2.3
  krnlx/ccminer-xevan latest
  KlausT/ccminer v. 0.8.15
  Claymore 10.02
  Nanashi ccminer
  Vertminer
  
3main edits :
  Removed the infinite loops and put one at the end to cover all mining blocks (stubo)
  Bug fix for 1050 Ti where pstate3 was not OC'ed (stubo)
  Removed repetitive if LOCAL then "screen -r miner" from each mining block and put one at the end to cover all mining blocks (stubo)
  Added support for BTG
  Added telemetry/api to EWBF and ZM miner launches so that you can hit <host>:42000 to see this miner output (stubo)
  Added the ability to pass in a miner password for all miners that have the "--pass" arg. (stubo)
  Changed instances of "--pass x" and "--pass x"  and "-p x" to "--pass $MINER_PWD" (stubo)
  Changed dstm zm location to "~/zec/zm/latest/" for easier future updates (papampi)
  Changed all miner start scripts to use separate pool and port from 1bash so watchdog can check the pool connection easier (papampi)
  Added log rotate settings (papampi)
  Moved miner start from 3main to 0miner, to make 3main lighter and better handle of miner start (papampi)
  Added auto start miner yes or no ( in case you need to edit or debug the rig) (papampi)
  Bug fix - $pwr_lim_daggerhashimoto5 corrected to $pwr_lim_daggerhashimoto (leenoox)
  Bug fix - INDIVIDUAL settings were applied to GPU's 0-13 only. Fixed to work with 0-18 (leenoox)
  Partial code cleanup (leenoox)

1bash edits:
  Added EWBF_OPTS and ZM_OPTS for telemetry/api to EWBF and ZM miner (stubo)
  Added MINER_PWD for miner passwords (stubo)
  Unified and separated all pool address and pool ports so wdog can check if pool is up or no if needed (papampi)
  Updated contributors list and release name (leenoox)

wdog edits:
  Added check if miner is running or not when utilization dropped to restart miner faster (stubo)
  Added check for internet and wait if its down (stubo)
  Added check mining pool:port if internet is up and wait before restart miner and reboot system (papampi)
  Added "Warning" to log output of alerts to catch them easier (papampi)
  Changed logfile location to tmpfs (papampi)
  Fixed a bug in logging system to limit logs to 500 lines
  Added checking number of gpus installed vs system reported gpus at start of wdog, so you know if a gpu is not working (papampi)
  Changed sleep time before wdog goin on watch to be based on gpu counts (papampi)
  Set higher process and disk I/O priorities - watchdog is essential service
  Code optimization (leenoox)

temp control (by leenoox):
  Set higher process and disk I/O priorities - Temp control is essential service
  Auto detection of number of GPU's
  Only set, adjust and display available GPU's, dynamic variables creation
  Numeric check of the return values from nvidia-smi (looking for numbers only, anything else = error)
  Reboot if GPU error detected and watchdog didn't react for 60 seconds (act as a backup watchdog)
  Added query delay to nvidia API (no burst spamming, added 0.5 sec delay, prevent overload), helps reduce stale shares
  New (improved) display output including colors and bold text
  Fixed the log file handling (Bug fix: Previous implemantation was not limiting the file size)
  Removed repetitive GPUFanControlState setting, it only needs to be set once, not every cycle (prevent API overload)

nvOC utility (by stubo):
  New function based utility that has many features including gpuinfo, stop, start, clearlogs, restart, etc.
  

Others:
  Added log rotation (papampi)
  Changed minerinfo and papampi-telegram for new log locations (papampi)
  Create tmpfs partition to change logfile location to tmpfs to lower read/writes to HDD/USB (papampi)
  Changed minerinfo web so those who dont use wtm dont see empty or no wtm entries (papampi)


Black screen while on riser:

Recently tried out the community build. It works well with at least 1 GPU that's mounted on the mobo. However, as soon as I have all GPU units connected to the mobo through risers, I couldn't see any video signal out of my HDMI cable that's connected to one of the GPUs.

This situation is reproduced even with 1 GPU connected through a riser. Is this a known issue or is it my setup ?

Motherboard: MSI Z270 SLI PLUS
GPU: zotac 1080 ti

Please advise.

Thx!


Thank you! the monitor worked with cards off the mobo through risers. step 1 worked: attach risers to mobo in order of 16x pcie first, and from to to bottom in order.

Dhodge87
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
January 10, 2018, 09:14:13 PM
 #6690

So last night my power to the house went out, they restored it this morning and now I have 6 rigs that will not login.
They boot to the M1 login screen and when I enter the miner1 psw it goes to a black screen for a few seconds then right back to the login.

Did every single one of my flash drives get corrupted or what?
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 10, 2018, 09:14:42 PM
Last edit: January 10, 2018, 09:29:24 PM by papampi
 #6691

Which version of noc should I download for MSI Z270 and 4 x Nvidia 1070 ti?  I see a 2.0 version and 1.9 version.  I see 3 different 1.9 versions for nvidia cards.  I want to be able to mine anything on whattomine.com.  

SOrry if this was already explained in this thread, but it's over 300 pages, and my head is spinning lol.

Any help would be greatly appreciated.

19-2.0 is the latest stable community release with latest wtm auto switch.

papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 10, 2018, 09:18:00 PM
Last edit: January 10, 2018, 09:30:37 PM by papampi
 #6692

So last night my power to the house went out, they restored it this morning and now I have 6 rigs that will not login.
They boot to the M1 login screen and when I enter the miner1 psw it goes to a black screen for a few seconds then right back to the login.

Did every single one of my flash drives get corrupted or what?

If you been on 19-1.3 or older Nvidia driver updated today and has nothing to do with power outage.

Run

Code:
sudo dpkg --configure -a

Update problem is solved in 19-2.0

Dhodge87
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
January 10, 2018, 10:10:37 PM
 #6693

So last night my power to the house went out, they restored it this morning and now I have 6 rigs that will not login.
They boot to the M1 login screen and when I enter the miner1 psw it goes to a black screen for a few seconds then right back to the login.

Did every single one of my flash drives get corrupted or what?

If you been on 19-1.3 or older Nvidia driver updated today and has nothing to do with power outage.

Run

Code:
sudo dpkg --configure -a

Update problem is solved in 19-2.0

I thought I was running 1.4, I'll download 2.0


Edit.... I can only find the 1.4 download link
CryptAtomeTrader44
Full Member
***
Offline Offline

Activity: 340
Merit: 103

It is easier to break an atom than partialities AE


View Profile
January 10, 2018, 10:42:35 PM
 #6694

So last night my power to the house went out, they restored it this morning and now I have 6 rigs that will not login.
They boot to the M1 login screen and when I enter the miner1 psw it goes to a black screen for a few seconds then right back to the login.

Did every single one of my flash drives get corrupted or what?

If you been on 19-1.3 or older Nvidia driver updated today and has nothing to do with power outage.

Run

Code:
sudo dpkg --configure -a

Update problem is solved in 19-2.0

I thought I was running 1.4, I'll download 2.0


Edit.... I can only find the 1.4 download link

Look at here https://github.com/papampi/nvOC_by_fullzero_Community_Release

or papampi signature
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 11, 2018, 05:56:08 AM
 #6695

When I try to write the .img file to the usb drive, it says the downloaded file is corrupted. I deleted the file and am going to try again. Anyone else run into this issue?

Your downloaded file is corrupted, check the checksum sha
And download again

Edit: have you extracted the compressed file before imaging it?

papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 11, 2018, 06:25:10 AM
 #6696

Setup password-less SSH on Your Rigs

This is useful if you have multiple rigs and getting tired of putting ssh password every time logging into your rigs.
Also good if you want to run commands from ssh but not start ssh session, for example just want to know miner command on rig 2 or if watchdog is running on rig 3 ...

To make sure outsiders dont have access to all your rigs dont open the rig ssh port you want to enable ssh password-less login from on your router. Any one who has access to this rig has access to all your rigs via ssh.
What I do is I forwarded a random port to ssh port of Rig 2 on router, remote ssh to rig 2, then ssh from rig 2 to rig 1 with password and do all stuff from rig 1 to all my rigs without password.

Run this on rig 1:
Code:
ssh-keygen
You can leave all options empty on prompts.

Then to enable passwordless on your rig 2 with internal ip 192.168.1.102 run:
Code:
ssh-copy-id m1@192.168.1.102
It will ask for m1 password default is "miner1", same process for all other rigs

Now ssh to your rig 2
Code:
ssh m1@192.168.1.102
It should login without asking for password.

Now you can run any commands on rig 2 from rig 1 with this command :
Code:
ssh m1@192.168.1.102 command

Example, get nvOC report on rig 2 :
Code:
ssh m1@192.168.1.102 ./nvOC report

Or to restart miner on rig 3:
Code:
ssh m1@192.168.1.103 miner-restart

Thanks, Pap. I have been meaning to get around to this. It was very helpful and worked perfectly.

Glad you liked it.
Wanted to post it for long time but kept forgetting
its a life saver and very good for multiple rig
Just add commands for all rigs to a bash file and run it Wink


car1999
Full Member
***
Offline Offline

Activity: 350
Merit: 100


View Profile
January 11, 2018, 07:30:40 AM
 #6697

what does the pstate in gpuinfo mean? Some of the cards run at p0, others run at p2.
Moordact
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
January 11, 2018, 09:16:04 AM
 #6698

Guys this community version is still capable with 16Gb right?Huh
car1999
Full Member
***
Offline Offline

Activity: 350
Merit: 100


View Profile
January 11, 2018, 09:59:45 AM
 #6699

Guys this community version is still capable with 16Gb right?Huh
use 120g ssd please,  1 of my usb disk was damaged and I had to drive 60 miles to replace it.
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
January 11, 2018, 10:39:36 AM
 #6700

Guys this community version is still capable with 16Gb right?Huh
use 120g ssd please,  1 of my usb disk was damaged and I had to drive 60 miles to replace it.

You dont need 120Gb SSD
You can get 60 Gb as low as 30$

Pages: « 1 ... 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 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 ... 417 »
  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!