Bitcoin Forum
April 26, 2024, 07:17:33 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 ... 1315 »
  Print  
Author Topic: [ANN][BURST] Burst | Efficient HDD Mining | New 1.2.3 Fork block 92000  (Read 2170601 times)
TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 06:30:32 PM
Last edit: August 11, 2014, 06:45:02 PM by TetraHect0rCannabinol
 #541

[ Ubuntu Based Linux / Desktop and Server ]

 First of all, make sure you have java runtime environment installed onto your machine, todo this, press Ctrl+t or right click -> open terminal to open a terminal in gui, or if you're in server, you have ssh'd there
 so no need to open a terminal... lol
 
 then execute the following : java -version
 if it spits out something simular :
  "java version "1.8.0_11"
   Java(TM) SE Runtime Environment (build 1.8.0_11-b12)
   Java HotSpot(TM) 64-Bit Server VM (build 25.11-b03, mixed mode)"
  
 then you have java installed, if not then you can get it from here :

 http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html

 the file ending with .tar.gz is the one you need, just grab the appropriate cpu size (32 /64) for your machine.
 once the file is downloaded, find out where it downloaded to and open the folder,
 
 now to unpack and install java, simply go back to the terminal, make sure it is open in the same folder as your downloaded java.tar.gz file and do the following to extract :
 
  
Code:
tar xvzf jre-8*.tar.gz -C /tmp/

 then login as root / super user :
 
  
Code:
sudo su

 then check for jvm dir, if not create it :
 
  
Code:
if [ ! -d '/usr/lib/jvm' ]; then mkdir /usr/lib/jvm; fi

 move the extracted jre to the lib folder :
 
  
Code:
mv /tmp/jre1.8* /usr/lib/jvm/

 then update the folder paths :
 
  
Code:
  update-alternatives --install /usr/bin/java java /usr/lib/jvm/jre1.8*/bin/java 1065
  update-alternatives --install /usr/bin/javaws javaws /usr/lib/jvm/jre1.8*/bin/javaws 1065
  
 
 Then exit root, and finally execute :
 
  
Code:
update-alternatives --config java

 now, execute the command "java -version" and it should spit out the jre info (above).
 
 now that that is all done, change the directory of the terminal to the pocminer_v1 folder ([ Devices ] bottom)
 
  
Code:
cd /path/to/pocminer_v1/

 edit your passphrase in passphrase.txt via nano :
 
  
Code:
nano passphrase.txt

 and fill this with a long, random password (greater than 32 characters, as this is your wallet / account private key), press ctrl + x then y to save it.
 
 then run the following :
 
  
Code:
sh run_dump_address.sh

 it will create a file called address.txt in the pocminer_v1 folder in the following format :

 
Code:
Found address: PRIVATE_KEY -> ACCOUNT_ID

 all you need for now is the account id number, no "->" and no private key, just copy the account id and then type the following into
 cmd to start the plot generation : (goto [ Info ] at the bottom, for a explanation of the parameters. )

  
Code:
sh run_generate.sh ACCOUNT_ID <start_plot> <total_num_plots> <staggnation> <cpu_threads>

 now this will start to generate your plots, in the mean time you can start mining, to do so you need to setup the wallet,
 where ever you have extracted the wallet to,
 
  
Code:
cd /path/to/burst_1.0.0/

 then proceed to edit the config:
 
  
Code:
nano conf/nxt-default.properties

 find this setting "nxt.myAddress=", change it to your external ip address (get it from http://ipchicken.com), so it should end up like so :

 
Code:
nxt.myAddress=192.168.0.1:8123

 Where 192.168.0.1 is, is your external ip, once changed, save it and then run :
 
  
Code:
sh run.sh

 then open a web browser, goto "http://127.0.0.1:8125" and it should show the burst login page, to login, use the passphrase you set in "pocminer_v1/passphrase.txt".
 
 open another terminal, change the path to your miner folder, simply start mining via executing the following in cmd :

  
Code:
  cd /path/to/pocminer_v1/
  sh run_mine.sh
  

 it should start mining with a output simular to :

 
Code:
 {"generationSignature":"0dafa8c3c6d967a5c9bff12f26c46a64bf6bcf30d0f0044b4bb3a078bfc281c0","height":"246"}
 Error reading file: ACCOUNT_ID_20000_40000_500
 {"generationSignature":"0dafa8c3c6d967a5c9bff12f26c46a64bf6bcf30d0f0044b4bb3a078bfc281c0","height":"246"}
 {"generationSignature":"0dafa8c3c6d967a5c9bff12f26c46a64bf6bcf30d0f0044b4bb3a078bfc281c0","height":"246"}
 New best: ACCOUNT_ID:19251
 Submitting share
 {"result":"deadline: 31774"}
 {"generationSignature":"0dafa8c3c6d967a5c9bff12f26c46a64bf6bcf30d0f0044b4bb3a078bfc281c0","height":"246"}
 {"generationSignature":"0dafa8c3c6d967a5c9bff12f26c46a64bf6bcf30d0f0044b4bb3a078bfc281c0","height":"246"}
 ......
 

as long as you see "New best: ACCOUNT_ID:19251 / Submitting share", it means you are mining, just let it run, read the bottom [ Info ] for more info on the values.

[ Devices ]
Now depending on where you wish to have your plots, its rather simple if you want them on your usb drive then make sure your usb is plugged in and
you have extracted the "pocminer_v1" folder to the device, if you would rather place on your hdd then no problems, just make sure you know where you
have extracted the folder.

Examples :
 
Code:
 /home/hect0r/Desktop/pocminer_v1 === internal usb hdd.
 /media/USB_UUID/pocminer_v1 === external usb hdd / stick.
 

 Or simply making a partition and mount it, then use that said path.

[ Info ]
ACCOUNT_ID : is the ending number in the address.txt file, once you have filled out passphrase and ran run_dump_address.
start_plot_num : is the starting plot, every plot file you make, just start the plot from the previous generate run start_plot + num_plots.
total_num_plots : is the number of plots you wish to generate, each plot is 256kb.
staggnation : is the number of plots to group together per run, which causes less disk reads / seeks the higher it is, the lower the more disk reads/ seeks. the maximum is 8191.
num_cpu_threads : no need to explain this..
deadline :

...
The "deadline" is a measurement of seconds until you may generate a block (provided no one else has already generated one). Yes, it is a bit of a race, but as your plot # increases, so do your chances of hitting/solving a block. I believe you can compare the size of your plot to what would be your hashrate if mining a normal scrypt coin.
...



*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
1714159053
Hero Member
*
Offline Offline

Posts: 1714159053

View Profile Personal Message (Offline)

Ignore
1714159053
Reply with quote  #2

1714159053
Report to moderator
1714159053
Hero Member
*
Offline Offline

Posts: 1714159053

View Profile Personal Message (Offline)

Ignore
1714159053
Reply with quote  #2

1714159053
Report to moderator
1714159053
Hero Member
*
Offline Offline

Posts: 1714159053

View Profile Personal Message (Offline)

Ignore
1714159053
Reply with quote  #2

1714159053
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
ciklop1974
Sr. Member
****
Offline Offline

Activity: 276
Merit: 250



View Profile
August 11, 2014, 07:06:38 PM
 #542

Does not create a number of purse. File address.txt is 0 KB
From what I did... I had to make sure the folder was extracted to the root of the drive I was using.

I had to type a random password into the passphrases text file and save it

I had to edit all the .bat file and replace java for C:\Windows\SysWOW64\java

Then I had to run my run_dump_address by double clicking it, and then check my address text file for my address that was created...

I had to lower my Xmx*value* in the generate.bat file to 1000

and finally I had to replace the entire line after "-cp" with:
-cp pocminer.jar;lib/*;lib/akka/*;lib/jetty/* pocminer.POCMiner generate *youraddress* 0 800000 500 7

Then I had to run the generate file from the command prompt, while remembering to change the directory to  my D: drive because thats where the folders are...

Hope that helps...

Guide of Kspinner!!
Thanks!!!! You are a MAN!!!
goldmaxx
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1000



View Profile
August 11, 2014, 07:09:40 PM
 #543

Hi Guys

This might be a stupid question, but where do I see my burst wallet address?
I only see 15462238099229249965 in the online wallet...

Regards

Goldmaxx

TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 07:11:34 PM
 #544

Hi Guys

This might be a stupid question, but where do I see my burst wallet address?
I only see 15462238099229249965 in the online wallet...

Regards

Goldmaxx

when in the wallet, have the nav bar open, you see the account id, above is the burst logo, and your name or "no name set" click on the id, a drop down appears and it should say "Copy Account ID && Copy Numeric Account ID"

the first option Smiley

*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
kcanup
Legendary
*
Offline Offline

Activity: 1484
Merit: 1000


View Profile
August 11, 2014, 07:14:48 PM
 #545

Hi Guys

This might be a stupid question, but where do I see my burst wallet address?
I only see 15462238099229249965 in the online wallet...

Regards

Goldmaxx

when in the wallet, have the nav bar open, you see the account id, above is the burst logo, and your name or "no name set" click on the id, a drop down appears and it should say "Copy Account ID && Copy Numeric Account ID"

the first option Smiley
or go to 127.0.0.1:8125 (localhost:8125) and log in with your password you generate, you ll see your burst address there  Smiley
goldmaxx
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1000



View Profile
August 11, 2014, 07:15:12 PM
 #546

Ok, thank you!
So this should be my wallet address:BURST-66FF-N5WK-2F5T-F997F
Now, lets find a block ;-)

Regards

Goldmaxx

TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 07:17:27 PM
 #547

Hi Guys

This might be a stupid question, but where do I see my burst wallet address?
I only see 15462238099229249965 in the online wallet...

Regards

Goldmaxx

when in the wallet, have the nav bar open, you see the account id, above is the burst logo, and your name or "no name set" click on the id, a drop down appears and it should say "Copy Account ID && Copy Numeric Account ID"

the first option Smiley
or go to 127.0.0.1:8125 (localhost:8125) and log in with your password you generate, you ll see your burst address there  Smiley

15462238099229249965 is the account id / address, however clicking on it and "Copy Account ID" gives you the "BURST_xxxxxxxxxxxx"

*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 07:20:31 PM
 #548

Selling 10k BURST for .2 BTC and I will provide Ubuntu/Linux Installation!

already got the Ubuntu based installation out the way here : https://bitcointalk.org/index.php?topic=731923.msg8299637#msg8299637

Smiley

*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
reza_abay
Member
**
Offline Offline

Activity: 94
Merit: 10


View Profile
August 11, 2014, 07:21:11 PM
 #549

how much maximum size of disk space i needed?
goldmaxx
Hero Member
*****
Offline Offline

Activity: 894
Merit: 1000



View Profile
August 11, 2014, 07:21:17 PM
 #550

What happens when your HDD is full?
Can you still continue mining?

And if so, what's the difference between someone with a 4TB (full) HDD and a 500TB (full) HDD?

Regards

Goldmaxx

kcanup
Legendary
*
Offline Offline

Activity: 1484
Merit: 1000


View Profile
August 11, 2014, 07:29:05 PM
 #551

how much maximum size of disk space i needed?
If you have more space, you can plot more data, and chances of finding more blocks.. this coin is all about hard disk storage so no maximum, get some TBs hard disk, good for you  Smiley
bellicose
Sr. Member
****
Offline Offline

Activity: 1120
Merit: 263


Sovryn - 300-500% APY on USDT Deposit


View Profile
August 11, 2014, 07:33:58 PM
 #552

BURN CPU ! BURN HDD ! BURN BURN BURN !!!

.The DeFi for Bitcoin Platform.            ███   ███
           ███   ███
          ███   ███
         ███   ███
        ███   ███
       ███   ███
      ███   ███
     ███   ███
    ███   ███
   ███   ███
  ███   ███
 ███   ███
███   ███
▄  ▄██████████████████████▄  ▄
 ▀▄ ▀████████████████████▀ ▄▀
  ▀█ ▀████▀ ▄▄            █▀
   ▀█▄ ▀█ ████████████▀ ▄█▀
     ██▄ ▀▀▀▀▀▀▀▀▀███  ██
      ███      ▀█▄ ▀ ▄██
       ███▄ ▀█████ ▄███
        ████ ▀██▀ ▄███
         ▀███▄  ▄███▀
          ▀███▄ ▀██▀
            ████▄ ▀
             ████▀
              ▀█▀
SOVRYN███   ███
 ███   ███
  ███   ███
   ███   ███
    ███   ███
     ███   ███
      ███   ███
       ███   ███
        ███   ███
         ███   ███
          ███   ███
           ███   ███
            ███   ███
.300% APY on USDT Deposits.
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
tylerderden
Copper Member
Legendary
*
Offline Offline

Activity: 1162
Merit: 1025



View Profile
August 11, 2014, 07:37:48 PM
 #553

i knew there was a reason i was waiting to use the rest of my amazon vps credit.
TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 07:41:22 PM
 #554

Do you want to create lots of little plots or few big plots?

Also how do you export your private key for BURST?


the private key is the passphrase from here : pocminer_v1/passphrase.txt

*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
Depredation
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500



View Profile
August 11, 2014, 07:42:45 PM
 #555

Any places to exchange or trade?

                              ▄█▄         ▄█▄
                            ▄████▀      ▄████▀
                          ▄████▀      ▄████▀
                        ▄████▀      ▄████▀
                      ▄████▀      ▄████▀
                    ▄████▀      ▄████▀
 ▄█▄          ▄      ▀█▀      ▄████▀
▀████▄      ▄███▄           ▄████▀
  ▀████▄     ▀████▄       ▄████▀
    ▀████▄     ▀████▄   ▄████▀
      ▀████▄     ▀████▄████▀
        ▀████▄     ▀█████▀
          ▀█▀        ▀█▀
.verify.▄  █▄
██ ███▄
██ ████
██ ████
██ ████
██ ████
██ ████
██ ████
▀█ ████
   ████
   ████
█▄ ▀███
███▄ ▀█
▄  █▄
██ ███▄
██ ████
██ ████
██ ████
██ ████
██ ████
██ ████
▀█ ████
   ████
   ████
█▄ ▀███
███▄ ▀█
▄  █▄
██ ███▄
██ ████
██ ████
██ ████
██ ████
██ ████
██ ████
▀█ ████
   ████
   ████
█▄ ▀███
███▄ ▀█
Vandalay23
Sr. Member
****
Offline Offline

Activity: 341
Merit: 250


View Profile
August 11, 2014, 07:47:56 PM
 #556

So... can anyone tell us how the different parameters of the plot generation effect the hashrate of a miner?

There is:
1) the plot size
2) Memory usage
3) number of cores
 
CryptoSurfer
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
August 11, 2014, 07:51:51 PM
 #557

Hi Guys,

Let's say i have two hdd's and both are used for mining.Is it ok to have just one listenaddress for both wallets? ?
For example: localhost:8125 or do i need to have another instance running on a different port?
The apiserver is listening on 8123. Is this also ok for both instances?
ReDPoiSoN
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500



View Profile
August 11, 2014, 08:03:28 PM
 #558

I have got error after starting run_generate.bat

http://prntscr.com/4btyti

What's the problem it should to be?

Write me in PM the cmd and I will correct it for you!
GlobalDenomination
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
August 11, 2014, 08:06:40 PM
Last edit: August 11, 2014, 10:36:01 PM by GlobalDenomination
 #559

i have got 2 now
TetraHect0rCannabinol
Member
**
Offline Offline

Activity: 101
Merit: 10

Twitter -> @z0rius


View Profile WWW
August 11, 2014, 08:08:18 PM
 #560

I have got error after starting run_generate.bat

http://prntscr.com/4btyti

What's the problem it should to be?

Write me in PM the cmd and I will correct it for you!

it is the xmx value, the vm could not create the heap, checkout :
https://bitcointalk.org/index.php?topic=731923.msg8298798#msg8298798

pretty much lower the -Xmx...m value in the bat file.

*Grabs a bottle of Whiskey* - Its official, Im crazyer than crazy, I Am Hect0r Baby Cheesy
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 ... 1315 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!