Search content
Sort by

Showing 20 of 29 results by tempgoga
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PRESALE-ICO]Soma - A Decentralized Social Marketplace
by
tempgoga
on 14/08/2017, 09:01:35 UTC
i dont understand, on the site it says the token sale starts in 43 days, but i can already buy now in a "pre-sale" and i get a bonus depending on what week we are in the this presale? then why does the bonus not apply when i enter an ETH number in the contribution box? doesn't work on the main token sale page and doesn't work on the confirmation page with the contribution address, shows 0 bonus.

please advise.

is no one monitoring this thread?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][PRESALE-ICO]Soma - A Decentralized Social Marketplace
by
tempgoga
on 13/08/2017, 14:15:40 UTC
i dont understand, on the site it says the token sale starts in 43 days, but i can already buy now in a "pre-sale" and i get a bonus depending on what week we are in the this presale? then why does the bonus not apply when i enter an ETH number in the contribution box? doesn't work on the main token sale page and doesn't work on the confirmation page with the contribution address, shows 0 bonus.

please advise.
Post
Topic
Board עברית (Hebrew)
מוכר מכונת כריית איטריום וסיה - Selling an Ethereum/Siacoin dual mining rig
by
tempgoga
on 30/07/2017, 15:08:44 UTC
שלום לכולם, אני ושותפי לבנייה מוכרים מכונה לכרייה כפולה, המכונה מייצרת איטריום וסיה במקביל במהירות של 220 מגהאשים לאיטריום ו2930 מגהאשים לסיה, המכונה צורכת 970 וואט מהקיר.
המכונה יודעת לעשות ריסטרט במידה ויש תקלה בתהליך הייצור ולשלוח מייל המודיע על הריסטרט, המכונה יודעת להתחיל לייצר שוב אוטומטית במקרה של הפסקת חשמל.

לפרטים מלאים ויצירת קשר בנינו עמוד נחיתה: www.coindecryptor.com

!Hello everyone
.My partner and i are selling our dual mining rig, the rig is set to mine Ethereum & Siacoin at 220Mh/s for Ethereum and 2930Mh/s for Siacoin while consuming a mere 970W from the wall
.The rig automatically restarts if it encounters a problem with the mining process and will alert you via email, the rig will also automatically resume mining in the event of a power loss

For more details and contact info visit our landing page: www.coindecryptor.com

http://www.coindecryptor.com/img/machine1.jpg
http://www.coindecryptor.com/img/machine2.jpg
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0018
by
tempgoga
on 16/07/2017, 19:15:42 UTC
Hello again fullzero,

Haven't checked the thread since page 84 so i'm sure i have plenty to catch up to, i see you and some of the posters went ahead and made a monitoring script, kinda sorry i've been out of the loop since i too made a monitoring script because of my recurring soft/hard crashes.


i'm not sure if your script covers the same thing mine does, or if they can be merged so i'll let you be the judge, basically what it does is monitor the system load average and if it goes over a specified amount (in my case over 2.0 means i had a soft crash and soon the load average will climb until not even SSH works) it reboots the machine and sends me an email after the rig is back up, the script also checks the external IP of the rig and sends an email if the IP changed (i have a dynamic IP).

Code:
#!/bin/bash
#this script will check avg load and reboot & email you when needed.
#this script will check when the external IP changes and email you.

systemavg=$(uptime | awk -F'load average:' '{print $2}'| cut -d',' -f1)
myip="$(dig +short myip.opendns.com @resolver1.opendns.com)"
oldip="$(cat /root/jobs/myIP.txt)"
emailaddress=$"(YOUR_EMAIL)"
shouldsendmail="$(cat /root/jobs/shouldsendmail.txt)"
if [ -n "$myip" ]
then    
   echo "$(date)  Current system load in the last 5 min is : $systemavg - My public IP address: ${myip}" >> /root/jobs/log.txt
   if [ "$myip" != "$oldip" ]
    then
      echo "${myip}" > /root/jobs/myIP.txt
      echo "The new IP address is: $myip" | mail -s "System IP Change!" $emailaddress
    fi

   if [ "$shouldsendmail" == "YES" ]
    then
       echo "System was Rebooted due to exessive load - $(date)" | mail -s "System
rebooted!" $emailaddress
       echo "NO" > /root/jobs/shouldsendmail.txt
    fi
else
   echo "$(date)  Current system load in the last 5 min is : $systemavg - My public IP address: ${oldip} - no connection!" >> /root/jobs/log.txt
fi

F1=$(echo $systemavg*100 | bc)
Flag=$(printf "%.0f\n" $F1)
if [ $Flag -gt 200 ]
then
   sudo service lightdm stop
   echo "YES" > /root/jobs/shouldsendmail.txt
   echo "Rebooting system because of load - $(date)" >> /root/jobs/log.txt
   sleep 1
   sudo systemctl reboot
fi

this script is initiated from crontab every 1 minute, needs to be located in root/jobs.

please tell me if this is redundant considering the additions to v18.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 10/07/2017, 13:28:35 UTC
Hey fullzero, i have a question,

without a doubt my biggest problem right now is that when my miner crashes it takes the whole rig down with it, everything gets stuck, SSH barely works, average system load jumps to 14.5!! and Xorg takes up 100% of the CPU, its so bad that none of the standard reboot commands work, they just do nothing, the only thing that actually reboots the rig in this state is "echo b > /proc/sysrq-trigger" so i've set up a script that checks the average system load and if its over 2 it uses the command to reboot, and it works, but i dont like this "solution", yesterday after a reboot nvOC got corrupted somehow, lost my customized oneBash and the whole system became read-only (thankfully i had a oneBash backup that was only a few days behind).

so the question is, what can i do to relive this Xorg error, i run a 7 card rig and never plan on going for a higher number, what can i do with Xorg that would fix this?

Thanks.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 10/07/2017, 10:54:14 UTC
Have been testing the new Claymore 9.7 on a 6 x 1070 rig. It is absolutely faster than before, but have had hangups on a regular basis. Lowering MC helps, but the avg speed will be a bit lower than Genoil (running latest from github). You have to calculate it a bit, since the dual mining (DCRI 20) will give some additional value, but you'll lose 2% because of dev fee.  
The main advantage of Claymore is that it will restart itself, for Genoil you need to use a restart script.
To me it seems Genoil is the better choice for now.

7 x 1070 rig here, i've found that if my clocks are even slightly too high it doesn't matter which miner i'm using the rig just hangs forever unless i restart it remotely via SSH, i'm using dcri 40 and i think its the best setting right now, its about 31.5Mh/s for ETH and 410 Mh/s for SIA, on claymore 9.5 it was , more like 29.8/390..

Whats your power limit and clocks if you dont mind me asking? i'm on 125pl/0/1400.
These are pretty good numbers, Here on 115W, dcri 20, Claymore 9.7 30Mh/s and 300Mh/s SIA. Not very stable, have to lower my OC more. Stable with Genoil 0.11 (MC clock 200 down from Claymore) and gives me 31.5 Mh/s

i see, i cant dual mine on anything less then 120 pl if i want the memory clocks to be 1000+ and still be stable.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 10/07/2017, 10:44:32 UTC
please help. How can i add dcri argument to my onebash settings? what and where exactly i should whrite?

The dcri value is only for dual mining, if you're only mining Ethereum theres no point in using dcri, theres no point in even using claymore miner, genoil miner is just as fast but with no fee for strictly ETH mining.

if you are dual mining just search for "dcri" in oneBash, the default setting is 70, i recommend changing it to 40.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 10/07/2017, 08:31:16 UTC
Have been testing the new Claymore 9.7 on a 6 x 1070 rig. It is absolutely faster than before, but have had hangups on a regular basis. Lowering MC helps, but the avg speed will be a bit lower than Genoil (running latest from github). You have to calculate it a bit, since the dual mining (DCRI 20) will give some additional value, but you'll lose 2% because of dev fee.  
The main advantage of Claymore is that it will restart itself, for Genoil you need to use a restart script.
To me it seems Genoil is the better choice for now.

7 x 1070 rig here, i've found that if my clocks are even slightly too high it doesn't matter which miner i'm using the rig just hangs forever unless i restart it remotely via SSH, i'm using dcri 40 and i think its the best setting right now, its about 31.5Mh/s for ETH and 410 Mh/s for SIA, on claymore 9.5 it was more like 29.8/390..

Whats your power limit and clocks if you dont mind me asking? i'm on 125pl/0/1400.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 10/07/2017, 08:17:08 UTC
Hey guys, any clue what might account for the difference in PCIE utilization? asking because GPU6 is my least stable card that requires the lowest clocks of the bunch and evidently it also has the lowest PCIE utilization.
http://i.imgur.com/pwxDFAQ.png
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 08/07/2017, 20:48:04 UTC
For everyone that have stability problems where the OS hangs or slows down to a halt, this is due to Xorg taking 100% of one of the cpu cores, as far as i can tell this usually only begins after some kind of soft crash from overclocking/undervolting, i've googled my ass off and found a few references of people claiming to have solved this problem by configuring Xorg to run from the integrated intel GPU and leaving the nvidia cards to pure computations, my linux know how is Very limited so this is more of a question for fullzero.

what do you think Fullzero?

This change could possibly improve stability with higher OC on the primary GPU; but it would also introduce other problems into the system which don't currently exist.  

Using the Integrated graphics lowers the number of GPUs which can be supported; as it both uses more system resources and increases the load on the CPU significantly.

You might have noticed; other mining OSes which use this method only support 8x GPUs.  

With the 12x biostar nearly here, I don't think this is the right change to make.  If the biostar can actually run 12x GPUs then I will for sure; not make this alteration.  If it can only support 9x or less GPUs then I will consider making the change.



I see, well i guess its back to monitoring xorg and rebooting if its running at 100% cpu for more then a few minutes..


I just copied the content of the claymore 9.7 into 9.5 folder and run the miner. So far I'm getting 190mh/s mining eth from 6 nvidia gtx 1070 as for the 9.5 - the version on the 0017 onebash I was getting 183mh/s. Thinking this is a must to be implemented as soon as possible. PS- sry for my english Wink)

I will add 9.7 to the next version;

right now it should be simple to do what you have done.

download:

https://drive.google.com/drive/folders/0B69wv2iqszefdFZUV2toUG5HdlU

then extract the miner into the 9.5 folder

replacing the 9.5 version



Just added the new version and on the exact same clocks and power limit i went from dual mining ETH/SIA @ 204/2750 Mh/s to 217/2900 Mh/s, quite the improvement! thats like 6%!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 08/07/2017, 19:13:51 UTC
For everyone that have stability problems where the OS hangs or slows down to a halt, this is due to Xorg taking 100% of one of the cpu cores, as far as i can tell this usually only begins after some kind of soft crash from overclocking/undervolting, i've googled my ass off and found a few references of people claiming to have solved this problem by configuring Xorg to run from the integrated intel GPU and leaving the nvidia cards to pure computations, my linux know how is Very limited so this is more of a question for fullzero.

what do you think Fullzero?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 08/07/2017, 08:12:14 UTC

i'm actually dreading the 0018 release... i've made so many changes to the 0017 oneBash and nvOC in general that moving them to the new version is gonna take forever.. currently working on automatic rig reboot in the event of a system freeze from the miner crashing.

@ tempgoga - I'm curious on your approach, this is next on my plate (without a remote power switch) the easiest  - that seems applicable to my setup - is to filter the Genoil watchdog script for a reduced hash rate threshold instead of just 'error' since that script filters stdout from Genoil so technically the info is there to capture already.
I haven't gotten around to this yet but I'm hoping this weekend.

Another idea that I'm thinking of is some sort of port-knocking from a remote machine - it could be enough since the rigs usually are responsive to ssh or local scripts after they "soft crash" with the video cards - but this won't help in case of a complete freeze.
Then you need a remote power cycle ability which is a whole different level of infra.

Cheers!


Sorry for the late response, right now i'm trying to initiate a system reboot in the event that Xorg service takes up 98% or more cpu for for 10 seconds or longer, which happens every time any miner crashes, Xorg always shoots up to 99-100% cpu and stays there, trying to use monit for this, will update if it works.

i like your port-knocking idea.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 07/07/2017, 12:15:52 UTC
Really looking forward to all the new features slated for nvOC 0018. I tried implementing the nicehash profit switching from @salfter but it was a little beyond my Linux skills.

Any idea when we might see it released?

i'm actually dreading the 0018 release... i've made so many changes to the 0017 oneBash and nvOC in general that moving them to the new version is gonna take forever.. currently working on automatic rig reboot in the event of a system freeze from the miner crashing.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 06/07/2017, 13:31:51 UTC
Any idea why when i try to SSH into nvOC as root with miner1 as my password i get "Permission denied" but as m1 it works? turns out one of my cards is problematic and cant handle much lower clocks then the rest of the cards and the whole system gets stuck to the point where i cant even reboot it remotely with SSH, at least not with "sudo reboot", "sudo shutdown -r now" or "sudo init 6", even "sudo systemctl --force --force reboot" doesnt work, just hangs there without even giving me an error message, i want to try using "sudo echo b > /proc/sysrq-trigger" but i cant do that unless im on root.

just fuck my ubuntu up..
http://i.imgur.com/0pSDR1p.png

help.

EDIT: nevermind figured it out, my linux knowledge is very limited so i wasn't aware i can jump into root with "sudo su", anyhow after that "sudo echo b > /proc/sysrq-trigger" did manage to restart the rig.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 04/07/2017, 15:55:32 UTC
Does anyone know of a way to detect GPU memory vendor information in Linux?  Similar to how GPU-Z can display the info in Winblows.  I want to group my mining rig clusters based on GPU memory vendors.  I think this will dramatically help in improving stability when tweaking each card in each rig.  Grin Grin



I wish there was a way, i've been looking for over a week now, maybe it can only be done on windows? or maybe the tool/command just doesn't exist on linux yet?
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 04/07/2017, 13:32:39 UTC
If anyone is interested my 7 card rig with all GTX1070 FE is finally stable running for the past 72 hours with the following clocks and pl:

__CORE_OVERCLOCK_0=000
MEMORY_OVERCLOCK_0=1400

__CORE_OVERCLOCK_1=000
MEMORY_OVERCLOCK_1=1400

__CORE_OVERCLOCK_2=000
MEMORY_OVERCLOCK_2=1300

__CORE_OVERCLOCK_3=000
MEMORY_OVERCLOCK_3=1600  

__CORE_OVERCLOCK_4=000
MEMORY_OVERCLOCK_4=1400

__CORE_OVERCLOCK_5=000
MEMORY_OVERCLOCK_5=1300

__CORE_OVERCLOCK_6=000
MEMORY_OVERCLOCK_6=1200


INDIVIDUAL_POWERLIMIT_0=125

INDIVIDUAL_POWERLIMIT_1=125

INDIVIDUAL_POWERLIMIT_2=120

INDIVIDUAL_POWERLIMIT_3=130

INDIVIDUAL_POWERLIMIT_4=125

INDIVIDUAL_POWERLIMIT_5=120

INDIVIDUAL_POWERLIMIT_6=120

i determined the power limit for the cards by their individual temperature and lowered/increased their clocks accordingly, if i give them all the same power limit GPU 3 is 10 degrees C cooler then GPU 2/5/6 while GPU 0/1/4 are right in the middle, at the current power limits all the cards are pretty much the same temp plus or minus 1 degree.

i might be able to push GPUs 1-5 further, i suspect GPU 6 was causing my crashes since the last crash when it was clocked @ 1300 it was the only GPU to lose its sensor connections, since lowering it to 1200 everything is stable so there might be room for higher clocks on the rest of the cards.

wish there was a way to determine which are samsung and which are micron..
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 02/07/2017, 10:51:24 UTC
Somebody may have mentioned this but would it be possible to edit the xorg.conf so that additional resolutions are available for machines that are completely headless?  When I use teamviewer its defaulting to a very low resolution and there are seemingly no others available.


This bothered me too so i added this to oneBash, just slap it anywhere:

xrandr --fb 1360x768



I use the teamviewer=yes param but it does not start automaticaly, I have to click it on terminal. Can anybody help me?

Didnt work for me either, my solution was to uninstall teamviewer, go to the teamviewer site and download the .deb file, install that and add teamviewer to startup applications so it starts when the rig boots, You also have to disable the part about teamviewer in the onebash script or else it will not work, either delete all mention of teamviewer or add a # in front of the lines of code to disable them.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 02/07/2017, 07:58:56 UTC
Does anyone have any idea how i can check if my cards are Samsung or Micron memory in ubuntu? i've looked but i cant find anything that will tell me this info.

this cmd will give you detailed information; but its not as helpful as some of the windows tools:

Code:
lspci -vnn | grep VGA -A 12

You should be able to use the memory info from this cmd to identify different manufacturers.

I don't have this info; but I am reasonably sure that is how the windows applications which provide this work; and it is available somewhere on the internet.

Thanks but i've tried that already, theres nothing there that i can use to find out the memory vendor, i've tried every command or system info tool that can provide information on the GPU, as far as i can tell theres nothing that lists the memory vendor..
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 01/07/2017, 15:36:06 UTC
Does anyone have any idea how i can check if my cards are Samsung or Micron memory in ubuntu? i've looked but i cant find anything that will tell me this info.

Checking for nvidia or amd?

Nvidia.
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0017
by
tempgoga
on 01/07/2017, 09:35:55 UTC
Does anyone have any idea how i can check if my cards are Samsung or Micron memory in ubuntu? i've looked but i cant find anything that will tell me this info.