Pages:
Author

Topic: KopiemTu 3.0 - ethash & equihash - NVIDIA USB linux distro - page 5. (Read 39765 times)

hero member
Activity: 710
Merit: 502
but that is only on nicehash pool right?, nicehash pays crap compared to other pools Sad dunno if the difference in efficiency worth it, what do you think?
legendary
Activity: 1292
Merit: 1000

"Up to 220 Sol/s @ GTX1070":

Code:
wget https://www.nicehash.com/tools/eqm_v1.0.2b_Linux_Ubuntu16.zip
unzip eqm_v1.0.2b_Linux_Ubuntu16.zip

confirmed ~200 Sols/s = nVidia in the equihash game Smiley


P.S. unfortunately, monitoring support is really messy with current eqm_ubuntu_16 logging limitations...
legendary
Activity: 1292
Merit: 1000

P.S. I'm just testing an auto-switching mode - two hours of operation as planned until now Smiley


legendary
Activity: 1292
Merit: 1000

Nice! Maybe some direct command to switch coin eg: mine switch zcash or mine switch lbry etc. Also from master rig:  mmis zcash etc... ?


actually, I didn't want to insert any particular coin into a scrypt, but only algos
(coins may be short term, algos are rather longer term):

Code:
root@kopiemtu:~# cat /opt/kopiemtu/miner.sh

TEST=`cat /etc/kopiemtu/miner.conf | grep algo | wc -l`

if [ $TEST -eq 1 ]
then

        URL=`cat /etc/kopiemtu/miner.conf | grep url | cut -d'"' -f4`
        USER=`cat /etc/kopiemtu/miner.conf | grep user | cut -d'"' -f4`
        PASS=`cat /etc/kopiemtu/miner.conf | grep pass | cut -d'"' -f4`
        ALGO=`cat /etc/kopiemtu/miner.conf | grep algo | cut -d'"' -f4`
        TEST=`cat /etc/kopiemtu/miner.conf | grep syslog | cut -d':' -f2`

        if [ "$TEST" = " true" ]
        then
                SYSLOG=`echo --syslog`
        fi

        if [ "$ALGO" = "lbry" ]
        then
                LD_LIBRARY_PATH=/usr/local/cuda/lib64 /opt/miners/ccminer-1.8.2-tpruvot/ccminer -c /etc/kopiemtu/miner.conf

        elif [ "$ALGO" = "lyra2v2" ]
        then
                LD_LIBRARY_PATH=/usr/local/cuda/lib64 /opt/miners/ccminer-vert-1.5.80.4-vert/ccminer -c /etc/kopiemtu/miner.conf

        elif [ "$ALGO" = "equihash" ]
        then
                LD_LIBRARY_PATH=/usr/local/cuda/lib64 /opt/miners/silentarmy/ccminer --use 0,1,2,3 --instances=1 -c $URL -u $USER -p $PASS $SYSLOG

        elif [ "$ALGO" = "ethash" ]
        then
                LD_LIBRARY_PATH=/usr/local/cuda/lib64 /opt/miners/claymore-7.3/ccminer -epool $URL -ewal $USER -epsw $PASS -esm 2 -mode 1 -allpools 1 -logfile /var/log/syslog

        else
                #default ccminer
                LD_LIBRARY_PATH=/usr/local/cuda/lib64 /opt/miners/ccminer-vert-1.5.80.1-vert/ccminer -c /etc/kopiemtu/miner.conf
        fi

fi


that is old habit from BAMT, where in /etc/BAMT configuration file for cgminer was placed.
My idea was to save the time and swap more than one previously prepared configuration by "mine switch" (and filename is where the coin name goes)


P.S. I'm just testing an auto-switching mode - two hours of operation as planned until now Smiley
member
Activity: 92
Merit: 10

Thaks for the hints. For now , everything is working fine, except overclocking the gpu's.
 Atm 5 rig is running on kopiemtu 3.0 and tomorrow will add another 3.


Nice!

P.S. some starting point for OC:
http://www.phoronix.com/scan.php?px=MTY1OTM&page=news_item


hint3:
it seems the best (i.e. least confusing) practice is to have only two mainly used configurations, e.g.:

Code:
root@kopiemtu:/etc/kopiemtu# ls -lt
total 16
drwxr-xr-x 2 root root 4096 Nov 19 12:52 templates
-rw-r--r-- 1 root root  109 Nov 19 12:51 miner.conf
-rw-r--r-- 1 root root  109 Nov 19 12:51 eth.conf
-rw-r--r-- 1 root root  109 Nov 19 09:39 etc.conf
root@kopiemtu:/etc/kopiemtu#

and to switch whole farm imediately from one configuration to another - by single command 'mmih' from master rig
(here: switching between ETH and ETC)

Code:
mmip; mmih; mmit

but in case of ad-hoc necessity - one-time mining event (eg. for LBRY) can be made by such combination from master rig:

Code:
mmip
mm "cp /etc/kopiemtu/templates/lbry.conf /etc/kopiemtu/miner.conf"
mmit

Next 'mmih' - will override miner.conf and situation will change back into the starting point.


Nice! Maybe some direct command to switch coin eg: mine switch zcash or mine switch lbry etc. Also from master rig:  mmis zcash etc... ?
legendary
Activity: 1292
Merit: 1000

Thaks for the hints. For now , everything is working fine, except overclocking the gpu's.
 Atm 5 rig is running on kopiemtu 3.0 and tomorrow will add another 3.


Nice!

P.S. some starting point for OC:
http://www.phoronix.com/scan.php?px=MTY1OTM&page=news_item


hint3:
it seems the best (i.e. least confusing) practice is to have only two mainly used configurations, e.g.:

Code:
root@kopiemtu:/etc/kopiemtu# ls -lt
total 16
drwxr-xr-x 2 root root 4096 Nov 19 12:52 templates
-rw-r--r-- 1 root root  109 Nov 19 12:51 miner.conf
-rw-r--r-- 1 root root  109 Nov 19 12:51 eth.conf
-rw-r--r-- 1 root root  109 Nov 19 09:39 etc.conf
root@kopiemtu:/etc/kopiemtu#

and to switch whole farm imediately from one configuration to another - by single command 'mmih' from master rig
(here: switching between ETH and ETC)

Code:
mmip; mmih; mmit

but in case of ad-hoc necessity - one-time mining event (eg. for LBRY) can be made by such combination from master rig:

Code:
mmip
mm "cp /etc/kopiemtu/templates/lbry.conf /etc/kopiemtu/miner.conf"
mmit

Next 'mmih' - will override miner.conf and situation will change back into the starting point.
legendary
Activity: 1292
Merit: 1000

Thaks for the hints. For now , everything is working fine, except overclocking the gpu's.
 Atm 5 rig is running on kopiemtu 3.0 and tomorrow will add another 3.


Nice!

P.S. some starting point for OC:
http://www.phoronix.com/scan.php?px=MTY1OTM&page=news_item
member
Activity: 92
Merit: 10

 Shocked  Smiley
Thanks! Sending you a 6 pack beer!

Txid: 3acdd7433b564fe6c8b8e4799c1a344effc55e9f26244cbdf60025ef4cad0162


6-pack beer confirmed! Smiley THANKS!!!

current master web view (with temp and fan) - for me is single point of verifyng if everything goes right,
actually hard to imagine for me now how to work without such time-saving thing


hint1: if you would like to add some new rig in-the-fly:
1. add in /root/master.conf
2. add in /etc/hosts
3. scp /root/.ssh/id_rsa.pub w??:/root/.ssh/authorized_keys
4. mkdir /var/www/192.168.x.x

hint2: if you goes from higher total hashrate to lower (on master rig only)
1. monitor stop
2. rm /var/www/global.bin
3. monitor start

P.S.
I observe that start/stop mechanism in new 16.04 Ubuntu is not 100% reliable, mainly for stopping monitor process
mm "ps -ef | grep moni"

if some monitor process is not killed by mmop, I'm using big gun:
mm "killall monitor"
and eventually
mm /opt/kopiemtu/monitor



Thaks for the hints. For now , everything is working fine, except overclocking the gpu's.
 Atm 5 rig is running on kopiemtu 3.0 and tomorrow will add another 3.
legendary
Activity: 1292
Merit: 1000

 Shocked  Smiley
Thanks! Sending you a 6 pack beer!

Txid: 3acdd7433b564fe6c8b8e4799c1a344effc55e9f26244cbdf60025ef4cad0162


6-pack beer confirmed! Smiley THANKS!!!

current master web view (with temp and fan) - for me is single point of verifyng if everything goes right,
actually hard to imagine for me now how to work without such time-saving thing


hint1: if you would like to add some new rig in-the-fly:
1. add in /root/master.conf
2. add in /etc/hosts
3. scp /root/.ssh/id_rsa.pub w??:/root/.ssh/authorized_keys
4. mkdir /var/www/192.168.x.x

hint2: if you goes from higher total hashrate to lower (on master rig only)
1. monitor stop
2. rm /var/www/global.bin
3. monitor start

P.S.
I observe that start/stop mechanism in new 16.04 Ubuntu is not 100% reliable, mainly for stopping monitor process
mm "ps -ef | grep moni"

if some monitor process is not killed by mmop, I'm using big gun:
mm "killall monitor"
and eventually
mm /opt/kopiemtu/monitor

member
Activity: 92
Merit: 10


If you have DHCP server in your network and headless PC - use any ssh client to connect (check your router logs for new assigned IP):
login: root
password: live

From GUI - just open LXTerminal and type:
sudo su -


Quick Guide:



I can't get to work master commands!

live@kopiemtu:~$ mmis
No command 'mmis' found, did you mean:
 Command 'mmls' from package 'sleuthkit' (universe)
mmis: command not found
live@kopiemtu:~$

live@kopiemtu:~$ mm uptime
Use on master only
live@kopiemtu:~$ mm 'nvidia-smi | grep %'
Use on master only
live@kopiemtu:~$


I allready convert to master rig. Web statistic is working, just commands not.



let me show you what is wrong Smiley


live@kopiemtu:~$
live@kopiemtu:~$ mm uptime
Use on master only
live@kopiemtu:~$
live@kopiemtu:~$ whoami
live
live@kopiemtu:~$
live@kopiemtu:~$ su -
Password:
root@kopiemtu:~# whoami
root
root@kopiemtu:~# mm uptime
master:
 22:34:11 up 16 days, 11:07,  1 user,  load average: 0.47, 0.52, 0.47
w12:
 22:34:11 up 16 days, 11:05,  0 users,  load average: 0.52, 0.42, 0.40
w13:
 22:34:12 up 6 days,  1:59,  0 users,  load average: 0.47, 0.48, 0.51
w14:
^C
root@kopiemtu:~#


Smiley


 Shocked  Smiley
Thanks! Sending you a 6 pack beer!

Txid: 6097911cde088052f5bc3e02d6403c5d5c616e2035bb1d32834c68020b3d548b
legendary
Activity: 1292
Merit: 1000


If you have DHCP server in your network and headless PC - use any ssh client to connect (check your router logs for new assigned IP):
login: root
password: live

From GUI - just open LXTerminal and type:
sudo su -


Quick Guide:



I can't get to work master commands!

live@kopiemtu:~$ mmis
No command 'mmis' found, did you mean:
 Command 'mmls' from package 'sleuthkit' (universe)
mmis: command not found
live@kopiemtu:~$

live@kopiemtu:~$ mm uptime
Use on master only
live@kopiemtu:~$ mm 'nvidia-smi | grep %'
Use on master only
live@kopiemtu:~$


I allready convert to master rig. Web statistic is working, just commands not.



let me show you what is wrong Smiley


live@kopiemtu:~$
live@kopiemtu:~$ mm uptime
Use on master only
live@kopiemtu:~$
live@kopiemtu:~$ whoami
live
live@kopiemtu:~$
live@kopiemtu:~$ su -
Password:
root@kopiemtu:~# whoami
root
root@kopiemtu:~# mm uptime
master:
 22:34:11 up 16 days, 11:07,  1 user,  load average: 0.47, 0.52, 0.47
w12:
 22:34:11 up 16 days, 11:05,  0 users,  load average: 0.52, 0.42, 0.40
w13:
 22:34:12 up 6 days,  1:59,  0 users,  load average: 0.47, 0.48, 0.51
w14:
^C
root@kopiemtu:~#


Smiley
member
Activity: 92
Merit: 10
hero member
Activity: 710
Merit: 502
Hi jk_14
did you try on kopiemtu 3 the last build of krnlx (silentarmy) for zcash? they advertised 91 sols per gtx 1070, i am getting 88 sol/s but GPU utilization is 89% so it is probably because i have a weak processor (AM1).
i compiled on one of the GTX 970 Rigs that has a big-ass CPU, but it does not hash (always 0 sol/s so it is probably not made for older cards than 10xx )
hero member
Activity: 710
Merit: 502
nice!
but claymore has devfee right? how much?
how much does a GTX 1070 with that miner in ETH? (stock clocks, not OC, at 90W TPL)

"current developer fee is 1% for Ethereum-only mining mode (-mode 1) and 2% for dual mining mode (-mode 0), every hour the miner mines for 36 or 72 seconds for developer."

26MH/s @85W with my card
Thanks!, i really thought that claymore was able to squeeze more MH in ETH, but it seems that it is not the case.

Almost the same speed i get with the open source genoil's miner (25.7 MH at 90W TPL (P2)), i will try to make it work in kopiemtu 3 as soon as i have time Smiley
legendary
Activity: 1292
Merit: 1000
nice!
but claymore has devfee right? how much?
how much does a GTX 1070 with that miner in ETH? (stock clocks, not OC, at 90W TPL)

"current developer fee is 1% for Ethereum-only mining mode (-mode 1) and 2% for dual mining mode (-mode 0), every hour the miner mines for 36 or 72 seconds for developer."

26MH/s @85W with my card
hero member
Activity: 710
Merit: 502
nice!
but claymore has devfee right? how much?
how much does a GTX 1070 with that miner in ETH? (stock clocks, not OC, at 90W TPL)
legendary
Activity: 1292
Merit: 1000

ETH/ETC with monitoring support:

(stop your ETH/ETC mining on screen manually first, if running)

Code:

cd /root; mine stop; monitor stop
rm -rf /opt/miners/claymore-7.3
rm -f /root/claymore.tgz

wget http://mbl.cash/claymore.tgz
tar -xPf claymore.tgz

mine switch

mine start
monitor start


P.S. no hashrate impact down to 85W powerlimit




ZCASH with monitoring support:

(stop your zcash mining on screen manually first, if running)

Code:
cd /root; mine stop; monitor stop
rm -rf /opt/miners/silentarmy
rm -f /root/silentarmy.tgz

wget http://mbl.cash/silentarmy.tgz
tar -xPf silentarmy.tgz

mine switch

mine start
monitor start

legendary
Activity: 1292
Merit: 1000
wow! nice!, i have never heard of that card before, it doesn't exists here in my region.
soooo... if that card has bios switch then the feature should be present on others, i will investigate the PCB of the gigabyte g1  Grin thanks!

back in the AMD Litecoin era, i screw so much with the AMD bioses, i bricked my cards easily 200 times hehe trying to find the sweet spot, which i did, but i cannot do the same with nvidia cards unless i have a bios switch Wink



it might be the same card:
Gainward GeForce GTX 1070 Phoenix Golden Sample

I'm waiting for results of your bios research Wink
hero member
Activity: 710
Merit: 502

That means I need to flash the cards???  Sad that's cary when they don't have bios switch like the AMD had.

my 1070 babies have that switch, too Smiley
Which 1070's have switch?? if the pins are present in the Gigabyte G1 series i will solder them the switch Smiley hehe.



http://www.guru3d.com/articles-pages/palit-geforce-gtx-1060-super-jetstream-review,4.html

that's 1060, the same is for 1070
wow! nice!, i have never heard of that card before, it doesn't exists here in my region.
soooo... if that card has bios switch then the feature should be present on others, i will investigate the PCB of the gigabyte g1  Grin thanks!

back in the AMD Litecoin era, i screw so much with the AMD bioses, i bricked my cards easily 200 times hehe trying to find the sweet spot, which i did, but i cannot do the same with nvidia cards unless i have a bios switch Wink
legendary
Activity: 1292
Merit: 1000
hi, would you plz include Optiminer or guide us on a how-to-do so? thanks!

https://github.com/Optiminer/OptiminerZcash

I wonder why Optiminer is not even mentioned on btctalk forums..  Huh


from README.md...

"Supports:
- Linux 64bit only.
- AMD GCN cards only.

Expected speed (stock card):
- R9 Nano: 185S/s
- R9 290: 140S/s
- RX 470: 130S/s

Windows support may be added in a future version.

No NVIDIA support planned at the moment."
Pages:
Jump to: