Pages:
Author

Topic: [ mining os ] nvoc - page 2. (Read 418523 times)

full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
March 08, 2019, 04:03:04 AM

............

Changes made to the various files to allow the use of the new version of xmr-stak (2.9.0) in nvOC 19.3.0 :

Changes in 0miner file (adding) :

...........




Thanks for detailed howto

From next release with pluggable miners you dont need to edit 0miner or any other scripts, just need 3 sections bellow, add new algo to algos,  newalgo_coins and newalgo_miner info to 1bash and all is set.


Code:
ALGOS=" .... CRYPTONIGHTR ....  "

Code:
CRYPTONIGHTR_COINS=" ... "

Code:
CRYPTONIGHTR_INTENSITY="5"
CRYPTONIGHTR_MINER="XMR_Stak"
CRYPTONIGHTR_WALLET_FORMAT="$WALLET_ADDRESS_FORMAT"
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
March 07, 2019, 06:09:41 PM
Code:
You have to compile yourself this new xrm-stak release and remake these 2 symbolic links path "recommended" and "latest"

commands :
1/ download and compilation

[code]cd /NVOC/mining/miners/XMR_Stak/src (there must not already be a folder named xmr-stak)
git clone https://github.com/fireice-uk/xmr-stak.git
cd xmr-stak/xmrstak/

=> Modify the donate-level like you wish to donet at the develeppers that is 2%, save the file, and quit by command

Code:
sudo vi donate-level.hpp

Code:
:wq!

Code:
cat donate-level.hpp (to verify this changes)
cd ..
mkdir build
cd build/
cmake ..
make install

wait for several minutes, the compilation remains stuck or stagnates around 71% to 75%, then progresses rapidly thereafter

Code:
cd bin/
ll
mkdir /home/m1/NVOC/mining/miners/XMR_Stak/2.9.0/
~/NVOC/mining/miners/XMR_Stak/src/xmr-stak/build/bin$ sudo cp * /home/m1/NVOC/mining/miners/XMR_Stak/2.9.0
cd /home/m1/NVOC/mining/miners/XMR_Stak/
rm recommended
rm latest

remake the new symbolic links
Code:
ln -s /home/m1/NVOC/mining/miners/XMR_Stak/2.9.0 latest
ln -s /home/m1/NVOC/mining/miners/XMR_Stak/2.9.0 recommended


Changes made to the various files to allow the use of the new version of xmr-stak (2.9.0) in nvOC 19.3.0 :

Changes in 0miner file (adding) :

elif [[ $ALGO == CRYPTONIGHTV7 || $ALGO == CRYPTONIGHTHEAVY || $ALGO == CRYPTONIGHTV8 ]];
then

to

elif [[ $ALGO == CRYPTONIGHTV7 || $ALGO == CRYPTONIGHTHEAVY || $ALGO == CRYPTONIGHTV8 || $ALGO == CRYPTONIGHTR ]];
then


and a little bit below


if [[ $ALGO == "CRYPTONIGHTV7" ]]
  then
    UCCALGO="--currency cryptonight_v7"
  elif [[ $ALGO == "CRYPTONIGHTV8" ]]
  then
    UCCALGO="--currency cryptonight_v8"
  elif [[ $ALGO == "CRYPTONIGHTHEAVY" ]]
  then
    UCCALGO="--currency cryptonight_heavy"
  fi

to

 if [[ $ALGO == "CRYPTONIGHTV7" ]]
  then
    UCCALGO="--currency cryptonight_v7"
  elif [[ $ALGO == "CRYPTONIGHTV8" ]]
  then
    UCCALGO="--currency cryptonight_v8"
  elif [[ $ALGO == "CRYPTONIGHTHEAVY" ]]
  then
    UCCALGO="--currency cryptonight_heavy"
   elif [[ $ALGO == "CRYPTONIGHTR" ]]
  then
    UCCALGO="--currency monero"
  fi


Note 1 : Developpers alert us on their gihub page by this message  :Select the currency monero to switch automatically the algorithm from cryptonight_v8 to cryptonight_r

So, i choose to define UCCALGO="--currency monero" instead of UCCALGO="--currency cryptonight_r" for the moment

In 1bash file

in # Algo definitions and Coin->Algo mappings

added CRYPTONIGHTR here :
ALGOS="BITCORE CRYPTONIGHT CRYPTONIGHTHEAVY CRYPTONIGHTV7 CRYPTONIGHTV8 CRYPTONIGHTR DECRED EQUIHASH ETHASH GRS LBRY LYRA2V2 LYRA2Z MYR_GR NEOSCRYPT PASCAL PHI1612 PHI2 SIA SIB SKEIN SKUNK X13 X16R XEVAN ZHASH"

and here :

BITCORE_COINS="BTX"
CRYPTONIGHT_COINS="KRB,NICE_CRYPTONIGHT"
CRYPTONIGHTV7_COINS="ETN,NICE_CNV7"
CRYPTONIGHTV8_COINS="MPH_CRYPTONIGHTV8,NICE_CNV8"
CRYPTONIGHTR_COINS="XMR"
CRYPTONIGHTHEAVY_COINS="LOKI,NICE_CNHEAVY"
DECRED_COINS="DCR"
EQUIHASH_COINS="ZEC,ZEN,HUSH,ZCL,BTCP,KMD,ZPOOL_EQUIHASH,MPH_EQUIHASH,NICE_EQUIHASH,VOTE,BTCP,BCI"
...
...
...

I removed XMR from CRYPTONIGHTV8_COINS line


in # Algo->miner mapping and specific settings  Section

added :

## CRYPTONIGHTR
CRYPTONIGHTR_INTENSITY="5"
CRYPTONIGHTR_MINER="XMR_Stak"
CRYPTONIGHTR_WALLET_FORMAT="$WALLET_ADDRESS_FORMAT"[/code]
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
March 07, 2019, 04:16:20 PM
Monero Fork in approach : https://bitcointalksearch.org/topic/m.49737084

New xmr-stak 2.8.3 with new consensus : https://github.com/fireice-uk/xmr-stak/releases/latest

I will try it for now and returns you if i have some difficulties.

Another news about monero algo fork and my favorite miner xmr-stak :

https://github.com/fireice-uk/xmr-stak/releases/tag/2.9.0

Quote
This release introduce cryptonight_r required for the Monero for on 2019/09/03. Select the currency monero to switch automatically the algorithm from cryptonight_v8 to cryptonight_r with the Monero blockversion 10.

Please note that this version is a bit rough around the edges due to the emergency nature of Monero fork. CPU mining in particular will be very slow. We plan to release a more polished version around the fork date.

therefore, can you modify the appropriate scripts so that they can run xmr-stak with the adapted command that will select the new cryptonight_R algorithm?

it is currently not available in the 1bash and therefore not in the 0miner file either.

NB: I have not yet tried the new version of testing with this new interface that seems to bring something very attractive visually, but I'll see what I can do after the fork of Monero

translated from french by google traduction
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
March 07, 2019, 09:05:11 AM
holycow those screenshot  Grin

You should check the new dark theme
jr. member
Activity: 114
Merit: 2
March 05, 2019, 12:40:37 PM
holycow those screenshot  Grin
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
March 05, 2019, 05:06:23 AM
nvOC -19-3.1 beta testing


nvOC-19-3.1 is ready for beta_testing.

We done our job, now its your turn to test, report and make it ready for stable release.



Thank you for your all hard work.

am using 3.1 beta and mining Grin coin via Gminer , all looks well now. (Foreman dashboard also worked)

keep monitoring.

Thanks again.




Glad to hear that

And thanks a lot for testing.

full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
March 05, 2019, 05:00:39 AM

Some Foreman Dashboard screenshots available on nvOC 19-3.1 beta:

Demo: https://dashboard.foreman.mn/demo/

Dashboard:



Miners overview:



Miner Detail:


Earnings:
newbie
Activity: 6
Merit: 0
March 05, 2019, 03:42:26 AM
nvOC -19-3.1 beta testing


nvOC-19-3.1 is ready for beta_testing.

We done our job, now its your turn to test, report and make it ready for stable release.



Thank you for your all hard work.

am using 3.1 beta and mining Grin coin via Gminer , all looks well now. (Foreman dashboard also worked)

keep monitoring.

Thanks again.

full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
March 04, 2019, 04:07:11 AM
nvOC -19-3.1 beta testing


nvOC-19-3.1 is ready for beta_testing.

We done our job, now its your turn to test, report and make it ready for stable release.




Changelog:

Foreman Dashboard integration:
Now you can remotely monitor your nvOC rigs via the Foreman dashboard
Register an account at https://foreman.mn and enable monitoring in 1bash

Pluggable miners:
Easily add custom miners without editing any other scripts
Create your miner folder and add .nvoc-miner.json in the folder (see existing miners as an example)

Scheduled mining:
Schedule your mining to stop and start at certain times of day

Support device selective mining:
Disable specific GPUs in 1bash

Tempcontrol:
Improved tempcontrol monitoring in abnormal situations
Added FAN_DIFF to allow fan control not to set fan with small differences

Load check:
Removed load checking from watchdog
Added a new script to check rig load average and reboot if needed

Misc:
Removed obsolete cuda-8 miners - new image (for 19-3.2 stable) will ship with cuda-9.2 only and much smaller
Added new coins, algos and miners
Big fixes and improvements


Use this guide on how to set side-by-side beta_testing with stable.

newbie
Activity: 66
Merit: 0
February 22, 2019, 03:08:27 AM
Please add rito coin (RITO), X21S algo. Can be mined with t-rex, atleast. And t-rex could be updated aswell.

https://ritocoin.org/


--
Tigel

Will be added in next release.

You can check 3.1-dev 1bash.template 4f2f31d commit and 0miner b6022f9 commit on github to see how to add it your self until next release gets ready.

T-Rex updated to 0.9.2 in 3.0-stable miners


Awesome, thank you!
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
February 20, 2019, 06:53:13 AM
Monero Fork in approach : https://bitcointalksearch.org/topic/m.49737084

New xmr-stak 2.8.3 with new consensus : https://github.com/fireice-uk/xmr-stak/releases/latest

I will try it for now and returns you if i have some difficulties.


xmr-stak 2.8.3 is now compiled on my miner and operate at 5120 H/s in CNV8. slithly more effcient than prévious version.
I dont't know if this new version is ready for the next monero hardfok in 9 march. if i read exactly, they wil use a CNV8 algo that they slighly modified to counter the new hybrid ASICs and FPGA miners that appears in décember 2018 and that represent now more than 65% of XMR hashrate.

good mining to all of you.


Updated in 3.0-stable miners, not tested.

Update, test and let us know.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
February 20, 2019, 06:51:54 AM
Please add rito coin (RITO), X21S algo. Can be mined with t-rex, atleast. And t-rex could be updated aswell.

https://ritocoin.org/


--
Tigel

Will be added in next release.

You can check 3.1-dev 1bash.template 4f2f31d commit and 0miner b6022f9 commit on github to see how to add it your self until next release gets ready.

T-Rex updated to 0.9.2 in 3.0-stable miners
newbie
Activity: 66
Merit: 0
February 20, 2019, 02:10:08 AM
Please add rito coin (RITO), X21S algo. Can be mined with t-rex, atleast. And t-rex could be updated aswell.

https://ritocoin.org/


--
Tigel
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
February 18, 2019, 10:56:18 AM
Hi, is it possible to mine the GRIN coin?

Sure, update nvOC-3.0 stable to latest
You can mine it with both BMiner and GMiner

Code:
bash ~/NVOC/mining/nvOC upgrade
member
Activity: 73
Merit: 10
February 18, 2019, 08:46:05 AM
Hi, is it possible to mine the GRIN coin?
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
February 17, 2019, 01:34:28 PM
Monero Fork in approach : https://bitcointalksearch.org/topic/m.49737084

New xmr-stak 2.8.3 with new consensus : https://github.com/fireice-uk/xmr-stak/releases/latest

I will try it for now and returns you if i have some difficulties.


xmr-stak 2.8.3 is now compiled on my miner and operate at 5120 H/s in CNV8. slithly more effcient than prévious version.
I dont't know if this new version is ready for the next monero hardfok in 9 march. if i read exactly, they wil use a CNV8 algo that they slighly modified to counter the new hybrid ASICs and FPGA miners that appears in décember 2018 and that represent now more than 65% of XMR hashrate.

good mining to all of you.
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
February 17, 2019, 11:48:26 AM
Monero Fork in approach : https://bitcointalksearch.org/topic/m.49737084

New xmr-stak 2.8.3 with new consensus : https://github.com/fireice-uk/xmr-stak/releases/latest

I will try it for now and returns you if i have some difficulties.
newbie
Activity: 11
Merit: 0
February 10, 2019, 06:04:48 AM
I'm sorry but it is very unlikely you could still find someone here on the old nvOC 2.0 who could help you.

I didn't knew about nvOC 19-3.x!! I will download this new version and use it.Thanks
jr. member
Activity: 128
Merit: 1
February 09, 2019, 10:20:07 AM
I'm sorry but it is very unlikely you could still find someone here on the old nvOC 2.0 who could help you.
newbie
Activity: 11
Merit: 0
February 08, 2019, 02:13:51 PM
Hi,

How can i add PhoenixMiner & Ubqminer to community build2.0 for mining ubiq??
Pages:
Jump to: