Author

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

newbie
Activity: 4
Merit: 0
Does anyone know why I am getting successful shares (solo mining, wallet open) but no shares appear in my wallet?
hero member
Activity: 588
Merit: 500
I created 1 tb plot for 48 hours. Is it enough speed ?
I have 3000 burst from a 1tb hd that is only 50% plotted around 2 days so far mining at approx 500gb I would say its enough. although by tomorrow I hope to have 3 tb on the go
legendary
Activity: 3248
Merit: 1070
regtable, are you using the java miner for window?

can you post a screen
I am 7s8ng burst pool miner not sure which one and afk on teamviewer so hard to do a screenshot sorry but its just cmd screens

7s8ng? what miner is that? dcct miner?
hero member
Activity: 588
Merit: 500
regtable, are you using the java miner for window?

can you post a screen
I am 7s8ng burst pool miner not sure which one and afk on teamviewer so hard to do a screenshot sorry but its just cmd screens
BTR
newbie
Activity: 7
Merit: 0


why you need secret passphrase for plotting ?
[/quote]

That field creates a passphrase.txt  ( I may have read the original instructions maybe a bit too literally )

The app is still kind of screwy, and I have not smoothed out the process of setting up multiple plots, and I have not set it up to hook into the mining pool by default yet.  
sr. member
Activity: 560
Merit: 250
Hello guys! I'm sorry if this has been answered before but I've been reading page after page of this thread and still have questions. I am running a linux box and I am generating plots with dcct's plot generator. I'm running the java client and have a 200 gb plot file. I let it run overnight, and according to the calculator I should be geting ~10 coins and hour. I have none. When looking at the terminal I occasionally see a "success" show up. What is happening/ what more information do you need? Thanks!

do you solo mine ? or in pool ?

I am mining solo. Also, do I need to keep the wallet open while mining?
for solo yes ... on pool no
newbie
Activity: 4
Merit: 0
Hello guys! I'm sorry if this has been answered before but I've been reading page after page of this thread and still have questions. I am running a linux box and I am generating plots with dcct's plot generator. I'm running the java client and have a 200 gb plot file. I let it run overnight, and according to the calculator I should be geting ~10 coins and hour. I have none. When looking at the terminal I occasionally see a "success" show up. What is happening/ what more information do you need? Thanks!

do you solo mine ? or in pool ?

I am mining solo. Also, do I need to keep the wallet open while mining?
hero member
Activity: 1764
Merit: 570
Twitter\X @AlexKosa1
enough for what ?
member
Activity: 74
Merit: 10
I created 1 tb plot for 48 hours. Is it enough speed ?
hero member
Activity: 1400
Merit: 505
Initial screenshots for Burst.Today Windows Installer are up.
http://burst.today/?page_id=2

Only a few more things before I release the code & download link Grin







why you need secret passphrase for plotting ?
sr. member
Activity: 458
Merit: 250
beast at work
Hello guys! I'm sorry if this has been answered before but I've been reading page after page of this thread and still have questions. I am running a linux box and I am generating plots with dcct's plot generator. I'm running the java client and have a 200 gb plot file. I let it run overnight, and according to the calculator I should be geting ~10 coins and hour. I have none. When looking at the terminal I occasionally see a "success" show up. What is happening/ what more information do you need? Thanks!

do you solo mine ? or in pool ?
hero member
Activity: 539
Merit: 500
Initial screenshots for Burst.Today Windows Installer are up.
http://burst.today/?page_id=2

Only a few more things before I release the code & download link Grin







Well done!
newbie
Activity: 4
Merit: 0
Hello guys! I'm sorry if this has been answered before but I've been reading page after page of this thread and still have questions. I am running a linux box and I am generating plots with dcct's plot generator. I'm running the java client and have a 200 gb plot file. I let it run overnight, and according to the calculator I should be geting ~10 coins and hour. I have none. When looking at the terminal I occasionally see a "success" show up. What is happening/ what more information do you need? Thanks!
newbie
Activity: 4
Merit: 0
I like to share an updated version of the Linux C tools. You can download it here:

https://bchain.info/dcct_miner.tgz

(snip)

The miner

(snip)

You first have to create a file called "passphrases.txt" and put your passphrase in it. It supports only one passphrase and uses the files first line.
Avoid spaces before/after your passphrase.


Thank you dcct. It's nice tools. But...
If passphrase contains special characters like !"#$%& etc..., the miner won't mine properly.
The special characters must be encoded like %21%22%23%24%25%26.
The line 72 and 372 of  mine.c should be modified like following.


Code:
LINE 72:
// Buffer to read the passphrase to
char passphrase[/*2001*/6001];


LINE 372:
#if 0
        for( i=0; i                if( passphrase[i] == ' ' )
                        passphrase[i] = '+';

                // end on newline
                if( passphrase[i] == '\n' )
                        passphrase[i] = 0;
        }
#else
        {
                char work[6001];
                long result = 0;
                char *p = NULL;
                long loop1;


                p = work;
                for (loop1=0; loop1 < bytes; loop1++) {
                        result = isalnum(passphrase[loop1]);

                        if (result == 0) {
                                if (passphrase[loop1] != 0xa) { /* if not newline. */
                                        sprintf(p, "%%%x", passphrase[loop1]);
                                        p+=3;
                                }
                        } else {
                                *p = passphrase[loop1];
                                p++;
                        }
                }
                bytes = p - work;
                memcpy(passphrase, work, bytes);
        }
#endif

BTR
newbie
Activity: 7
Merit: 0
Initial screenshots for Burst.Today Windows Installer are up.
http://burst.today/?page_id=2

Only a few more things before I release the code & download link Grin

http://burst.today/wp-content/uploads/2014/09/BurstToday-245x300.png
http://burst.today/wp-content/uploads/2014/09/Plotting-244x300.png


legendary
Activity: 3248
Merit: 1070
regtable, are you using the java miner for window?

can you post a screen
hero member
Activity: 588
Merit: 500
I believe it`s smarter to have multiple smaller files then one giant file:
- smaller file can be enhanced with the merge utility so you can have a HUGE stagger (= number of nonces in your file) requiring just one disk read per file;
- smaller files can be moved around if you have multiple hdd of dif size/free space;
- you can automate the generation process through scripts and all the files will be completed (so can be enhanced with the merge utility)


example:

40G - 2 files
Code:
14643563564564646359_60000000_81920_4096
14643563564564646359_60081920_81920_4096

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
40 disk seeks per Scoop (0.3 seconds @ 8ms)

40G - 4 smaller files (same stagger)
Code:
14643563564564646359_60000000_40960_4096
14643563564564646359_60040960_40960_4096
14643563564564646359_60081920_40960_4096
14643563564564646359_60122880_40960_4096

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
40 disk seeks per Scoop (0.3 seconds @ 8ms)


40G - 4 smaller files (enhaced with merge utility)
Code:
14643563564564646359_60000000_40960_40960
14643563564564646359_60040960_40960_40960
14643563564564646359_60081920_40960_40960
14643563564564646359_60122880_40960_40960

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
4 disk seeks per Scoop (0 seconds @ 8ms)



my 2c

Well 3 of my disks are done plotting and 2 more are like 80% done. May as well just let them run their course now.
I have 1tb done ish a320gb a 250gb and a 500gb to do so il utilise this method on the 3  remaining drives to 1tb+ then switch over to re plot the tb
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
I believe it`s smarter to have multiple smaller files then one giant file:
- smaller file can be enhanced with the merge utility so you can have a HUGE stagger (= number of nonces in your file) requiring just one disk read per file;
- smaller files can be moved around if you have multiple hdd of dif size/free space;
- you can automate the generation process through scripts and all the files will be completed (so can be enhanced with the merge utility)


example:

40G - 2 files
Code:
14643563564564646359_60000000_81920_4096
14643563564564646359_60081920_81920_4096

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
40 disk seeks per Scoop (0.3 seconds @ 8ms)

40G - 4 smaller files (same stagger)
Code:
14643563564564646359_60000000_40960_4096
14643563564564646359_60040960_40960_4096
14643563564564646359_60081920_40960_4096
14643563564564646359_60122880_40960_4096

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
40 disk seeks per Scoop (0.3 seconds @ 8ms)


40G - 4 smaller files (enhaced with merge utility)
Code:
14643563564564646359_60000000_40960_40960
14643563564564646359_60040960_40960_40960
14643563564564646359_60081920_40960_40960
14643563564564646359_60122880_40960_40960

Totals:
0 nonces overlap (0 KB)
163840 nonces total (40 GB)
4 disk seeks per Scoop (0 seconds @ 8ms)



my 2c

Well 3 of my disks are done plotting and 2 more are like 80% done. May as well just let them run their course now.
hero member
Activity: 588
Merit: 500

oh sorry... iam hooked up with that floppy
it just crash, i think someone just sent malformed request, and i dont check it
hahahahahahahahahaha my bad 0ool users.
hero member
Activity: 1400
Merit: 505

oh sorry... iam hooked up with that floppy
it just crash, i think someone just sent malformed request, and i dont check it
Jump to: