Author

Topic: [ mining os ] nvoc - page 254. (Read 418549 times)

full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 02:22:25 PM
hi guys,
i just installed the v0019 when i boot up the terminal show Launching Mining process but nothing happen after that.

i tried to set the to LOCAL, set my ETC account and use the default setting the system still not showing any mining process.


thanks in advance


Have you checked on Guake terminal?? (Press F12 for Guake terminal)

Code:
nvidia-smi

see whether there is any mining process happening?

can also check this

Code:
screen -r miner
full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 02:18:31 PM
Dont know if its been asked/suggested or not
I thought it would be good to implement some thing similar to nicehash oc settings for manual mine too
So when we change coin, 1bash automatically switch oc profile

Looking for something similar, maybe we can narrow down it to based on algo which is going to be used!?

not to elegant but for now I do this(v0018):
Code:
INDIVIDUAL_CLOCKS="YES"         # YES NO

if [ $COIN == "ETH" -o $COIN == "ETC" ]
then
    if [ $INDIVIDUAL_CLOCKS == "NO" ]
    then
        __CORE_OVERCLOCK=0
        MEMORY_OVERCLOCK=1210
    elif [ $INDIVIDUAL_CLOCKS == "YES" ]
    then
        __CORE_OVERCLOCK_0=0
        MEMORY_OVERCLOCK_0=1300
        __CORE_OVERCLOCK_1=0
        MEMORY_OVERCLOCK_1=1300
        __CORE_OVERCLOCK_2=0       
        MEMORY_OVERCLOCK_2=1200
        __CORE_OVERCLOCK_3=0
        MEMORY_OVERCLOCK_3=1200
        __CORE_OVERCLOCK_4=0
        MEMORY_OVERCLOCK_4=1600
        __CORE_OVERCLOCK_5=0
        MEMORY_OVERCLOCK_5=1200
        __CORE_OVERCLOCK_6=0       
        MEMORY_OVERCLOCK_6=1200
    fi
elif [ $COIN == "DUAL_ETH_SC" ]
then
    __CORE_OVERCLOCK=110
    MEMORY_OVERCLOCK=1100
elif [ $COIN == "ZEC" ]
then
    if [ $INDIVIDUAL_CLOCKS == "NO" ]
    then
        __CORE_OVERCLOCK=105   
        MEMORY_OVERCLOCK=1200
    elif [ $INDIVIDUAL_CLOCKS == "YES" ]
    then
        __CORE_OVERCLOCK_0=104
        MEMORY_OVERCLOCK_0=1230
        __CORE_OVERCLOCK_1=104
        MEMORY_OVERCLOCK_1=1225
        __CORE_OVERCLOCK_2=120
        MEMORY_OVERCLOCK_2=1300
        __CORE_OVERCLOCK_3=104
        MEMORY_OVERCLOCK_3=1225
        __CORE_OVERCLOCK_4=105
        MEMORY_OVERCLOCK_4=1300
        __CORE_OVERCLOCK_5=105
        MEMORY_OVERCLOCK_5=1235
        __CORE_OVERCLOCK_6=104
        MEMORY_OVERCLOCK_6=1235
    fi
fi
 
# Set individual clocks here if INDIVIDUAL_CLOCKS="YES"
#__CORE_OVERCLOCK_0=100
#MEMORY_OVERCLOCK_0=1230
#__CORE_OVERCLOCK_1=100
#MEMORY_OVERCLOCK_1=1230
#__CORE_OVERCLOCK_2=100
#MEMORY_OVERCLOCK_2=1230
#__CORE_OVERCLOCK_3=100
#MEMORY_OVERCLOCK_3=1230
#__CORE_OVERCLOCK_4=130
#MEMORY_OVERCLOCK_4=1310
#__CORE_OVERCLOCK_5=100
#MEMORY_OVERCLOCK_5=1220
#__CORE_OVERCLOCK_6=100
#MEMORY_OVERCLOCK_6=1215
...etc

we need to modularise 1bash, 1 settings file for each coin(or a settings db) would be nice, don't have to much time on my hands right now but when I do I'll think of something and ask my man fullzero to include it if he likes it.

I use a similar kind, but based on algo/script, because there are number of coins based on algos for eg; ethash has 6 coins (ETH,ETC,EXP,UBQ,MUSIC,SOIL) which use mostly same OC settings (I believe). We need something similar modularised kind of thing going forward (I kinda like your idea actually, may try the way you've used and see how it goes) Smiley
newbie
Activity: 13
Merit: 0
August 28, 2017, 02:12:40 PM
hi guys,
i just installed the v0019 when i boot up the terminal show Launching Mining process but nothing happen after that.

i tried to set the to LOCAL, set my ETC account and use the default setting the system still not showing any mining process.


thanks in advance
newbie
Activity: 11
Merit: 0
August 28, 2017, 01:43:55 PM
Dont know if its been asked/suggested or not
I thought it would be good to implement some thing similar to nicehash oc settings for manual mine too
So when we change coin, 1bash automatically switch oc profile

Looking for something similar, maybe we can narrow down it to based on algo which is going to be used!?

not to elegant but for now I do this(v0018):
Code:
INDIVIDUAL_CLOCKS="YES"         # YES NO

if [ $COIN == "ETH" -o $COIN == "ETC" ]
then
    if [ $INDIVIDUAL_CLOCKS == "NO" ]
    then
        __CORE_OVERCLOCK=0
        MEMORY_OVERCLOCK=1210
    elif [ $INDIVIDUAL_CLOCKS == "YES" ]
    then
        __CORE_OVERCLOCK_0=0
        MEMORY_OVERCLOCK_0=1300
        __CORE_OVERCLOCK_1=0
        MEMORY_OVERCLOCK_1=1300
        __CORE_OVERCLOCK_2=0       
        MEMORY_OVERCLOCK_2=1200
        __CORE_OVERCLOCK_3=0
        MEMORY_OVERCLOCK_3=1200
        __CORE_OVERCLOCK_4=0
        MEMORY_OVERCLOCK_4=1600
        __CORE_OVERCLOCK_5=0
        MEMORY_OVERCLOCK_5=1200
        __CORE_OVERCLOCK_6=0       
        MEMORY_OVERCLOCK_6=1200
    fi
elif [ $COIN == "DUAL_ETH_SC" ]
then
    __CORE_OVERCLOCK=110
    MEMORY_OVERCLOCK=1100
elif [ $COIN == "ZEC" ]
then
    if [ $INDIVIDUAL_CLOCKS == "NO" ]
    then
        __CORE_OVERCLOCK=105   
        MEMORY_OVERCLOCK=1200
    elif [ $INDIVIDUAL_CLOCKS == "YES" ]
    then
        __CORE_OVERCLOCK_0=104
        MEMORY_OVERCLOCK_0=1230
        __CORE_OVERCLOCK_1=104
        MEMORY_OVERCLOCK_1=1225
        __CORE_OVERCLOCK_2=120
        MEMORY_OVERCLOCK_2=1300
        __CORE_OVERCLOCK_3=104
        MEMORY_OVERCLOCK_3=1225
        __CORE_OVERCLOCK_4=105
        MEMORY_OVERCLOCK_4=1300
        __CORE_OVERCLOCK_5=105
        MEMORY_OVERCLOCK_5=1235
        __CORE_OVERCLOCK_6=104
        MEMORY_OVERCLOCK_6=1235
    fi
fi
 
# Set individual clocks here if INDIVIDUAL_CLOCKS="YES"
#__CORE_OVERCLOCK_0=100
#MEMORY_OVERCLOCK_0=1230
#__CORE_OVERCLOCK_1=100
#MEMORY_OVERCLOCK_1=1230
#__CORE_OVERCLOCK_2=100
#MEMORY_OVERCLOCK_2=1230
#__CORE_OVERCLOCK_3=100
#MEMORY_OVERCLOCK_3=1230
#__CORE_OVERCLOCK_4=130
#MEMORY_OVERCLOCK_4=1310
#__CORE_OVERCLOCK_5=100
#MEMORY_OVERCLOCK_5=1220
#__CORE_OVERCLOCK_6=100
#MEMORY_OVERCLOCK_6=1215
...etc

we need to modularise 1bash, 1 settings file for each coin(or a settings db) would be nice, don't have to much time on my hands right now but when I do I'll think of something and ask my man fullzero to include it if he likes it.
hero member
Activity: 786
Merit: 1000
August 28, 2017, 12:00:53 PM
v0019 is up on Google Drive see the OP for the Link:
[...snip...]


Thanks fullzero for the xmr-nvidia link and the v0019!

For anyone trying to optimize their gpus for xmr with xmr-stak-nvidia here is a useful redit thread with a google doc link where performance tests at various thread settings have been documented:

https://www.reddit.com/r/MoneroMining/comments/6bqk0m/4392_xmrstaknvidia_configuration_tests_so_far/



Thanks- I was looking for something like this.
full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 11:59:56 AM
I'm getting this issue (straight from nvOC 19) when I select 'SALFTER_MPH_PROFIT_SWITCHING' as COIN, anyone had this issue?? I've tested URL on RIG's browser, it is working as expected.

Code:
Traceback (most recent call last):
  File "/home/m1/mph_switch", line 37, in
    data=json.loads(fetch("http://miningpoolhub.com/?page=api&action=getminingandprofitsstatistics"))["return"]
  File "/home/m1/mph_switch", line 32, in fetch
    return urllib2.build_opener().open(r).read()
  File "/usr/lib/python2.7/urllib2.py", line 435, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 500: Internal Server Error
[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory


[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory

BTW, thank you so much for all the updates with this release, awesome work fullzero as ever, the best mining OS and the best community ever Smiley

Have you tried to install libutempter0 ?
Code:
sudo apt install libutempter0 

Thanks for the reply, it seems the error has gone using the above install; but mining is not started in guake as expected!

Code:
All done.

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


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


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


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


  Attribute 'GPUFanControlState' (m1-desktop:0[gpu:7]) assigned value 0.


monero (Cryptonight): 0.00108000 BTC/day (4.64 USD/day)
zclassic (Equihash): 0.00100364 BTC/day (4.31 USD/day)
zcash (Equihash): 0.00098478 BTC/day (4.23 USD/day)
ethereum (Ethash): 0.00098032 BTC/day (4.21 USD/day)
ethereum-classic (Ethash): 0.00094537 BTC/day (4.06 USD/day)
groestlcoin (Groestl): 0.00092318 BTC/day (3.96 USD/day)
maxcoin (Keccak): 0.00079139 BTC/day (3.40 USD/day)
expanse (Ethash): 0.00073189 BTC/day (3.14 USD/day)
musicoin (Ethash): 0.00068310 BTC/day (2.93 USD/day)
vertcoin (Lyra2RE2): 0.00060242 BTC/day (2.59 USD/day)
myriadcoin-groestl (Myriad-Groestl): 0.00060066 BTC/day (2.58 USD/day)
digibyte-groestl (Myriad-Groestl): 0.00037603 BTC/day (1.61 USD/day)
feathercoin (NeoScrypt): 0.00026042 BTC/day (1.12 USD/day)
myriadcoin-skein (Skein): 0.00007466 BTC/day (0.32 USD/day)
siacoin (Sia): -0.00000641 BTC/day (-0.03 USD/day)
digibyte-skein (Skein): -0.00014849 BTC/day (-0.64 USD/day)
digibyte-qubit (Qubit): -0.00023583 BTC/day (-1.01 USD/day)
geocoin (Qubit): -0.00028547 BTC/day (-1.23 USD/day)
dash (X11): -0.00032753 BTC/day (-1.41 USD/day)
startcoin (X11): -0.00034090 BTC/day (-1.46 USD/day)
verge-scrypt (Scrypt): -0.00040643 BTC/day (-1.74 USD/day)
adzcoin (X11): -0.00040828 BTC/day (-1.75 USD/day)
litecoin (Scrypt): -0.00041916 BTC/day (-1.80 USD/day)
gamecredits (Scrypt): -0.00042298 BTC/day (-1.82 USD/day)
sexcoin (Scrypt): -0.00045059 BTC/day (-1.93 USD/day)

No others errors found!

Will investigate more into it and update; Thanks  Smiley

Well, I think I've figured it why it has failed even after installation of 'libutempter0', the profitable coin according to MPH is XMR and with the XMR the path provided in the 'mph_config.json' is invalid.

Code:
/home/m1/KTccminer-cryptonight/ccminer -a cryptonight

valid one

Code:
/home/m1/KXccminer/ccminer -a cryptonight


newbie
Activity: 35
Merit: 0
August 28, 2017, 11:53:33 AM
v0019 is up on Google Drive see the OP for the Link
Thank you fullzero for all the hard work. It is really great to see such system supported by enthusiasts.
newbie
Activity: 46
Merit: 0
August 28, 2017, 10:59:24 AM
Hi all miners,
Excellent work fullzero! You're the king ;-) Many thanks for sharing with us.

I'm newer in mining, so I try use Windows, but found nvOS now and use it. But I've a small question, I must disconnect M.2 disc before nvOS run or not (for sure don't lost data)?

Thanks for any advice :-)
newbie
Activity: 11
Merit: 0
August 28, 2017, 09:19:16 AM
I've updated on v019
Moreover, I solve problem with 12th card- become to use m2-pci connector.
However, when start to mine ZEC, miner doesn't start and I see that:
http://imgur.com/a/hQshZ

screen is terminated and no miner process

run bash /home/m1/1bash
and take a picture.
http://imgur.com/a/NnKRb

try this :

Code:
bash /home/m1/1bash

you haven't added bash in the front part of the command, that's what helpme85 has been suggesting!
nothing is happened. I've try to reinstall oc
full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 09:18:07 AM
I've updated on v019
Moreover, I solve problem with 12th card- become to use m2-pci connector.
However, when start to mine ZEC, miner doesn't start and I see that:


screen is terminated and no miner process

run bash /home/m1/1bash
and take a picture.


try this :

Code:
bash /home/m1/1bash

you haven't added bash in the front part of the command, that's what helpme85 has been suggesting!
newbie
Activity: 11
Merit: 0
August 28, 2017, 09:08:01 AM
I've updated on v019
Moreover, I solve problem with 12th card- become to use m2-pci connector.
However, when start to mine ZEC, miner doesn't start and I see that:
http://imgur.com/a/hQshZ

screen is terminated and no miner process

run bash /home/m1/1bash
and take a picture.
http://imgur.com/a/NnKRb
newbie
Activity: 31
Merit: 0
August 28, 2017, 08:54:08 AM
I've updated on v019
Moreover, I solve problem with 12th card- become to use m2-pci connector.
However, when start to mine ZEC, miner doesn't start and I see that:
http://imgur.com/a/hQshZ

screen is terminated and no miner process

run
 
Quote
bash /home/m1/1bash

and take a picture.
newbie
Activity: 11
Merit: 0
August 28, 2017, 08:33:34 AM
I've updated on v019
Moreover, I solve problem with 12th card- become to use m2-pci connector.
However, when start to mine ZEC, miner doesn't start and I see that:
http://imgur.com/a/hQshZ

screen is terminated and no miner process
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
August 28, 2017, 08:30:39 AM
check if 1bash is running or not
Code:
ps ax|grep 1bash
if not start it with

Code:
 bash /home/m1/1bash

see if it gives any errors after start
full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 08:17:28 AM
I'm getting this issue (straight from nvOC 19) when I select 'SALFTER_MPH_PROFIT_SWITCHING' as COIN, anyone had this issue?? I've tested URL on RIG's browser, it is working as expected.

Code:
Traceback (most recent call last):
  File "/home/m1/mph_switch", line 37, in
    data=json.loads(fetch("http://miningpoolhub.com/?page=api&action=getminingandprofitsstatistics"))["return"]
  File "/home/m1/mph_switch", line 32, in fetch
    return urllib2.build_opener().open(r).read()
  File "/usr/lib/python2.7/urllib2.py", line 435, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 500: Internal Server Error
[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory


[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory

BTW, thank you so much for all the updates with this release, awesome work fullzero as ever, the best mining OS and the best community ever Smiley

Have you tried to install libutempter0 ?
Code:
sudo apt install libutempter0 

Thanks for the reply, it seems the error has gone using the above install; but mining is not started in guake as expected!

Code:
m1@m1-desktop:~$ screen -r miner
There is no screen to be resumed matching miner.
m1@m1-desktop:~$ screen -r miner
There is no screen to be resumed matching miner.
m1@m1-desktop:~$ screen -r miner
There is no screen to be resumed matching miner.
m1@m1-desktop:~$

No others errors found!

Code:
All done.

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


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


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


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


  Attribute 'GPUFanControlState' (m1-desktop:0[gpu:7]) assigned value 0.


monero (Cryptonight): 0.00108000 BTC/day (4.64 USD/day)
zclassic (Equihash): 0.00100364 BTC/day (4.31 USD/day)
zcash (Equihash): 0.00098478 BTC/day (4.23 USD/day)
ethereum (Ethash): 0.00098032 BTC/day (4.21 USD/day)
ethereum-classic (Ethash): 0.00094537 BTC/day (4.06 USD/day)
groestlcoin (Groestl): 0.00092318 BTC/day (3.96 USD/day)
maxcoin (Keccak): 0.00079139 BTC/day (3.40 USD/day)
expanse (Ethash): 0.00073189 BTC/day (3.14 USD/day)
musicoin (Ethash): 0.00068310 BTC/day (2.93 USD/day)
vertcoin (Lyra2RE2): 0.00060242 BTC/day (2.59 USD/day)
myriadcoin-groestl (Myriad-Groestl): 0.00060066 BTC/day (2.58 USD/day)
digibyte-groestl (Myriad-Groestl): 0.00037603 BTC/day (1.61 USD/day)
feathercoin (NeoScrypt): 0.00026042 BTC/day (1.12 USD/day)
myriadcoin-skein (Skein): 0.00007466 BTC/day (0.32 USD/day)
siacoin (Sia): -0.00000641 BTC/day (-0.03 USD/day)
digibyte-skein (Skein): -0.00014849 BTC/day (-0.64 USD/day)
digibyte-qubit (Qubit): -0.00023583 BTC/day (-1.01 USD/day)
geocoin (Qubit): -0.00028547 BTC/day (-1.23 USD/day)
dash (X11): -0.00032753 BTC/day (-1.41 USD/day)
startcoin (X11): -0.00034090 BTC/day (-1.46 USD/day)
verge-scrypt (Scrypt): -0.00040643 BTC/day (-1.74 USD/day)
adzcoin (X11): -0.00040828 BTC/day (-1.75 USD/day)
litecoin (Scrypt): -0.00041916 BTC/day (-1.80 USD/day)
gamecredits (Scrypt): -0.00042298 BTC/day (-1.82 USD/day)
sexcoin (Scrypt): -0.00045059 BTC/day (-1.93 USD/day)

Will investigate more into it and update; Thanks  Smiley
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
August 28, 2017, 08:07:44 AM
I'm getting this issue (straight from nvOC 19) when I select 'SALFTER_MPH_PROFIT_SWITCHING' as COIN, anyone had this issue?? I've tested URL on RIG's browser, it is working as expected.

Code:
Traceback (most recent call last):
  File "/home/m1/mph_switch", line 37, in
    data=json.loads(fetch("http://miningpoolhub.com/?page=api&action=getminingandprofitsstatistics"))["return"]
  File "/home/m1/mph_switch", line 32, in fetch
    return urllib2.build_opener().open(r).read()
  File "/usr/lib/python2.7/urllib2.py", line 435, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 500: Internal Server Error
[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory


[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory

BTW, thank you so much for all the updates with this release, awesome work fullzero as ever, the best mining OS and the best community ever Smiley

Have you tried to install libutempter0 ?
Code:
sudo apt install libutempter0
full member
Activity: 378
Merit: 104
nvOC forever
August 28, 2017, 07:56:29 AM
I'm getting this issue (straight from nvOC 19) when I select 'SALFTER_MPH_PROFIT_SWITCHING' as COIN, anyone had this issue?? I've tested URL on RIG's browser, it is working as expected.

Code:
Traceback (most recent call last):
  File "/home/m1/mph_switch", line 37, in
    data=json.loads(fetch("http://miningpoolhub.com/?page=api&action=getminingandprofitsstatistics"))["return"]
  File "/home/m1/mph_switch", line 32, in fetch
    return urllib2.build_opener().open(r).read()
  File "/usr/lib/python2.7/urllib2.py", line 435, in open
    response = meth(req, response)
  File "/usr/lib/python2.7/urllib2.py", line 548, in http_response
    'http', request, response, code, msg, hdrs)
  File "/usr/lib/python2.7/urllib2.py", line 473, in error
    return self._call_chain(*args)
  File "/usr/lib/python2.7/urllib2.py", line 407, in _call_chain
    result = func(*args)
  File "/usr/lib/python2.7/urllib2.py", line 556, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 500: Internal Server Error
[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory


[WARN] Unable to load the library libutempter !
[WARN] The command will not work in guake !
[WARN] libutempter.so.0: cannot open shared object file: No such file or directory

BTW, thank you so much for all the updates with this release, awesome work fullzero as ever, the best mining OS and the best community ever Smiley
newbie
Activity: 44
Merit: 0
August 28, 2017, 07:20:24 AM
v0019 is up on Google Drive see the OP for the Link:
[...snip...]


Thanks fullzero for the xmr-nvidia link and the v0019!

For anyone trying to optimize their gpus for xmr with xmr-stak-nvidia here is a useful redit thread with a google doc link where performance tests at various thread settings have been documented:

https://www.reddit.com/r/MoneroMining/comments/6bqk0m/4392_xmrstaknvidia_configuration_tests_so_far/

full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
August 28, 2017, 05:59:37 AM
Hi, after 60h of stable running the hash drops by 50%, but program dose not restart. Is there or can you add an option in 1bash filr " if hash under x Restart" ?

Tnx
Hash drops usually for 2 reasons
1- GPU not fully utilize, which Iamnotajeep watchdog will be aware and restart the miner
2- GPU get hot and Maxximus cant get it to temp limit  with 100% fan and it will lower the power usuage.


Yes but i am using pure P106-100 rig so both of those are disabled.
I would like to know if what i asked can be coded so i dont have to manually restart everytime
So do you know the reason why your hash drops?

Possibility is yes for sure, you need a script to check miner output log and restart miner if needed.
But better first find the problem, and solve it, instead of restarting the problem.
newbie
Activity: 15
Merit: 0
August 28, 2017, 05:51:03 AM
Hi, after 60h of stable running the hash drops by 50%, but program dose not restart. Is there or can you add an option in 1bash filr " if hash under x Restart" ?

Tnx
Hash drops usually for 2 reasons
1- GPU not fully utilize, which Iamnotajeep watchdog will be aware and restart the miner
2- GPU get hot and Maxximus cant get it to temp limit  with 100% fan and it will lower the power usuage.


Yes but i am using pure P106-100 rig so both of those are disabled.
I would like to know if what i asked can be coded so i dont have to manually restart everytime
Jump to: