Bitcoin Forum
May 25, 2024, 02:44:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 »
241  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 05, 2014, 08:26:52 AM
Question.

If i set to plot a single 500 gb file but i have to switch off my computer and stop plotting @ 250 gb. What's the best way to stop plotting before it complete 500 gb ? Am i able to resume plotting ? Is there such thing as corrupted plot if i close the plotting suddenly ?

You can still use the partial plot. It will cause an error "error reading file", but it will work.

There is no resume, just start another one with a higher starting nonce.
242  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 11:56:56 PM
Hey guys. I have received 45k BURST so far for the multipool.

For those wondering how I lost my coin.... Well... I was using my touchscreen phone and the screen misclicked sell on an order at 300 sats. Since CCEX has no damn second confirmation... It dumped them between 450-500 sats, even after holding them from 160 to 1200 and all the way back down.

I'm very upset about it. But I will remain active in the community, at least until I can get your multipool up. I would like to buy back in, but it will be hard to get over a mil at 480ish sats...

So anyway, I would like to get the remaining 15k before letting the multipool guy go to town. I offered 5k of my own coin which I will have to buy on the exchange for now =\

I'm afraid I was the lucky one buying them..

Just sent you 5k (address in your signature)
243  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 08:55:06 PM
exactly this is my point. if it is possible to secure something by not offering a huge target platform its safer. encapsulating a java vm by proper protocols is impossible. the only solution is to not allow the vm access to all critical data and do the critical things on a encapsulated secured system without java. this means you can build a block explorer in java but nothing which requires the private key like the ui login.
exactly this is why i have completely ignored nxt and i know many people who did the same.
if there is no c based wallet within the next couple of month burst wont be able gain market cap.

You are always talking about C/C++ as a safe alternative. You know what can happen if a buffer overflow is exploited? Or even malicious code is run?

This is not JAVA running in the browser running malicious code here, this is an application from a trusted source, open source, you can compile it yourself. It has less attack vectors compared to a C wallet with equal code quality.

I agree with you we need a C/C++ wallet, but for speed and usability, not safety.
244  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 08:26:24 PM

Thanks!
245  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 08:15:29 PM
for the MB just add some adapter pci-e >>> sata

Do you know some cheap adapters? I bought a dawicontrol dc-624e which wasn't cheap.
246  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 07:52:35 PM
I like to share an updated version of the Linux C tools. You can download it here:

https://bchain.info/dcct_miner.tgz

First you need to unpack it:
tar -xvzf dcct_miner.tgz

Then compile it:
make

of if you use 32-bit Linux:
make linux32

If you really can't compile it use the ones in "bin".

Now you have 3 tools:

The plot merge utility

If you created your plots with a small stagger size, processing them takes a long time. You might miss your deadline if its found too late!
The merge utility optimizes your already created files making them a lot faster to read.

How to use it?

Start it with one parameter, the input file.
Code:
./merge plots/1234567890_0_100000_1000

This will read your plotfile and create another one - 1234567890_0_100000_100000 - in your current directory. It now has a stagger size of 100000 which is a LOT better.
When done, delete the input file and put the optimized plot in its directory.
You can now use the optimized file with both the JAVA and the C miner.

This does not work for incomplete plotfiles.

The C plotfile generator

This tool creates plotfiles. It takes the same parameters as the JAVA plotfile-generator.

Start it like this:
Code:
./plot <public key> <start nonce> <nonces> <stagger size> <threads>

The 32-bit version can handle a stagger size of about 15000, lots more (depending on your memory) with the 64-bit version.

Some recommended stagger sizes:
2GB memory -> 4000
4GB memory -> 8000
8GB memory -> 20000
16GB memory -> 50000
32GB memory -> 100000

It creates a directory "plots" and puts your files there. They exactly match the files generated with the JAVA-Tool and can be used with any miner.

The miner

You want to use your plotfiles to generate coins, this is where the miner is used.

The C version has some advantages:
- It uses almost no memory
- A lot faster, multithreaded
- Can handle multiple plot directories

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.

Then start the miner:

Code:
./mine <node ip> [<plot dir> <plot dir> ..]

For example:

Code:
./mine 127.0.0.1 /mnt/disk1/plots /home/user/plots /mnt/usb1/plots

Each directory is read by a separate thread. If you use multiple HDD's try to use one directory per HDD, this is fastest.

The miner creates some nice output:
Code:
2872 MB read/11488 GB total/deadline 50134s (49664s left)
New block 8674, basetarget 9388869
2872 MB read/11488 GB total/deadline 21573s (21476s left)
New block 8675, basetarget 9260523
2872 MB read/11488 GB total/deadline 3040s (2823s left)
New block 8676, basetarget 9461804
2872 MB read/11488 GB total/deadline 1122s (1018s left)
New block 8677, basetarget 9502439

When seconds left approach zero, you likely found a block.

If you like it - you can do me a favor and use/spread my blockchain-explorer http://bchain.info. It does not support BURST unfortunately.
247  Economy / Service Announcements / Re: [ANN] bchain.info - Blockchain Explorer on: September 04, 2014, 02:43:39 PM
https://bchain.info is very nice ... when will you add BURST coin? It would be great to have graphical representation of BURST difficulty.

BURST is NXT based which I cant add to the explorer yet, but the difficulty is possible. Put that on my list!
248  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 01:01:39 PM
how can i know if i'm using all my plots? what basetarget mean?

All the information shown on miner is exactly the same for everyone.

If u are mining on this pool, u will see this on your miner

http://178.62.39.204:8121/pool/getMiningInfo

so, there is no way to know my "hash"? besides looking at my plots

You can average your best deadlines for every block. It should be about (2^64) / (baseTarget * Your total nonces)

i tried with 24 giga 2^64/(10.000.000 * 100.000) but it give me 18M(k byte?) it isn't right

Should be. 24 giga is not much.

For 24TB it would be 18k seconds on average. Looks right to me.
249  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 12:27:26 PM
how can i know if i'm using all my plots? what basetarget mean?

All the information shown on miner is exactly the same for everyone.

If u are mining on this pool, u will see this on your miner

http://178.62.39.204:8121/pool/getMiningInfo

so, there is no way to know my "hash"? besides looking at my plots

You can average your best deadlines for every block. It should be about (2^64) / (baseTarget * Your total nonces)
250  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 11:26:14 AM
question.

On the same computer,

1 x 500 gb plot will yield the same result as 5 x 100 gb plot ?

People keep saying bigger plot will get submitted share more frequently than small plot ?

Yes its the same result. If they don't overlap of cause!
251  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 11:20:31 AM
Guys plots should not overlap even across multiple drives right? So the plots should be sequential across the drives, as in you do not start from 1 again on a new drive?

Is this correct??

They should never overlap, and they don't need - but can be sequential.

If in doubt just start with a higher nonce.

252  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 01:23:04 AM
what happens in you rename your plots? for example

16036893174223139082_1_1800000_1000

i had to stop it at 500000... to avoid confusing the over lap tool could i rename it to

16036893174223139082_1_500000_1000  ?

This way its ok. But never change stagger size or starting nonce.

You know you messed up when you get huge huge deadlines.

if i wanted to know the exact nonce it stopped on could i divide the size of the file by like 256 times the stagger level or something so i have a accurate list?

Just divide the size in bytes by 262144, thats the total number of nonces.
253  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 01:18:29 AM
what happens in you rename your plots? for example

16036893174223139082_1_1800000_1000

i had to stop it at 500000... to avoid confusing the over lap tool could i rename it to

16036893174223139082_1_500000_1000  ?

This way its ok. But never change stagger size or starting nonce.

You know you messed up when you get huge huge deadlines.
254  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 04, 2014, 12:33:08 AM
2.72 TB divided by 256 KB, minus a GB or two for miner files.........

I really hate how it is technically 3 trillion bytes in size and they have the balls to tell you that is 3.00 GB instead of the 2.72 GB it actually is.

I get about 11400000 nonces on one of them.

Technically 1KB is 1000 Bytes, like 1 kilowatt (KW) is also 1000W, not 1024. Its windows thats using the wrong units here.
255  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 11:45:04 PM
what should disc I/o be reading per TB? it isnt going to read the whole disc, right it "skims through it" ?

Yes it reads only a part of it. 256MB/TB of plots.
256  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 11:06:43 PM
Basetarget is down to 6164702.
Thats ~3000TB network size!

what was network size like 4 days ago before the big pump?

~1300TB
257  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 11:01:57 PM
Basetarget is down to 6164702.
Thats ~3000TB network size!
258  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 08:48:42 PM
Anyone here who wants to test the new miner? You need linux (32 or 64 bit) -> PM plz

Ok found someone.
259  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 08:44:40 PM
Does the CPU matter , or the amount of memory is most important. I wonder 32GB of RAM or 16GB would be enough with 6 core AMD CPU Phenom 1055T

Its plenty. With a lot of ram you can take advantage of large stagger sizes - thus reducing stress to the disk.

While plotting CPU power is most important, after that only disk space matters.
260  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.3 before block 6500 on: September 03, 2014, 08:15:15 PM
Is it more profitable to run 10TB on a single wallet, or run 5TB each on two different wallets?

Exactly the same.

Quote
would it increase my chances of finding shares in a pool.. or blocks going solo?

When going solo you get the same amount of coins - on average. With just a few TB its more like gambling, but with 10TB you can give it a try.

https://bchain.info/BURST/tools/calculator

10TB is about 2.5 blocks per day - with current diff.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!