<public key> is different from account id, right? If it is, how can I get my public key in my burst wallet.
I like to announce a new version of my Linux miner/plotter/plot optimizer:
https://bchain.info/dcct_miner.tgzsha256: eca303c3f2fb46a698797eab707bcc927614cfdd135c8e17114b52a6c962d641
How to use itDownload and unpack it:
wget
https://bchain.info/dcct_miner.tgztar -xvzf dcct_miner.tgz
Then compile it:
make
or 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 C plotfile generatorThis tool creates plotfiles. In simple mode use it like this:
./plot -k <public key> -d /path/to/storage
This will fill the entire disk with a single plot file using a random start nonce, 80% of available memory and max. threads.
Or specify:
./plot -k <public key> -s 100000 -n 500G -m 10G -t 3
for starting nonce 100000, 500GB plot size, 10GB memory usage and 3 threads.
The plot optimizer utilityThe new version is a LOT faster!
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 utility optimizes your already created files making them a lot faster to read.
How to use it?./optimize plots/1234567890_0_100000_1000
Or process your whole plot directory:
You can limit the memory usage, for example to 1GB:
It will replace your plot files with optimized ones.
This does not work for incomplete plotfiles.
The minerYou want to use your plotfiles to generate coins, this is where the miner is used.
For solo mining put your passphrase in a file called "passphrases.txt". It supports only one passphrase and uses the files first line.
Avoid spaces before/after your passphrase.
Then start the miner:
./mine <node ip> [<plot dir> <plot dir> ..]
For example:
./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:
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.
Make sure to synchronize your clock! (ntpdate ...)
The miner also supports pool mining:
For uray's pool use:
./mine_uray.sh [<plot directory>]
For dev's pools (share based)
./mine_dev_v1.sh [<plot directory>]
or
./mine_dev_v2.sh [<plot directory>]