Pages:
Author

Topic: [OS] nvOC easy-to-use Linux Nvidia Mining - page 31. (Read 418244 times)

member
Activity: 224
Merit: 13
Hi,

I noticed that there are a few double periods in the 0miner file:

Line 883 onwards:
if [ $COIN == "PASC" ]
then
  HCD='/home/m1/pasc/sgminer'
  ADDR="$PASC_ADDRESS..$PASC_WORKER"


Is this right? Or should I reduce it to a single period?






If all of the double periods follow that example where they are between the address and worker name, then yes. There should only be a single period between them.
fk1
full member
Activity: 216
Merit: 100
I am currently trying to get the best of nvOC into rxOC. I now this is nvOC thread but I am already very unusual doing and in rxOC thread it feels like no one reads so I have slight hope somebody has a key tip for me here.

I tried to implement WTM switch on my own into my rxOC rig. I failed because too many things to change regarding to watchdog. Then I had the idea to remain my rxOC image and simply copy all things from nvOC home/m1 folder into rxOC home/m1 folder, edited a couple of neccessary things. Now when I insert one card, everything works fine and WTM switches to profitable coin on rxOC!

Unfortunately, when inserting a second card I get this message:

https://ibb.co/ga8obx

I also got this once with one card. After a reboot everything worked fine again. I already switched off integrated gpu in bios. maybe somebody can point me in the right direction please?

btw: still no hashing on xmr on my original nvOC rig. is this working?


You can't use nvOC files in rxOC.
Copy rxOC 1bash, 3main, 2unix, watchdog and temp control to pastebin and send me the links
I will check and see if I can do anything for rxOC.


oneBash: https://pastebin.com/CXGuffeU
2unix: https://pastebin.com/MPzG6tK5

That's all from rxOC. I guess one needs to seperate all the 0miner and 3main stuff from the oneBash file, otherwise things will not work the same as with nvOC and WTM switch. I tried but failed.
newbie
Activity: 4
Merit: 0
Hi,

I noticed that there are a few double periods in the 0miner file:

Line 883 onwards:
if [ $COIN == "PASC" ]
then
  HCD='/home/m1/pasc/sgminer'
  ADDR="$PASC_ADDRESS..$PASC_WORKER"


Is this right? Or should I reduce it to a single period?




full member
Activity: 223
Merit: 101
Hi, could someone instruct me how to mine XPM with this os?

The miner i'm looking at has a linux version and it's located here: https://bitcointalksearch.org/topic/open-source-xpm-primecoin-gpu-miner-pool-xpmforallorg-831708
and this is presumably the linux version of the miner: http://coinsforall.io/distr/xpmclient-10.2.2-beta.tar.gz
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
I am currently trying to get the best of nvOC into rxOC. I now this is nvOC thread but I am already very unusual doing and in rxOC thread it feels like no one reads so I have slight hope somebody has a key tip for me here.

I tried to implement WTM switch on my own into my rxOC rig. I failed because too many things to change regarding to watchdog. Then I had the idea to remain my rxOC image and simply copy all things from nvOC home/m1 folder into rxOC home/m1 folder, edited a couple of neccessary things. Now when I insert one card, everything works fine and WTM switches to profitable coin on rxOC!

Unfortunately, when inserting a second card I get this message:

https://ibb.co/ga8obx

I also got this once with one card. After a reboot everything worked fine again. I already switched off integrated gpu in bios. maybe somebody can point me in the right direction please?

btw: still no hashing on xmr on my original nvOC rig. is this working?


You can't use nvOC files in rxOC.
Copy rxOC 1bash, 3main, 2unix, watchdog and temp control to pastebin and send me the links
I will check and see if I can do anything for rxOC.
fk1
full member
Activity: 216
Merit: 100
I am currently trying to get the best of nvOC into rxOC. I now this is nvOC thread but I am already very unusual doing and in rxOC thread it feels like no one reads so I have slight hope somebody has a key tip for me here.

I tried to implement WTM switch on my own into my rxOC rig. I failed because too many things to change regarding to watchdog. Then I had the idea to remain my rxOC image and simply copy all things from nvOC home/m1 folder into rxOC home/m1 folder, edited a couple of neccessary things. Now when I insert one card, everything works fine and WTM switches to profitable coin on rxOC!

Unfortunately, when inserting a second card I get this message:

https://ibb.co/ga8obx

I also got this once with one card. After a reboot everything worked fine again. I already switched off integrated gpu in bios. maybe somebody can point me in the right direction please?

btw: still no hashing on xmr on my original nvOC rig. is this working?
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
Thanks to stubo for testing and giving info on OhGodAnETHlargementPill for 1080 and 1080TI Ethahsh mining pill
In this post

You can do this to add it to nvOC 19-2.0, (it will be included in next version)

Code:
cd /home/m1/Downloads
wget -N https://raw.githubusercontent.com/OhGodACompany/OhGodAnETHlargementPill/master/OhGodAnETHlargementPill-r2
chmod a+x /home/m1/Downloads/OhGodAnETHlargementPill-r2
cp /home/m1/Downloads/OhGodAnETHlargementPill-r2 /home/m1/OhGodAnETHlargementPill-r2

1bash add:
Code:
OhGodAnETHlargementPill="YES"

3main before miner start command (before line 1087):

Code:
  reup=0
  running=$(ps ax | grep -v cpuminer | grep -i screen | grep miner | awk '"miner" {print $1}')

Add:
Code:
    if [[ $OhGodAnETHlargementPill == "YES" ]] && [[ $ALGORITHM == "ETHASH" ]]
    then
      echo " Launching OhGodAnETHlargementPill"
      HCD="/home/m1/OhGodAnETHlargementPill-r2"
      if ! ps ax  | grep -v grep | grep -q OhGodAnETHlargementPill
      then
        screen -dmS eth_pill sudo $HCD
        if [[ LOCAL_OR_REMOTE == "LOCAL" ]]
        then
          guake -n $HCD -r ETH_PILL -e "screen -r eth_pill"
        fi      
      fi
    else
      pkill -f OhGodAnETHlargementPill-r2
    fi

Edit:

If you dont use algo specific oc
In 1bash before algo specific oc setting  add :

Code:
 if [ $COIN == "ETH" -o $COIN == "ETC" -o $COIN == "EXP" -o $COIN == "UBQ" -o $COIN == "MUSIC" -o $COIN == "SOIL" -o $COIN == "MPH_ETHASH" -o $COIN == "PIRL" -o $COIN == "NICE-ETHASH" ]
  then
    ALGORITHM="ETHASH"
  fi
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!

Thank you for all you help, really appreciated!

 Why does my miner after it boots, i get a message xrog failed restart in 5 seconds... but i close the miner and restart it and it works just fine.  Any idea why that's happening?

 Maybe papampi know ?

Is the internal GPU disabled in bios?
Please post output of gpuinfo

Code:
~/nvOC gpuinfo

If you are not using p106 cards you can restore default xorg with:
Code:
sudo wget -N https://raw.githubusercontent.com/papampi/nvOC_by_fullzero_Community_Release/19-2.1/xorg.conf -O /etc/X11/xorg.conf.default
sudo cp '/etc/X11/xorg.conf' '/etc/X11/xorg.conf.backup'
sudo cp '/etc/X11/xorg.conf.default' '/etc/X11/xorg.conf'

If using p106:
Code:
sudo nvidia-xconfig --enable-all-gpus --cool-bits=12

And Reboot.
newbie
Activity: 96
Merit: 0

Thank you for all you help, really appreciated!

 Why does my miner after it boots, i get a message xrog failed restart in 5 seconds... but i close the miner and restart it and it works just fine.  Any idea why that's happening?

 Maybe papampi know ?
member
Activity: 224
Merit: 13
Code:
    
+-------------------------------------------------+
|         EWBF's Zcash CUDA miner. 0.3.4b         |
+-------------------------------------------------+
INFO: Current pool: zcl.suprnova.cc:4042
INFO: Selected pools: 1
INFO: Solver: Auto.
INFO: Devices: All.
INFO: Temperature limit: 90
INFO: Api: Listen on 192.168.1.120:4200
---------------------------------------------------
INFO: Target: 0007878787878787...
INFO: Detected new work: 7676
ERROR: Stratum authorization error







That means that you did not define your $WORKERNAME as a miner in suprnova. See this test using HUSH (the only one I have defined to use suprnova) where I change from one that works to one that doesn't to recreate your error:
Code:
m1@Testy:~$ HUSHADDR="$HUSH_ADDRESS.$HUSH_WORKER"
m1@Testy:~$ $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $HUSH_POOL --user $HUSHADDR --pass $MINER_PWD --port $HUSH_PORT
+-------------------------------------------------+
|         EWBF's Zcash CUDA miner. 0.3.4b         |
+-------------------------------------------------+
INFO: Current pool: zdash.suprnova.cc:4048
INFO: Selected pools: 1
INFO: Solver: Auto.
INFO: Devices: All.
INFO: Temperature limit: 90
INFO: Api: Disabled
---------------------------------------------------
INFO: Target: 0007878787878787...
INFO: Detected new work: ba8
CUDA: Device: 0 GeForce GTX 960, 4036 MB i:64
CUDA: Device: 1 GeForce GTX 970, 4037 MB i:64
INFO: Detected new work: ba9
CUDA: Device: 1 Selected solver: 0
CUDA: Device: 0 Selected solver: 0
INFO 11:54:00: GPU1 Accepted share 89ms [A:1, R:0]
^C
m1@Testy:~$ HUSHADDR="$HUSH_ADDRESS.Invalid"
m1@Testy:~$ $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $HUSH_POOL --user $HUSHADDR --pass $MINER_PWD --port $HUSH_PORT
+-------------------------------------------------+
|         EWBF's Zcash CUDA miner. 0.3.4b         |
+-------------------------------------------------+
INFO: Current pool: zdash.suprnova.cc:4048
INFO: Selected pools: 1
INFO: Solver: Auto.
INFO: Devices: All.
INFO: Temperature limit: 90
INFO: Api: Disabled
---------------------------------------------------
INFO: Target: 0007878787878787...
INFO: Detected new work: 213f
ERROR: Stratum authorization error

So you need to add miner "MSITest" to your suprnova account and then it should work. Without that, suprnova doesn't know who is mining.
newbie
Activity: 96
Merit: 0
Question: what i have to do to mine zcl with ewbf ?

In 1bash, make these changes:
Code:
COIN="ZCL"

ZM_or_EWBF="EWBF"  # choose ZM or EWBF miner

# ZCL
ZCL_WORKER="$WORKERNAME"
ZCL_ADDRESS=""
ZCL_POOL=""
ZCL_PORT=""





i am an idiot lol didn't see it

i am on supernova, whats the proper way to enter the info i got. Where does the password go ?

Code:
EWBF_OPTS="--api $IPW:4200 --fee 0 --pass 11111 --intensity 64"

ZCL_WORKER="MSI Test"
ZCL_ADDRESS="infowire.ZCLMiner" #################################################
ZCL_POOL="zcl.suprnova.cc"
ZCL_PORT="4042"


another error i get when machine reboots/boot Xorg .. rebooting 5sec... but if i close the terminal and wait 30 sec launch it again it works.

miner password is not important but if you like its variable setting is

Code:
MINER_PWD="x"

Change it in 1bash


P.S
Worker name with space gonna give error, change it.




Code:
    
+-------------------------------------------------+
|         EWBF's Zcash CUDA miner. 0.3.4b         |
+-------------------------------------------------+
INFO: Current pool: zcl.suprnova.cc:4042
INFO: Selected pools: 1
INFO: Solver: Auto.
INFO: Devices: All.
INFO: Temperature limit: 90
INFO: Api: Listen on 192.168.1.120:4200
---------------------------------------------------
INFO: Target: 0007878787878787...
INFO: Detected new work: 7676
ERROR: Stratum authorization error



https://preview.ibb.co/jjVbTc/Screenshot_from_2018_04_28_06_48_11.png

member
Activity: 224
Merit: 13
Has anybody mining ETH tried the "OhGodAnETHlargementPill"? It is an executable that makes the DDR5 memory on 1080 Ti's come to life, big time.

I found the linux version here:
https://github.com/OhGodACompany/OhGodAnETHlargementPill/blob/master/OhGodAnETHlargementPill-r2

and I can validate that it runs on nvOC. I don't mine ETH but I tried it on one of my machines with 4 x 1080 Ti and my hash rate went from 145 to 203. So that is a 33% speed increase.

To run it for testing, what I did was open a second putty terminal, DL the file into /home/m1/Downloads, make it executable, change to root and execute it. Then I started up my miner on ETH. It goes kind of like this:
Code:
cd /home/m1/Downloads
wget -N https://github.com/OhGodACompany/OhGodAnETHlargementPill/blob/master/OhGodAnETHlargementPill-r2
chmod +x OhGodAnETHlargementPill-r2
sudo su -
cd /home/m1/Downloads
./OhGodAnETHlargementPill-r2

Then, leave that running and start your miner. What I did was have the miner running already, and then kill it just after starting the pill executable. In just a few seconds, the watchdog restarted my miner for me.

Hope this helps.

EDIT: There is some talk about the Windows version being flagged as being a virus or trojan horse so use at your own risk and proceed with caution.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
Question: what i have to do to mine zcl with ewbf ?

In 1bash, make these changes:
Code:
COIN="ZCL"

ZM_or_EWBF="EWBF"  # choose ZM or EWBF miner

# ZCL
ZCL_WORKER="$WORKERNAME"
ZCL_ADDRESS=""
ZCL_POOL=""
ZCL_PORT=""





i am an idiot lol didn't see it

i am on supernova, whats the proper way to enter the info i got. Where does the password go ?

Code:
EWBF_OPTS="--api $IPW:4200 --fee 0 --pass 11111 --intensity 64"

ZCL_WORKER="MSI Test"
ZCL_ADDRESS="infowire.ZCLMiner" #################################################
ZCL_POOL="zcl.suprnova.cc"
ZCL_PORT="4042"


another error i get when machine reboots/boot Xorg .. rebooting 5sec... but if i close the terminal and wait 30 sec launch it again it works.

miner password is not important but if you like its variable setting is

Code:
MINER_PWD="x"

Change it in 1bash


P.S
Worker name with space gonna give error, change it.
newbie
Activity: 96
Merit: 0
Question: what i have to do to mine zcl with ewbf ?

In 1bash, make these changes:
Code:
COIN="ZCL"

ZM_or_EWBF="EWBF"  # choose ZM or EWBF miner

# ZCL
ZCL_WORKER="$WORKERNAME"
ZCL_ADDRESS=""
ZCL_POOL=""
ZCL_PORT=""





i am an idiot lol didn't see it

i am on supernova, whats the proper way to enter the info i got. Where does the password go ?

Code:
EWBF_OPTS="--api $IPW:4200 --fee 0 --pass 11111 --intensity 64"

ZCL_WORKER="MSI Test"
ZCL_ADDRESS="infowire.ZCLMiner" #################################################
ZCL_POOL="zcl.suprnova.cc"
ZCL_PORT="4042"


another error i get when machine reboots/boot Xorg .. rebooting 5sec... but if i close the terminal and wait 30 sec launch it again it works.
member
Activity: 224
Merit: 13
Question: what i have to do to mine zcl with ewbf ?

In 1bash, make these changes:
Code:
COIN="ZCL"

ZM_or_EWBF="EWBF"  # choose ZM or EWBF miner

# ZCL
ZCL_WORKER="$WORKERNAME"
ZCL_ADDRESS=""
ZCL_POOL=""
ZCL_PORT=""



newbie
Activity: 96
Merit: 0
Question: what i have to do to mine zcl with ewbf ?
newbie
Activity: 96
Merit: 0
Quote
To me, it appears that your core is overclocking but your memory seems low. It could be a characteristic of the memory on that card. I would try increasing the PL since that card has a very high (291) Max Power as compared to my 1070's. I don't have any 1070 ti's [yet] but I do have a couple of MSI cards and they love power. Try again with POWERLIMIT_WATTS=175 or 180 and see if the Memory speeds up.

Also, what are you mining and what sort of hash rate are you getting? It might help to compare that as well.

Etherium
doesn't matter what i set the memory over clock it always at 26

Code:
POWERLIMIT="YES"            # YES or NO # Choose YES to set Global Power Limit for all GPU's

POWERLIMIT_WATTS=175         # Global Power Limit in watts for all GPU's. If enabled, INDIVIDUAL settings will override this.

__CORE_OVERCLOCK=100       # Global Core overclock for all GPU's if not using INDIVIDUAL settings

MEMORY_OVERCLOCK=1250      # Global Memory overclock for all GPU's if not using INDIVIDUAL settings

still at the same 26mhs..
newbie
Activity: 40
Merit: 0
Hello!
First of all, thank you for this freeware os.

I have a quastion about working this os with nvidia p104 cards.
I have systems with only P104 cards. So, I have to connect monitor to the integrated video.
My systems can't work properly with these cards, nvidia x-server fails or can't apply oc for the cards. I tryied "p106 full headless mode" but it didn't help.
How to get system with P104 cards working?


P104 and P102 will be added to next version, for now,
As soon as rig starts and gnome-terminal opens, close it.
Open and edit /home/m1/3main

Change:
Code:
if grep -q "P106-100" /tmp/tempa;
then
  ___1050_or_1050ti="YES"
  P106_100="YES"
fi

To:
Code:
if grep -q -E 'P106|P104|P102' /tmp/tempa;
then
  ___1050_or_1050ti="YES"
  P106_100="YES"
fi

Reboot,
After start it should update Xorg and ask you to disconnect monitor and then it will reboot in 5 seconds.
Should start mining ok
You can then connect with ssh


Thank you very much! I will try it.
fk1
full member
Activity: 216
Merit: 100
Tried XMR today with MPH. Can connect get new jobs but no hashrate. Whats the deal?
member
Activity: 224
Merit: 13

What output do you get from "./nvOC gpuinfo"? It will show the current settings. Be sure to execute this command while mining or the pstate will be wrong. Here is one of my rigs with 1070s:
Code:
m1@Miner1:~$/home/m1/nvOC gpuinfo

ID,VENDOR,MODEL,PSTATE,TEMP,FAN,UTILIZATION,POWER,POWERLIMIT,MAXPOWER,GPUCLOCK,MEMCLOCK
--------------------------------------------------------------------------------
0, EVGA, GeForce GTX 1070, P2, 52, 50, 93, 116.50, 115.00, 170.00, 1797, 4303
1, EVGA, GeForce GTX 1070, P2, 60, 50, 98, 115.21, 115.00, 170.00, 1860, 4303
2, EVGA, GeForce GTX 1070, P2, 61, 50, 100, 118.40, 115.00, 170.00, 1835, 4303
3, EVGA, GeForce GTX 1070, P2, 66, 50, 100, 117.45, 115.00, 170.00, 1860, 4303
4, EVGA, GeForce GTX 1070, P2, 67, 50, 100, 115.93, 115.00, 170.00, 1898, 4303
5, EVGA, GeForce GTX 1070, P2, 56, 50, 100, 113.05, 115.00, 170.00, 1835, 4303
6, EVGA, GeForce GTX 1070, P2, 57, 50, 99, 116.92, 115.00, 170.00, 1898, 4303


Code:
ID,VENDOR,MODEL,PSTATE,TEMP,FAN,UTILIZATION,POWER,POWERLIMIT,MAXPOWER,GPUCLOCK,MEMCLOCK
--------------------------------------------------------------------------------
0, MSI, GeForce GTX 1070, P2, 63, 37, 100, 143.45, 145.00, 291.00, 1860, 3802

To me, it appears that your core is overclocking but your memory seems low. It could be a characteristic of the memory on that card. I would try increasing the PL since that card has a very high (291) Max Power as compared to my 1070's. I don't have any 1070 ti's [yet] but I do have a couple of MSI cards and they love power. Try again with POWERLIMIT_WATTS=175 or 180 and see if the Memory speeds up.

Also, what are you mining and what sort of hash rate are you getting? It might help to compare that as well.
Pages:
Jump to: