Search content
Sort by

Showing 4 of 4 results by batagope
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PoW/MN] Gentarium (GTM) | Masternode hosting platform | Shared MN service
by
batagope
on 14/01/2019, 16:42:13 UTC
BUY MY LAST CHEAP GTM MASTERNODE !!!

1023.76 GTM : 0.15809859 BTC
 1  GTM :  0.00015443 BTC

TRADE LINK : https://trade.mct.plus/trade/view/n17Ap2PQBur2vApO47Y3XsBGh-BTC

DON'T MISS THIS UNIQUE OFFER !!!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PoW/MN] Gentarium (GTM) | Masternode hosting platform | Shared MN service
by
batagope
on 03/01/2019, 16:27:10 UTC
For those that looking to buy some GTM coins, I can highly recommend MCT Platform (trade.mct.plus). MCT is not a real exchange, but a secure trading platform, but, it's only place at the moment when you can deposit and withdraw GTM coins. I am currently selling 1000 GTM on MCT, but you can buy as many as you like, because MCT allows partial trading. If you are interested to buy some GTM coins at 20% discount price, click on the following link:

Only $0.60 for 1 GTM

Trade on MCT
Post
Topic
Board Mining (Altcoins)
Re: tdxminer lyra2z/XZC Miner for AMD GPUs on Linux
by
batagope
on 09/07/2018, 18:54:48 UTC
Because tdxminer doesn't show info about temperature and fan speed, you can use utility of rocm drivers. Smiley

If you  open new terminal beside your tdxminer and type:

Code:
/opt/rocm/bin/rocm-smi

you will get info about temperature, average power consumption, fan speed, and other info about your GPUs.
Problem with this command is that it only shows current state of your GPUs. If you want to monitor GPUs info for a certain interval, you can use watch command. Smiley Type in your terminal:

Code:
watch -n 0,5 /opt/rocm/bin/rocm-smi

and you will get your GPUs info every 0.5 second. Smiley

I hope that this post will be helpful for some of you. Cheers. Smiley
Post
Topic
Board Mining (Altcoins)
Re: tdxminer lyra2z/XZC Miner for AMD GPUs on Linux
by
batagope
on 09/07/2018, 18:40:38 UTC
Fist of all i should thank the dev for making the vega very profitable again

Here is what i did

6x Vega 56 (MSI Airboost OC)
Asus B250 Mining Expert Mobo with PCI-E 1x risers and Gen3 in BIOS

1. Freshly Installed Ubuntu 16.04 Desktop (http://releases.ubuntu.com/16.04/)
2. Followed the ROCM AMD Driver Installation (https://github.com/RadeonOpenCompute/ROCm)

Created a Fan Control Script (amd-fan.sh)

#!/bin/bash
/opt/rocm/bin/rocm-smi -d 0 --setfan 150
/opt/rocm/bin/rocm-smi -d 1 --setfan 150
/opt/rocm/bin/rocm-smi -d 2 --setfan 150
/opt/rocm/bin/rocm-smi -d 3 --setfan 150
/opt/rocm/bin/rocm-smi -d 4 --setfan 150
/opt/rocm/bin/rocm-smi -d 5 --setfan 150
exit 0


No other Overclocking as it does not improve my hashrate but the Power consumption but with the stock settings and fan limit each card is consuming 150W so total 900W

https://imgur.com/xzGT0Sk

At present getting 35Mhs and miner is very stable, actually impressed with it

https://imgur.com/B6XQGK1

Will play with OCs soon and update

I must say Vega is pretty stable on linux, i have been mining Haven, Loki on windows and i know how hard to keep watching the miner crash, thanks a lot Dev @todxx

You don't need to target every GPU in your script with -d parameter. If you type

/opt/rocm/bin/rocm-smi --setfan 150

it will set fan value on all GPUs. Smiley