Author

Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000 - page 977. (Read 2170895 times)

legendary
Activity: 1036
Merit: 1000
https://bmy.guide
Ive browsed through some pages and cant seem to find this error with a solution,  i switched to the http://burst-pool.cryptoport.io/ and did reward recipient
but when i try to run the miner is just streams this error.. easy fix? 



I had the same problem. It turned out that I was using the wrong pool miner for the pool that I was on. Each pool has its own miner. They are not interchangeable.

thanks, i skipped over that step cause i thought i had all the tools already Smiley will give that a go
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
Ive browsed through some pages and cant seem to find this error with a solution,  i switched to the http://burst-pool.cryptoport.io/ and did reward recipient
but when i try to run the miner is just streams this error.. easy fix? 



I had the same problem. It turned out that I was using the wrong pool miner for the pool that I was on. Each pool has its own miner. They are not interchangeable.
legendary
Activity: 1036
Merit: 1000
https://bmy.guide
Ive browsed through some pages and cant seem to find this error with a solution,  i switched to the http://burst-pool.cryptoport.io/ and did reward recipient
but when i try to run the miner is just streams this error.. easy fix? 

Hix
legendary
Activity: 1971
Merit: 1036
received PM from nicehash.com
would it cool if we can rent/lease disk space on nicehash ?
what do you think, should we do this ?


Amazing news. I need more Burst)
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
Is there a way I can generate plots on a cloud server? How and where?
Yeah, you can, but storage ain't cheap..

How and where please? I would like to look at it from top to bottom and do a cost benefit analysis.
Check them out at http://serverbear.com/

Yeah and I found Amazon Cloud Server - 1000 GB $500 / year - You guys are right. That is lala land
full member
Activity: 164
Merit: 100
of better yet forget about java and use the file below.


new link https://www.dropbox .com/s/rkl330l82qfogf2/plotgen_win.zip?dl=0


Usage:
plot.exe

where does one fine their Public Key?
full member
Activity: 194
Merit: 100
Is there a way I can generate plots on a cloud server? How and where?
Yeah, you can, but storage ain't cheap..

How and where please? I would like to look at it from top to bottom and do a cost benefit analysis.
Check them out at http://serverbear.com/
hero member
Activity: 644
Merit: 500
Is there a way I can generate plots on a cloud server? How and where?
Yeah, you can, but storage ain't cheap..

Not cheap at all!
And if you buy HDD you will remain with HDD that you can sell without loosing price as scrypt asic do.
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
Is there a way I can generate plots on a cloud server? How and where?
Yeah, you can, but storage ain't cheap..

How and where please? I would like to look at it from top to bottom and do a cost benefit analysis.
full member
Activity: 194
Merit: 100
Is there a way I can generate plots on a cloud server? How and where?
Yeah, you can, but storage ain't cheap..
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
Is there a way I can generate plots on a cloud server? How and where?
sr. member
Activity: 458
Merit: 250
beast at work
today i always get this error, but earlier plotting is good, what is this?
i use 64bit java, try to raise xmx but 12000 is error too

What`s your stagger and ram size?
stagger 8000
ram 16GB
i see in the read me the stagger wants to be 8191 no more or no less as all other values arew described as variable. plus the plot sizes want to be multiples of 8191. with no 1 guide this is confusing as sin. plus i am using xmx8100m on 8gb of ram and only 56% 4gb~ used :-S

it seems you made a mess of all the info available Smiley, in the screenshot above your java crashed because you used a too large value for the xmx.

use this:

Code:
c:\windows\syswow64\java -Xmx750m -cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate you_numerical_id 0 40960 2048 8

if still doesn`t work then lower the 2048 value (the stagger)


of better yet forget about java and use the file below.


new link https://www.dropbox .com/s/rkl330l82qfogf2/plotgen_win.zip?dl=0

hero member
Activity: 588
Merit: 500
today i always get this error, but earlier plotting is good, what is this?
i use 64bit java, try to raise xmx but 12000 is error too

What`s your stagger and ram size?
stagger 8000
ram 16GB
i see in the read me the stagger wants to be 8191 no more or no less as all other values arew described as variable. plus the plot sizes want to be multiples of 8191. with no 1 guide this is confusing as sin. plus i am using xmx8100m on 8gb of ram and only 56% 4gb~ used :-S
hero member
Activity: 518
Merit: 500
I've been getting this message now for 7 hours, and i haven't received a single burst to my wallet. Can someone please help me figure out what i've done wrong.




It's working fine, your setup hasn't submitted/found a deadline 75k or lower yet. Give it some time.
newbie
Activity: 14
Merit: 0
I've been getting this message now for 7 hours, and i haven't received a single burst to my wallet. Can someone please help me figure out what i've done wrong.


https://i.imgur.com/x7VyBVl.png
full member
Activity: 224
Merit: 100
Here's a quick script to generate multiple smaller plots. Hope this helps.

linux:
Code:
#!/bin/bash
#echo "Bash version ${BASH_VERSION}..."
clear

id=put_here_your_numerical_id
howManyNounces=40960
stagger=4096
filesToGenerate=15
cpu=23
offset=${howManyNounces}*0
iniLoc=0

#############################Do not modify below this line
startAt=$(($iniLoc+$offset))
endAt=$(($startAt+$howManyNounces*$filesToGenerate))

for i in $(eval echo "{$startAt..$endAt..$howManyNounces}")
do

cmd="~/_plot/./plot ${id} ${i} ${howManyNounces} ${stagger} ${cpu}"
time $(eval echo $cmd)
done

windows:
Code:
@echo off

@SET ID=put_here_your_numerical_id
@SET howManyNounces=40960
@SET stagger=4096
@SET filesToGenerate=15
@SET cpu=23
@SET /a offset=(%howManyNounces% * 21)
@SET initLoc=0

@::############################Do not modify below this line
@SET /a startAt=%initLoc% + %offset%
@SET /a stopAt=%startAt% + %howManyNounces% * %filesToGenerate%

FOR /L %%A in (%startAt%, %howManyNounces%, %stopAt%) DO (

plot.exe %ID% %%A %howManyNounces% %stagger% %cpu%
)

This could be very helpful.

Thanks
hero member
Activity: 620
Merit: 500

i have seen it but i don't trust it seen as that is the first post the guy has made. it could contain anything

Someone has to go through the code to make sure it's legit.

I don't have technical knowledge but if someone could review the code then it would be great . Miner from a newbie account with single post rings the alarm bells.

is there anybody who is able to verify this as legit?
hero member
Activity: 518
Merit: 500
A bit of buying going on now at c-cex, over 500sats atm   Smiley

Since yesterday i'm soo deep into mining that i don't follow anymore c-cex.
The fact that he got so many attention,volume,hype,fud,pump and dump is what tell me to mine,buy,buy,mine,mine,buy and wait for big exchanger.


I don't worry about c-cex price, just waiting for Burst to hit a more established and larger exchange(s). That will be a true test of how much investors and others value Burst.
hero member
Activity: 644
Merit: 500
A bit of buying going on now at c-cex, over 500sats atm   Smiley

Since yesterday i'm soo deep into mining that i don't follow anymore c-cex.
The fact that he got so many attention,volume,hype,fud,pump and dump is what tell me to mine,buy,buy,mine,mine,buy and wait for big exchanger.
member
Activity: 79
Merit: 10
today i always get this error, but earlier plotting is good, what is this?
i use 64bit java, try to raise xmx but 12000 is error too

What`s your stagger and ram size?
stagger 8000
ram 16GB
Jump to: