create account

Mining STEEM For Dummies by joseph

View this thread on: hive.blogpeakd.comecency.com
· @joseph · (edited)
$389.00
Mining STEEM For Dummies
Setup STEEM wallet and start mining step by step guide

![Mining STEEM for Dummies](http://s32.postimg.org/k4hh8lps5/joseph.jpg)

## It is recomended that you have Ubuntu 14.04 LTS or a later version.

###  Open a terminal window and enter these lines one by one, give each one time to finish: 

`sudo apt-get update`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`sudo apt-get install git cmake g++ python-dev autotools-dev libicu-dev build-essential libbz2-dev libboost-all-dev libssl-dev libncurses5-dev doxygen libreadline-dev dh-autoreconf`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`wget -O boost_1_60_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.60.0/boost_1_60_0.tar.gz/download`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`tar xzvf boost_1_60_0.tar.gz`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`cd boost_1_60_0`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./bootstrap.sh --prefix=/usr/local`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./b2 install`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)


`cd`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`git clone https://github.com/bitcoin/secp256k1`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`cd secp256k1`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./autogen.sh`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./configure`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`make`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./tests`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)


`cd`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`git clone https://github.com/steemit/steem`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`cd steem`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`git submodule update --init --recursive`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONTENT_PATCHING=OFF -DLOW_MEMORY_NODE=ON`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`make`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`cd programs/steemd`

![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`./steemd --rpc-endpoint --seed-node="seed.steemed.net:2001" --seed-node="52.74.152.79:2001"`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)



### start a new terminal window and type:


`cd steem/programs/cli_wallet`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)


`./cli_wallet`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)


`set_password "PASSWORD"`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)


`unlock "PASSWORD"`

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

`suggest_brain_key`

* copy the output and save it in a secure location:
* you should never give your wif private key to anyone.

`{
  "brain_priv_key": "FULK DEBUG EARTH IMAGINE BABBLE POPIFY PREFEED EMBIND FOREPAW KAHILI  ...",

  "wif_priv_key": "5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp",  

  "pub_key": "STM73jgNRFLTKSTaGWv8QfXzSopUZBsQGmrECWPvpnemjyAcBfzAc"
}`

* you will need your wif private key for the config.ini file in a minute,

* this is a good time to load **YOUR** key in your cli_wallet terminal window like this:

`import_key 5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp` 

 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)



#### now exit your cli_wallet terminal:


`ctrl + c`


 ![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)



#### This is a good time to pick your account/miner name

** Account names must be all lower case, less than 15 characters, and start with a letter

lets say you pick account name george1234

you must check if the account already exists, go to:

https://steemit.com/@george1234

if you get an error like this:

`Server error (500)
10 assert_exception: Assert Exception itr != accounts_by_name.end(): Unable to find account 'george1234'. Did you       forget to add a record for it? {"acct":"george1234"} th_a database.cpp:313 get_account`

then you are in luck and the account name is available to claim, if not try another until you get this error.

now you have what you need to edit your config.ini file and start mining.

with your favorite text editor open the file  **steem/programs/steemd/witness_node_data_dir/config.ini**

replace **george1234** with your account name and this wif key **5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp** with yours.

    # P2P nodes to connect to on startup (may specify multiple times)

    seed-node = seed.steemed.net:2001    
    seed-node = seed.steemed.com:2001
    seed-node = 52.74.152.79:2001
    seed-node = 45.32.186.90:1779
    seed-node = 45.32.186.90:1781
    seed-node = 192.99.4.226:2001
    seed-node = 46.252.27.1:1337
    seed-node = 81.89.101.133:2001
    seed-node = 52.4.250.181:39705
    seed-node = 85.214.65.220:2001

    # name of witness controlled by this node (e.g. initwitness )

    witness = "george1234"

    # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )

    miner = ["george1234","5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp"]

    # Number of threads to use for proof of work mining

    mining-threads = 2 


these are the parts you change, leave the rest as is and save your config file



#### go back to the steemd terminal window (hopefully it synced by now):


`ctrl+c`

![click enter button](http://s32.postimg.org/vbevnwc79/enter.png)

to stop steemd and restart it with the following line:

`./steemd --rpc-endpoint`

it should start mining as soon as it catches up to the latest block. 

* after mining your first block, you set claim to your account name

when that happens here is a few things you can do in your CLI_wallet (change george1234 to your account name):

    unlocked >>> get_account "george1234"  

    unlocked >>> list_my_accounts  

    unlocked >>> vote_for_witness george1234 joseph true true 

    unlocked >>> vote george1234 "joseph" "mining-steem-for-dummies" 100 true 


* if you get an error while following this guide please stop, and go to http://steem.herokuapp.com for assistance
* if you assist someone with this step by step guide, please reply with FAQ's and answers.
Thank you.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 249 others
👎  
properties (23)
authorjoseph
permlinkmining-steem-for-dummies
categorysteemhelp
json_metadata{"tags":["steemhelp"],"image":["http://s32.postimg.org/k4hh8lps5/joseph.jpg"]}
created2016-04-29 10:40:42
last_update2016-07-13 18:13:36
depth0
children190
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value195.481 HBD
curator_payout_value193.520 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,626
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,254
net_rshares69,893,435,865,082
author_curate_reward""
vote details (314)
@afm007 · (edited)
I am getting this error. 
CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
  CMake 3.2 or higher is required.  You are running version 2.8.12.2

@joseph Need your help
properties (22)
authorafm007
permlinkre-joseph-mining-steem-for-dummies-20180110t055323856z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["joseph"],"app":"steemit/0.1"}
created2018-01-10 05:53:30
last_update2018-01-10 05:54:36
depth1
children0
last_payout2018-01-17 05:53:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length176
author_reputation895,648,735,715
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,419,938
net_rshares0
@afm007 ·
I getting an error. is there any update available?
👍  
properties (23)
authorafm007
permlinkre-joseph-mining-steem-for-dummies-20180110t072247356z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2018-01-10 07:22:54
last_update2018-01-10 07:22:54
depth1
children0
last_payout2018-01-17 07:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation895,648,735,715
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,433,516
net_rshares0
author_curate_reward""
vote details (1)
@agusnb ·
I am mining in Windows with my CPU. Where do the Steem that i mine go? 
I have a file in the folder which name is cli_wallet. 
Do the Steems that i mine go to my wallet of Steemit.com?
👍  
properties (23)
authoragusnb
permlinkre-joseph-mining-steem-for-dummies-20160713t043909957z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 04:39:39
last_update2016-07-13 04:39:39
depth1
children5
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation8,038,154
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id90,959
net_rshares117,115,628
author_curate_reward""
vote details (1)
@brunokenj ·
Good question. Where we can check the balance?
👍  
properties (23)
authorbrunokenj
permlinkre-agusnb-re-joseph-mining-steem-for-dummies-20160713t131148854z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 13:11:45
last_update2016-07-13 13:11:45
depth2
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation1,829,931
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id94,964
net_rshares117,115,628
author_curate_reward""
vote details (1)
@gobbahfett ·
There's no public key given to your mining wallet that you can see? Or nothing on your cmd window displaying mined STEEM?
properties (22)
authorgobbahfett
permlinkre-brunokenj-re-agusnb-re-joseph-mining-steem-for-dummies-20160713t150723102z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 15:07:24
last_update2016-07-13 15:07:24
depth3
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation11,452,781,153
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,143
net_rshares0
@joseph ·
>>> list_my_accounts   will give you balance of all the accounts with keys loaded.
The block will go to the miner account you are using as Steem Power
properties (22)
authorjoseph
permlinkre-agusnb-re-joseph-mining-steem-for-dummies-20160727t062118847z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:21:15
last_update2016-07-27 06:21:15
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length159
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,248
net_rshares0
@kirill7 ·
Same questions(
Can't find any information(
👍  
properties (23)
authorkirill7
permlinkre-agusnb-re-joseph-mining-steem-for-dummies-20160713t223716935z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 22:37:18
last_update2016-07-13 22:37:18
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation39,218,698,377
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id101,797
net_rshares11,521,492
author_curate_reward""
vote details (1)
@allyouneedtoknow ·
Hey,
great guide but i got a problem with starting a new cli_wallet.
>Logging RPC to file: logs/rpc/rpc.log
Starting a new wallet
131415ms th_a       main.cpp:154                  main                 ] wdata.ws_server: ws://localhost:8090 
0 exception: unspecified
Timer Expired
    {"message":"Timer Expired"}
    asio  websocket.cpp:444 operator()
{"uri":"ws://localhost:8090"}
    th_a  websocket.cpp:673 connect

Any solution for this?
properties (22)
authorallyouneedtoknow
permlinkre-joseph-mining-steem-for-dummies-20160817t000642792z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-17 00:05:12
last_update2016-08-17 00:05:12
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length440
author_reputation7,439,666,530,016
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id844,040
net_rshares0
@roelandp ·
This error has been bugging me also on newer servers and could never find my way around it but just simply accepting it and using an older machine for cli_wallet related stuff. But today i think i finally found the solution. 

fix: update this file: 
https://github.com/zaphoyd/websocketpp/commit/0bb33e4bca4ccc42a36aa2321e4fb97f2562e519

Will be fixed in websocket++ 0.8 which hopefully gets included in Steem. 

Github Discussion to learn more: 
https://github.com/zaphoyd/websocketpp/issues/623

I did a manual change to the file mentioned above and then it works. You will need to `cmake / make` again. 

Apparently this is caused by a 'change' in Linux Kernel > 4.4 so first check with `uname -r` that you are indeed running a node with kernel > 4.4
👍  
properties (23)
authorroelandp
permlinkre-allyouneedtoknow-re-joseph-mining-steem-for-dummies-20170714t205119177z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://github.com/zaphoyd/websocketpp/commit/0bb33e4bca4ccc42a36aa2321e4fb97f2562e519","https://github.com/zaphoyd/websocketpp/issues/623"],"app":"steemit/0.1"}
created2017-07-14 20:51:18
last_update2017-07-14 20:51:18
depth2
children0
last_payout2017-07-21 20:51:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length754
author_reputation662,936,810,561,284
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,499,278
net_rshares2,853,253,650
author_curate_reward""
vote details (1)
@anarcharos ·
Hi there All,

I followed this tuto ..and it all works well....until I get to the last bit to make of compile steemd ...at which point my extremely low memory machine can not allocate memory to finish the compilation .... could any one that has built this object in Ubunto be kind to email it to me?
Steemd and cli_wallet ?

you can do so to : mvillamilb@gmail.com

Many thanks!
properties (22)
authoranarcharos
permlinkre-joseph-mining-steem-for-dummies-20160821t013223847z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-21 01:32:27
last_update2016-08-21 01:32:27
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length378
author_reputation94,040,191,830
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id914,484
net_rshares0
@anarcharos ·
Hey Joseph,
Thank for the guide it works awesomely well !!

Just a question...what happend if you don't definre the number of threads? what would then be the default ?

Many thanks!

/Anarcharos
properties (22)
authoranarcharos
permlinkre-joseph-mining-steem-for-dummies-20160822t185736108z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-22 18:57:39
last_update2016-08-22 18:57:39
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation94,040,191,830
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id938,895
net_rshares0
@ausbitbank · (edited)
$3.79
For future visitors hoping to get mining - This guide wont work anymore sorry
(prompted by <a href="https://steemit.com/curation/@ausbitbank/want-to-win-1000-sp-of-delegated-power-tell-me-why#@stocka/re-ausbitbank-want-to-win-1000-sp-of-delegated-power-tell-me-why-20170702t094643306z">this comment</a> , upvoted for visibility)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorausbitbank
permlinkre-joseph-mining-steem-for-dummies-20170702t103943486z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1","links":["https://steemit.com/curation/@ausbitbank/want-to-win-1000-sp-of-delegated-power-tell-me-why#@stocka/re-ausbitbank-want-to-win-1000-sp-of-delegated-power-tell-me-why-20170702t094643306z"]}
created2017-07-02 10:39:45
last_update2017-07-02 10:54:00
depth1
children8
last_payout2017-07-09 10:39:45
cashout_time1969-12-31 23:59:59
total_payout_value3.774 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length328
author_reputation287,009,709,424,827
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,996,635
net_rshares491,511,706,480
author_curate_reward""
vote details (33)
@brad-saunders ·
So how do I set up a wallet and start witnessing, are there a set of current instructions I can follow.  What sort of results are people getting that are already witnessing?
properties (22)
authorbrad-saunders
permlinkre-ausbitbank-re-joseph-mining-steem-for-dummies-20170908t233442958z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-09-08 23:34:42
last_update2017-09-08 23:34:42
depth2
children2
last_payout2017-09-15 23:34:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation494,931,709,295
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,304,509
net_rshares0
@ausbitbank ·
Yes, instructions exist but if you can't do basic research I don't think you should be a witness.
👍  ,
properties (23)
authorausbitbank
permlinkre-brad-saunders-re-ausbitbank-re-joseph-mining-steem-for-dummies-20170909t033159766z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-09-09 03:32:00
last_update2017-09-09 03:32:00
depth3
children1
last_payout2017-09-16 03:32:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation287,009,709,424,827
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,318,589
net_rshares4,487,071,559
author_curate_reward""
vote details (2)
@lucky.digger · (edited)
$0.03
Hi @ausbitbank, you are the only witness I have voted for so far. Just saying hi. Also, thank you, you are my best voter. Further, I would highly appreciate an indication of how Steem is mined since you have indicated this post no longer works.
👍  ,
properties (23)
authorlucky.digger
permlinkre-ausbitbank-re-joseph-mining-steem-for-dummies-20170705t170052491z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["ausbitbank"],"app":"steemit/0.1"}
created2017-07-05 17:00:57
last_update2017-07-05 17:01:18
depth2
children3
last_payout2017-07-12 17:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation2,065,032,175,011
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,419,601
net_rshares6,855,394,008
author_curate_reward""
vote details (2)
@ausbitbank ·
$0.02
Thanks for your support :)
Steem is no longer mined through traditional  proof of work mining for a few hardforks now.
Block production is now handled by DPOS witnesses and rewards are split between authors, curators and witnesses. You can see the breakdown on where new steem goes on the front of steemdb.com
👍  , ,
properties (23)
authorausbitbank
permlinkre-luckydigger-re-ausbitbank-re-joseph-mining-steem-for-dummies-20170706t015232394z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-07-06 01:52:30
last_update2017-07-06 01:52:30
depth3
children2
last_payout2017-07-13 01:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.017 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length309
author_reputation287,009,709,424,827
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,464,489
net_rshares4,960,656,150
author_curate_reward""
vote details (3)
@thebluecorner ·
super, thanks for heads up
properties (22)
authorthebluecorner
permlinkre-ausbitbank-re-joseph-mining-steem-for-dummies-20170817t014452700z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-08-17 01:44:54
last_update2017-08-17 01:44:54
depth2
children0
last_payout2017-08-24 01:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation16,550,235,494
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,040,457
net_rshares0
@billbutler ·
You might want to add  a `sudo` to the front of all your install options for those who aren't logged in as root while performing the install. Great guide.
👍  , , , ,
properties (23)
authorbillbutler
permlinkre-joseph-mining-steem-for-dummies-20160711t162024603z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-11 16:20:24
last_update2016-07-11 16:20:24
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation31,319,794,402,837
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,361
net_rshares7,225,528,176
author_curate_reward""
vote details (5)
@usefree ·
Yes. At least here 
``` bash
sudo ./b2 install
```
properties (22)
authorusefree
permlinkre-billbutler-re-joseph-mining-steem-for-dummies-20160721t194054635z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-21 19:40:51
last_update2016-07-21 19:40:51
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation3,199,795,184,038
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id256,164
net_rshares0
@billbutler ·
The config.ini file indicates that this is required, but I didn't see it mentioned in the instructions:

```
# RPC endpoint of a trusted validating node (required)
# trusted-node = 
```
properties (22)
authorbillbutler
permlinkre-joseph-mining-steem-for-dummies-20160712t135248414z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-12 13:52:48
last_update2016-07-12 13:52:48
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation31,319,794,402,837
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id85,339
net_rshares0
@joseph ·
not required, just fill the parts mentioned in the guide.
properties (22)
authorjoseph
permlinkre-billbutler-re-joseph-mining-steem-for-dummies-20160727t061835461z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:18:33
last_update2016-07-27 06:18:33
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,197
net_rshares0
@billykeed ·
Hello much thanks for the tutorial. I am syncing right now on my linux machine.  How can I tell how much steem I have mined eventually?  Thanks again.
👍  
properties (23)
authorbillykeed
permlinkre-joseph-mining-steem-for-dummies-20160724t160614009z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-24 16:06:15
last_update2016-07-24 16:06:15
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length150
author_reputation29,229,035,547,912
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id324,058
net_rshares51,845,514
author_curate_reward""
vote details (1)
@joseph ·
check the account wallet on steemit
properties (22)
authorjoseph
permlinkre-billykeed-re-joseph-mining-steem-for-dummies-20160727t063302214z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:33:00
last_update2016-07-27 06:33:00
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,409
net_rshares0
@birduino.solderz ·
I'm Dying to try this ..   i'm starting my Ubuntu download now!
properties (22)
authorbirduino.solderz
permlinkre-joseph-mining-steem-for-dummies-20180603t153258142z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2018-06-03 15:34:00
last_update2018-06-03 15:34:00
depth1
children0
last_payout2018-06-10 15:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,060,285
net_rshares0
@bitcoinuserx ·
When I type : ./steemd --rpc-endpoint, I am stuck at 0 block.

215400ms th_a       witness.cpp:196               plugin_startup       ] witness plugin:  plugin_startup() end
215400ms th_a       main.cpp:182                  main                 ] Started witness node on a chain with 0 blocks.

Now, I go try open ./cli_wallet, I get : 

Logging RPC to file: logs/rpc/rpc.log
2794677ms th_a       main.cpp:154                  main                 ] wdata.ws_server: ws://localhost:8090 
0 exception: unspecified
Underlying Transport Error
    {"message":"Underlying Transport Error"}
    asio  websocket.cpp:439 operator()

    {"uri":"ws://localhost:8090"}
    th_a  websocket.cpp:668 connect

I am Debian Jessie, but any idea why? I have no idea how to approach this... and slack is down.
👍  
properties (23)
authorbitcoinuserx
permlinkre-joseph-mining-steem-for-dummies-20160717t161302511z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-17 16:13:03
last_update2016-07-17 16:13:03
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length791
author_reputation54,521,899,681
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id147,497
net_rshares113,921,150
author_curate_reward""
vote details (1)
@doothewop ·
Were you able to figure this out?  Having same problem.
👍  ,
properties (23)
authordoothewop
permlinkre-bitcoinuserx-re-joseph-mining-steem-for-dummies-20160724t092759210z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-24 09:28:00
last_update2016-07-24 09:28:00
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation5,196,621,158
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id316,583
net_rshares169,909,072
author_curate_reward""
vote details (2)
@ninjaboon ·
did you configure your config.ini ? check the witness and miner section
properties (22)
authorninjaboon
permlinkre-bitcoinuserx-re-joseph-mining-steem-for-dummies-20160731t145938611z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-31 14:59:42
last_update2016-07-31 14:59:42
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation95,092,046,715
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id512,309
net_rshares0
@bitcube ·
A good beginner guide!

A few comments:
1) Perhaps you can mention what are the hardware needed for mining and how much disk space needed.

2) How do know or check if the blockchain is synced.
👍  , , , , , , ,
properties (23)
authorbitcube
permlinkre-joseph-mining-steem-for-dummies-20160429t110426355z
categorysteemhelp
json_metadata{}
created2016-04-29 11:04:33
last_update2016-04-29 11:04:33
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length192
author_reputation8,016,881,813,007
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,257
net_rshares9,984,364,799
author_curate_reward""
vote details (8)
@ninjaboon · (edited)
the steem blockchain is already at 8xx Mb in size. So best bet is get a 32 or bigger SD card for your RPI or 2 TB hard disks.
👍  
properties (23)
authorninjaboon
permlinkre-bitcube-re-joseph-mining-steem-for-dummies-20160731t150116128z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-31 15:01:18
last_update2016-07-31 15:01:33
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation95,092,046,715
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id512,342
net_rshares0
author_curate_reward""
vote details (1)
@bsameep ·
Hi Joseph, is there any updated guide available? For ubuntu 16.04 LTS server
properties (22)
authorbsameep
permlinkre-joseph-mining-steem-for-dummies-20170703t041504697z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-07-03 04:15:00
last_update2017-07-03 04:15:00
depth1
children0
last_payout2017-07-10 04:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation1,364,632,466,300
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,097,204
net_rshares0
@chhikara ·
During cli_wallet terminal when you say "PASSWORD". Do you mean we should select our own password like xxx or simple write "PASSWORD"
properties (22)
authorchhikara
permlinkre-joseph-mining-steem-for-dummies-20160812t134803808z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-12 13:48:06
last_update2016-08-12 13:48:06
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation289,500,307,482
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id764,904
net_rshares0
@joseph ·
choose your own password. Do not make it so simple.
properties (22)
authorjoseph
permlinkre-chhikara-re-joseph-mining-steem-for-dummies-20160813t092539125z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-13 09:25:36
last_update2016-08-13 09:25:36
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id780,058
net_rshares0
@chigotlan ·
I would just like to thank @joseph for all the hard work he put into making this guide as simple as possible. Truly, I really appreciate it. 

I had attempted to use @pfunk's guide to installing Steemd on windows, but I always had issues. I ditched it, picked up a HDD, installed Ubuntu, plugged in the Sata cables and started off this guide. Now, my steem POW miner is currently syncing with the blockchain, and truly...

I appreciate the effort put into this post.

Thanks.
👍  
properties (23)
authorchigotlan
permlinkre-joseph-mining-steem-for-dummies-20160715t171623771z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["joseph","pfunk"]}
created2016-07-15 17:16:24
last_update2016-07-15 17:16:24
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length475
author_reputation5,501,310,478
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,112
net_rshares0
author_curate_reward""
vote details (1)
@joseph ·
you are welcome Sir.
properties (22)
authorjoseph
permlinkre-chigotlan-re-joseph-mining-steem-for-dummies-20160727t063029944z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:30:27
last_update2016-07-27 06:30:27
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,372
net_rshares0
@christoryan ·
I am working on downloading Ubuntu now and hopefully have the client wallet and steem blockchain downloaded tonight! :D I will probably be aking a lot of questions so be prepared.
properties (22)
authorchristoryan
permlinkre-joseph-mining-steem-for-dummies-20170515t020932816z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-15 02:09:36
last_update2017-05-15 02:09:36
depth1
children2
last_payout2017-05-22 02:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation4,253,059,677,623
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,417,776
net_rshares0
@joseph ·
You can not mine steem anymore  This post is a year old.
properties (22)
authorjoseph
permlinkre-christoryan-re-joseph-mining-steem-for-dummies-20170515t044336062z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-15 04:43:36
last_update2017-05-15 04:43:36
depth2
children1
last_payout2017-05-22 04:43:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,419,822
net_rshares0
@christoryan ·
Wait whaaaa!? lol That's what I was thinking until I came across the mining tutorial... Thanks for the heads up
properties (22)
authorchristoryan
permlinkre-joseph-re-christoryan-re-joseph-mining-steem-for-dummies-20170515t101839256z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-15 10:18:39
last_update2017-05-15 10:18:39
depth3
children0
last_payout2017-05-22 10:18:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation4,253,059,677,623
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,424,412
net_rshares0
@criticalproof ·
Question: When there is a hard fork and we have to update, do we need to re-clone and re-make all, or is there a more efficient way?
👍  
properties (23)
authorcriticalproof
permlinkre-joseph-mining-steem-for-dummies-20160715t150159606z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-15 15:02:00
last_update2016-07-15 15:02:00
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation21,720,926,844
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,292
net_rshares0
author_curate_reward""
vote details (1)
@criticalproof ·
Answer: It looks like this is the only way, here is a post to help speed things up though https://steemit.com/steemhelp/@gregory-f/clueless-user-s-guide-to-upgrading-to-steemd-0-8-x
properties (22)
authorcriticalproof
permlinkre-criticalproof-re-joseph-mining-steem-for-dummies-20160716t083441194z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemit.com/steemhelp/@gregory-f/clueless-user-s-guide-to-upgrading-to-steemd-0-8-x"]}
created2016-07-16 08:34:42
last_update2016-07-16 08:34:42
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation21,720,926,844
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,756
net_rshares0
@joseph ·
&gt;&gt;&gt; cd steem
&gt;&gt;&gt; git pull;git submodule update; make
👍  
properties (23)
authorjoseph
permlinkre-criticalproof-re-joseph-mining-steem-for-dummies-20160727t062831216z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:28:27
last_update2016-07-27 06:28:27
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,344
net_rshares0
author_curate_reward""
vote details (1)
@cryptohead ·
Thanks for the procedure.
It  started working to download the blockchain fine, but at the end it aborts with:
1006431ms th_a       main.cpp:182                  main                 ] Started witness node on a chain with 3350236 blocks.
Floating point exception

What could be the problem?
Thanks
properties (22)
authorcryptohead
permlinkre-joseph-mining-steem-for-dummies-20160725t212149516z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 21:21:48
last_update2016-07-25 21:21:48
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length296
author_reputation607,929,583,052
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id357,790
net_rshares0
@joseph ·
Have not seen that error before. Double check your config, and if you can not find anything wrong. head to slack #mining channel, see if someone can help with that error.
properties (22)
authorjoseph
permlinkre-cryptohead-re-joseph-mining-steem-for-dummies-20160727t064047436z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:40:45
last_update2016-07-27 06:40:45
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,525
net_rshares0
@cryptohead · (edited)
The problem was due to  very few resources. I added more cpu and ram to VPS and problem went away.
Lesson learned: Use a dedicated server with LOTS of CPU power and RAM if you want to effectively mine Steem.
properties (22)
authorcryptohead
permlinkre-joseph-re-cryptohead-re-joseph-mining-steem-for-dummies-20160731t142216833z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-31 14:22:21
last_update2016-07-31 14:24:36
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation607,929,583,052
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id511,651
net_rshares0
@demotruk ·
$0.16
Note for anyone who found this guide on Google:

# PoW Mining was removed from Steemit with hard fork 18. Any guides for mining Steem are thus out of date.
👍  , , , , , , , , , , , ,
properties (23)
authordemotruk
permlinkre-joseph-mining-steem-for-dummies-20170419t082936246z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-04-19 08:29:36
last_update2017-04-19 08:29:36
depth1
children4
last_payout2017-04-26 08:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.164 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation278,747,146,820,861
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,050,819
net_rshares884,464,733,091
author_curate_reward""
vote details (13)
@r0nd0n ·
Does this mean there is no way to mine steem now? Or just that these instructions won't work?
👍  
properties (23)
authorr0nd0n
permlinkre-demotruk-re-joseph-mining-steem-for-dummies-20170512t211733748z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-12 21:18:12
last_update2017-05-12 21:18:12
depth2
children3
last_payout2017-05-19 21:18:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation30,016,317,522,307
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,364,352
net_rshares0
author_curate_reward""
vote details (1)
@personz ·
There's no way to PoW mine now, it's all PoS witnessing
👍  , ,
properties (23)
authorpersonz
permlinkre-r0nd0n-re-demotruk-re-joseph-mining-steem-for-dummies-20170514t125645354z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-14 12:56:45
last_update2017-05-14 12:56:45
depth3
children2
last_payout2017-05-21 12:56:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation42,452,361,038,560
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,402,186
net_rshares0
author_curate_reward""
vote details (3)
@dev00100000 ·
Thank you for this. After struggling with the instructions on STEEM.IO, I finally stumbled upon this. Worked flawlessly with Ubuntu 16.04.
properties (22)
authordev00100000
permlinkre-joseph-mining-steem-for-dummies-20160727t042820520z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 04:28:21
last_update2016-07-27 04:28:21
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation1,043,628,096,840
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id394,451
net_rshares0
@joseph ·
good to hear that.
👍  
properties (23)
authorjoseph
permlinkre-dev00100000-re-joseph-mining-steem-for-dummies-20160727t063937647z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:39:36
last_update2016-07-27 06:39:36
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,512
net_rshares593,601,254
author_curate_reward""
vote details (1)
@ereismatias ·
excellent  beginner guide!
thanks!
👍  ,
properties (23)
authorereismatias
permlinkre-joseph-mining-steem-for-dummies-20160708t165500845z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-08 16:55:00
last_update2016-07-08 16:55:00
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation792,352,094,300
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,167
net_rshares672,194,693
author_curate_reward""
vote details (2)
@foma17 ·
Hi Joseph! can you update this guide or make new one?
I need guide for dummie to mine steem on VPS
properties (22)
authorfoma17
permlinkre-joseph-mining-steem-for-dummies-20160715t152705408z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-15 15:27:06
last_update2016-07-15 15:27:06
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation2,200,678,356,193
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,607
net_rshares0
@joseph ·
there is already a guide to mine on VPS.
not sure mining on VPS is still profitable though.
properties (22)
authorjoseph
permlinkre-foma17-re-joseph-mining-steem-for-dummies-20160727t062947824z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:29:45
last_update2016-07-27 06:29:45
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,362
net_rshares0
@forykw ·
Any updates? current wallets do not work most of the fuctions...
properties (22)
authorforykw
permlinkre-joseph-mining-steem-for-dummies-20170603t131925908z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-06-03 13:19:24
last_update2017-06-03 13:19:24
depth1
children1
last_payout2017-06-10 13:19:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation92,176,539,844,676
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,109,005
net_rshares0
@jensm85 ·
I took me  a week or two... to figure out mining is not possible anymore.
i took me an additional half a day today to install linux on a spare machine and then finally to figure out mining isnt available anymore. see the FAQ. https://steemit.com/faq.html#Can_I_mine_STEEM
👍  
properties (23)
authorjensm85
permlinkre-forykw-re-joseph-mining-steem-for-dummies-20170701t134554146z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2017-07-01 13:45:54
last_update2017-07-01 13:45:54
depth2
children0
last_payout2017-07-08 13:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length271
author_reputation361,567,763,942
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,891,960
net_rshares0
author_curate_reward""
vote details (1)
@fractalnode ·
what resources I will need on  VPS  ?
properties (22)
authorfractalnode
permlinkre-joseph-mining-steem-for-dummies-20160512t183553735z
categorysteemhelp
json_metadata{}
created2016-05-12 18:36:15
last_update2016-05-12 18:36:15
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation6,921,645,358,941
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,271
net_rshares0
@b0y2k ·
CPU!!! lots of it, i am running mine on UBUNTU 15  dual xenon. Not sure a vps will return much if its not a decent chunk of the resources available.
properties (22)
authorb0y2k
permlinkre-fractalnode-re-joseph-mining-steem-for-dummies-20160512t183553735z-20160521t233346365z
categorysteemhelp
json_metadata{}
created2016-05-21 23:31:36
last_update2016-05-21 23:31:36
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation576,806,030,298,882
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,605
net_rshares0
@gegstore ·
how i can to mine with 2 pc on 1 wallet on 1pc?
👍  
properties (23)
authorgegstore
permlinkre-joseph-mining-steem-for-dummies-20160727t173921780z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 17:39:27
last_update2016-07-27 17:39:27
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation1,557,255
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id410,648
net_rshares99,664,351
author_curate_reward""
vote details (1)
@gigabyte ·
very good documentation, clarify lots of stuff for me
properties (22)
authorgigabyte
permlinkre-joseph-mining-steem-for-dummies-20160503t041141038z
categorysteemhelp
json_metadata{}
created2016-05-03 04:11:42
last_update2016-05-03 04:11:42
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,956
net_rshares0
@gigabyte ·
seed-node is really important, and lots of other document list dead seed-node!! below is what I am using:
seed-node = 45.32.186.90:1779
seed-node = 45.32.186.90:1781
seed-node = 192.99.4.226:2001
seed-node = 46.252.27.1:1337
seed-node = 81.89.101.133:2001
seed-node = 52.4.250.181:39705
seed-node = 85.214.65.220:2001
properties (22)
authorgigabyte
permlinkre-joseph-mining-steem-for-dummies-20160503t041501050z
categorysteemhelp
json_metadata{}
created2016-05-03 04:15:00
last_update2016-05-03 04:15:00
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length317
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,958
net_rshares0
@hipster · (edited)
$3.15
Thanks @joseph, it works. But my rate is 1 hps and estimated time to produce about 17 mln minutes.
My CPU is i7-6700K Skylake. So I doubt that 1 hps is normal. What do I do wrong?
👍  , , , , ,
properties (23)
authorhipster
permlinkre-joseph-mining-steem-for-dummies-20160629t093341683z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["joseph"]}
created2016-06-29 09:33:42
last_update2016-06-29 09:35:00
depth1
children5
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value3.050 HBD
curator_payout_value0.101 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation43,811,990,885,529
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,883
net_rshares4,592,931,513,045
author_curate_reward""
vote details (6)
@agente ·
syncing! wait..
properties (22)
authoragente
permlinkre-hipster-re-joseph-mining-steem-for-dummies-20160720t083222335z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-20 08:32:21
last_update2016-07-20 08:32:21
depth2
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation114,390,361,910
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id213,471
net_rshares0
@tofm2 ·
How long would it take to sync ? 
Do syncing and mining processes need to be separated (when i try to mine before syncing is done, nothing happens)
👍  
properties (23)
authortofm2
permlinkre-agente-re-hipster-re-joseph-mining-steem-for-dummies-20170417t210148155z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-04-17 21:01:48
last_update2017-04-17 21:01:48
depth3
children1
last_payout2017-04-24 21:01:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation411,114,848,872
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,037,477
net_rshares0
author_curate_reward""
vote details (1)
@joseph ·
$0.03
you did not do anything wrong, 1hps means you are syncing, once synced your real hps will show.
👍  , , ,
properties (23)
authorjoseph
permlinkre-hipster-re-joseph-mining-steem-for-dummies-20160708t183346391z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-08 18:33:45
last_update2016-07-08 18:33:45
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,552
net_rshares166,854,094,524
author_curate_reward""
vote details (4)
@beastmastermason ·
Mine is up and running but my estimated time to produce is anywhere from 400 to 3000 minutes it seems like....  Hashrate around 13k.  It keeps telling me I am getting 3, 5, etc. transactions.  Sorry if this is totally ignorant but this is my first time attempting anything like this.  Is this working properly?  I have an i7 920 desktop, 12gb ram devoted, created 8 accounts - was that too much?
properties (22)
authorbeastmastermason
permlinkre-joseph-re-hipster-re-joseph-mining-steem-for-dummies-20160724t232208904z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-24 23:22:15
last_update2016-07-24 23:22:15
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length395
author_reputation261,451,212,790
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id333,915
net_rshares0
@hobgoblin ·
I´m confused about the mining wallet. 
Can I mine straight to my Steem-account?? Or can I transfer the mined steem to my account?
👍  , ,
properties (23)
authorhobgoblin
permlinkre-joseph-mining-steem-for-dummies-20160801t160039108z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-01 16:00:36
last_update2016-08-01 16:00:36
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation9,125,224,823
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id537,446
net_rshares181,925,540
author_curate_reward""
vote details (3)
@htooms ·
Very clear and concise!  I am running into this:

CMake Error: The source directory "/home/user" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
user@DebSteem2:~$ cd steem
user@DebSteem2:~/steem$ make.
bash: make.: command not found
user@DebSteem2:~/steem$ make .
make: Nothing to be done for '.'.
user@DebSteem2:~/steem$ cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONTENT_PATCHING=OFF -DLOW_MEMORY_NODE=ON
CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
CMake 3.2 or higher is required.  You are running version 3.0.2

I am running debian--8
not sure how to find an update
tried 
apt-get update
atp-get upgrade

Says "lastest version installed"
properties (22)
authorhtooms
permlinkre-joseph-mining-steem-for-dummies-20180301t230740821z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2018-03-01 23:07:42
last_update2018-03-01 23:07:42
depth1
children1
last_payout2018-03-08 23:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length718
author_reputation31,456,627,091,608
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id41,492,198
net_rshares0
@joelone ·
Don't bother, this kind of proof of work mining has been removed from Steem.
https://steemit.com/faq.html#Can_I_mine_STEEM
properties (22)
authorjoelone
permlinkre-htooms-re-joseph-mining-steem-for-dummies-20180307t060459097z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2018-03-07 06:05:00
last_update2018-03-07 06:05:00
depth2
children0
last_payout2018-03-14 06:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation1,566,916,142
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,794,830
net_rshares0
@inertia · (edited)
Trying to build on a Raspberry Pi 3, got to `make` when:

https://cl.ly/3a2H1e1n1r0W/Screen%20Shot%202016-07-13%20at%201.38.24%20PM.png
https://cl.ly/0Q0e0x252l2T/Screen%20Shot%202016-07-13%20at%201.55.38%20PM.png
👍  ,
properties (23)
authorinertia
permlinkre-joseph-mining-steem-for-dummies-20160713t203940422z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"image":["https://cl.ly/3a2H1e1n1r0W/Screen%20Shot%202016-07-13%20at%201.38.24%20PM.png"]}
created2016-07-13 20:39:39
last_update2016-07-13 20:56:15
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation346,568,901,399,561
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,452
net_rshares2,648,594,449
author_curate_reward""
vote details (2)
@joseph ·
I have had that error multiple times, I was told it's a linking issue. I am not familiar with raspberry pie, never owned one. But for that error I would suggest to double check your boost installation.
try this instead in boost section:

sudo ./bootstrap.sh --prefix=/usr/local
sudo ./b2 install
👍  
properties (23)
authorjoseph
permlinkre-inertia-re-joseph-mining-steem-for-dummies-20160714t015921440z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 01:59:12
last_update2016-07-14 01:59:12
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,881
net_rshares2,043,782,074
author_curate_reward""
vote details (1)
@inertia · (edited)
It does appear to have been the boost install.  I probably didn't `sudo` those in the first attempt.

**Update:** Nope, I got the same build error, eventually.  I'll keep poking at it.
**Update:** I got it to compile on my Raspberry Pi by adding swap:

`sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=2000`
`sudo mkswap /var/swap.img`
`sudo swapon /var/swap.img`
👍  , ,
properties (23)
authorinertia
permlinkre-joseph-re-inertia-re-joseph-mining-steem-for-dummies-20160714t032139472z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 03:21:39
last_update2016-07-16 00:30:39
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
author_reputation346,568,901,399,561
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,630
net_rshares2,203,169,441
author_curate_reward""
vote details (3)
@inertia ·
If you're using Digital Ocean and you're seeing messages like:

`g++: internal compiler error: Killed (program cc1plus)
`

Here's a simple fix:

`sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000`
`sudo mkswap /var/swap.img`
`sudo swapon /var/swap.img`
👍  
properties (23)
authorinertia
permlinkre-joseph-mining-steem-for-dummies-20160715t172301810z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-15 17:23:03
last_update2016-07-15 17:23:03
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation346,568,901,399,561
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,211
net_rshares3,462,455,642
author_curate_reward""
vote details (1)
@isildur ·
Worked like a charm! The mining didn't work though, but wallet was working at least .. any plans on doing more of these? I switched from windows and finding a lot of this crazy hard, but the more I do it, the easier It becomes .. I want a guide for https://bitcointalk.org/index.php?topic=660544.0 .. help me and yourself out lol .. cheers
properties (22)
authorisildur
permlinkre-joseph-mining-steem-for-dummies-20160807t020222433z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://bitcointalk.org/index.php?topic=660544.0"]}
created2016-08-07 02:02:24
last_update2016-08-07 02:02:24
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length339
author_reputation10,822,550
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id654,419
net_rshares0
@jj888 ·
I restarted steemd with ./steemd --rpc-endpoint but it just syncs and doesn't mine?
👍  
properties (23)
authorjj888
permlinkre-joseph-mining-steem-for-dummies-20160808t010815282z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-08 01:08:24
last_update2016-08-08 01:08:24
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation129,581,885,834
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id673,915
net_rshares182,484,130
author_curate_reward""
vote details (1)
@jooni22 ·
How to mine steem using free trial in Google Cloud
https://steemit.com/mining/@jooni22/how-to-free-miming-steem-on-google-cloud-for-beginner
👍  
properties (23)
authorjooni22
permlinkre-joseph-mining-steem-for-dummies-20160714t134040876z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemit.com/mining/@jooni22/how-to-free-miming-steem-on-google-cloud-for-beginner"]}
created2016-07-14 13:40:42
last_update2016-07-14 13:40:42
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation1,565,304,596
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,542
net_rshares1,469,202,951
author_curate_reward""
vote details (1)
@joseph ·
will not work, they limit free trial to 1 core, which is pretty much a waste of time.
properties (22)
authorjoseph
permlinkre-jooni22-re-joseph-mining-steem-for-dummies-20160727t062644613z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:26:42
last_update2016-07-27 06:26:42
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,323
net_rshares0
@jupiter00000 ·
jupiter@jupiter-All-Series:~$ cd secp256k1
jupiter@jupiter-All-Series:~/secp256k1$ ./autogen.sh
./autogen.sh: 3: ./autogen.sh: autoreconf: not found
jupiter@jupiter-All-Series:~/secp256k1$ ./configure
bash: ./configure: No such file or directory
jupiter@jupiter-All-Series:~/secp256k1$ make
make: *** No targets specified and no makefile found.  Stop.
jupiter@jupiter-All-Series:~/secp256k1$ ./autogen.sh
./autogen.sh: 3: ./autogen.sh: autoreconf: not found
jupiter@jupiter-All-Series:~/secp256k1$ 
jupiter@jupiter-All-Series:~/secp256k1$ ./autogen.sh
./autogen.sh: 3: ./autogen.sh: autoreconf: not found

Getting errors.... now what?
properties (22)
authorjupiter00000
permlinkre-joseph-mining-steem-for-dummies-20160505t035138729z
categorysteemhelp
json_metadata{}
created2016-05-05 03:51:39
last_update2016-05-05 03:51:39
depth1
children4
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length634
author_reputation9,803,520,074,238
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,557
net_rshares0
@chrishronic · (edited)
Maybe a little late to help you, but for others with similar issues, if you get a "xxx: not found" error, it usually means the xxx is missing. In this case, try allso installing autoconf (the [autoconf manual][src] states autoreconf runs autoconf). In Maybe this works:

[src]: https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/autoreconf-Invocation.html

> sudo apt-get install autoconf
👍  
properties (23)
authorchrishronic
permlinkre-jupiter00000-re-joseph-mining-steem-for-dummies-20160713t175443140z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/autoreconf-Invocation.html"]}
created2016-07-13 17:54:42
last_update2016-07-13 17:58:45
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length420
author_reputation409,530,926,935
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id98,265
net_rshares0
author_curate_reward""
vote details (1)
@jupiter00000 ·
Can I tell you something? I did NOT make the comment that you are responding to.
properties (22)
authorjupiter00000
permlinkre-chrishronic-re-jupiter00000-re-joseph-mining-steem-for-dummies-20160719t181502990z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-19 18:15:03
last_update2016-07-19 18:15:03
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation9,803,520,074,238
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id194,778
net_rshares0
@joseph ·
if you get an error while following this guide please stop, and go to http://steem.herokuapp.com 

once you are on STEEM slack join room #help

you can try this:

    > cd
    > rm -rf  secp256k1
    > git clone https://github.com/bitcoin/secp256k1
    > cd secp256k1
    > ./autogen.sh
    > ./configure
    > make
    > ./tests



then continue with the rest.  if you still get errors come to slack.
👍  
properties (23)
authorjoseph
permlinkre-jupiter00000-re-joseph-mining-steem-for-dummies-20160505t035138729z-20160505t050342673z
categorysteemhelp
json_metadata{}
created2016-05-05 05:03:39
last_update2016-05-05 05:03:39
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length401
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,583
net_rshares0
author_curate_reward""
vote details (1)
@jupiter00000 ·
Can I tell you something? I did NOT make the comment that you are responding to.
👍  
properties (23)
authorjupiter00000
permlinkre-joseph-re-jupiter00000-re-joseph-mining-steem-for-dummies-20160719t181435085z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-19 18:14:33
last_update2016-07-19 18:14:33
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation9,803,520,074,238
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id194,765
net_rshares315,522,154
author_curate_reward""
vote details (1)
@k-rapper ·
wish the site had a way to bookmark or favorite a post so that I can refer to it later when I have time to follow the instructions
👍  , , ,
properties (23)
authork-rapper
permlinkre-joseph-mining-steem-for-dummies-20160503t163325405z
categorysteemhelp
json_metadata{}
created2016-05-03 16:33:27
last_update2016-05-03 16:33:27
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation3,356,058,060,909
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id2,064
net_rshares3,792,704,517
author_curate_reward""
vote details (4)
@khunfarang ·
Warning! mining is not possible anymore. 
Save your time.

>Can I mine STEEM?
>No. Proof of work mining has been removed from Steem.
>https://steemit.com/faq.html#Can_I_mine_STEEM
properties (22)
authorkhunfarang
permlinkre-joseph-mining-steem-for-dummies-20170705t112934052z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2017-07-05 11:29:33
last_update2017-07-05 11:29:33
depth1
children0
last_payout2017-07-12 11:29:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation23,724,395,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,385,923
net_rshares0
@lauralemons ·
I joined steemit with very little knowledge about cryptocurrency. I knew a bit about bitcoin and had a few dollars in some wallet but I didn't know about mining and still don't but steem is making me inspired to learn more. I am pretty intimidated by the whole prospect. But thanks for this! :)
👍  
properties (23)
authorlauralemons
permlinkre-joseph-mining-steem-for-dummies-20160712t054940623z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-12 05:49:39
last_update2016-07-12 05:49:39
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length294
author_reputation62,121,500,090,796
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id83,181
net_rshares253,430,226
author_curate_reward""
vote details (1)
@lukas88 ·
when entering this line 
tar xzvf boost_1_60_0.tar.gz
getting 
gzip: stdin: not in gzip format
tar: child returned status 1
tar: Error is not recoverable: exiting now
running on Ubuntu ( last version)
What should I do wrong?
properties (22)
authorlukas88
permlinkre-joseph-mining-steem-for-dummies-20160713t002912285z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 00:29:15
last_update2016-07-13 00:29:15
depth1
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id89,213
net_rshares0
@criticalproof ·
Same issue, apparently sourceforge was down for a while, but all is well now!
properties (22)
authorcriticalproof
permlinkre-lukas88-re-joseph-mining-steem-for-dummies-20160714t035154584z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 03:51:54
last_update2016-07-14 03:51:54
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation21,720,926,844
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,886
net_rshares0
@kodachrome ·
Something wrong with the link/sourceforge in the previous step, the file is meant to be 75-85MB big not 200k. Google for " boost_1_60_0.tar.gz " and download it from a mirror and place in the same folder as the guide expects it.
properties (22)
authorkodachrome
permlinkre-lukas88-re-joseph-mining-steem-for-dummies-20160713t104709696z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 10:47:09
last_update2016-07-13 10:47:09
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation119,101,290,755
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id93,873
net_rshares0
@lukas88 · (edited)
thanks. I downloaded again. Now, everything fine.
properties (22)
authorlukas88
permlinkre-kodachrome-re-lukas88-re-joseph-mining-steem-for-dummies-20160713t212507521z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 21:25:09
last_update2016-07-13 21:43:33
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id100,971
net_rshares0
@lukas88 ·
After got through all of the steps I got the following lines:
3218891ms th_a       database.cpp:3315             apply_hardfork       ] HARDFORK 3
177178ms th_a       database.cpp:3321             apply_hardfork       ] HARDFORK 4

What should I  do after this?
How can I start mining? Or this process will start automatically ?
Where can I see how  mining is going on?
properties (22)
authorlukas88
permlinkre-joseph-mining-steem-for-dummies-20160713t231442797z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 23:14:45
last_update2016-07-13 23:14:45
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length369
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,286
net_rshares0
@joseph ·
you are not done syncing, when done it should start mining.
properties (22)
authorjoseph
permlinkre-lukas88-re-joseph-mining-steem-for-dummies-20160714t015421594z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 01:54:12
last_update2016-07-14 01:54:12
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,815
net_rshares0
@lukas88 ·
hi, 
after all steps got the following:
2892580ms th_a       database.cpp:3344             apply_hardfork       ] HARDFORK 8
2963709ms ntp        ntp.cpp:177                   read_loop            ] ntp_delta_time updated to -1243 us
how will I know when it stars mining ?
how can I see balances and on what phrase is the process of mining?
properties (22)
authorlukas88
permlinkre-joseph-mining-steem-for-dummies-20160714t064211821z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 06:42:12
last_update2016-07-14 06:42:12
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id106,384
net_rshares0
@anik657 ·
did you figure this out? =)
properties (22)
authoranik657
permlinkre-lukas88-re-joseph-mining-steem-for-dummies-20160723t025344038z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-23 02:53:42
last_update2016-07-23 02:53:42
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation1,087,987,193
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id288,150
net_rshares0
@joseph ·
if it freezes at that part restart steemd with  --replay-blockchain
properties (22)
authorjoseph
permlinkre-lukas88-re-joseph-mining-steem-for-dummies-20160727t062436839z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:24:33
last_update2016-07-27 06:24:33
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,292
net_rshares0
@luke490 ·
This has been an awesome reference for me...(So, First thank you Joseph.) But... Boost C++ has updated from 1_60_0 to 1_61_0. and possibly some other changes... Would you mind if I re-posted this organized the way I see fit?
properties (22)
authorluke490
permlinkre-joseph-mining-steem-for-dummies-20160802t153530450z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-02 15:35:33
last_update2016-08-02 15:35:33
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation241,302,356,483
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id561,325
net_rshares0
@joseph ·
Yes, please do.  I am glad you are interested in doing so.
properties (22)
authorjoseph
permlinkre-luke490-re-joseph-mining-steem-for-dummies-20160802t164840675z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-02 16:48:39
last_update2016-08-02 16:48:39
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id562,559
net_rshares0
@marc-fa-schiwo ·
thanks a lot for your tutorial !!!!
👍  
properties (23)
authormarc-fa-schiwo
permlinkre-joseph-mining-steem-for-dummies-20160603t124614029z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-06-03 12:46:09
last_update2016-06-03 12:46:09
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation1,712,793,089,152
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,532
net_rshares360,579,114
author_curate_reward""
vote details (1)
@markopaasila ·
For how long will POW mining continue?
👍  ,
properties (23)
authormarkopaasila
permlinkre-joseph-mining-steem-for-dummies-20160429t110933126z
categorysteemhelp
json_metadata{}
created2016-04-29 11:08:54
last_update2016-04-29 11:08:54
depth1
children14
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation32,771,884,740,822
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,259
net_rshares403,322,019
author_curate_reward""
vote details (2)
@au1nethyb1 ·
**Forever...** 

STEEM network blocks are produced by 5% computational POW and 95% DPOS-style voting of VESTING stakeholders.
👍  , ,
properties (23)
authorau1nethyb1
permlinkre-markopaasila-re-joseph-mining-steem-for-dummies-20160429t110933126z-20160429t115305479z
categorysteemhelp
json_metadata{}
created2016-04-29 11:53:06
last_update2016-04-29 11:53:06
depth2
children9
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation13,097,455,837,487
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,274
net_rshares10,013,662,509
author_curate_reward""
vote details (3)
@tuck-fheman ·
Wow, I was not aware of that. I'm assuming there is no way to mine in Windows just yet, is that correct?
👍  ,
properties (23)
authortuck-fheman
permlinkre-au1nethyb1-re-markopaasila-re-joseph-mining-steem-for-dummies-20160429t110933126z-20160429t115305479z-20160429t123002555z
categorysteemhelp
json_metadata{}
created2016-04-29 12:30:12
last_update2016-04-29 12:30:12
depth3
children8
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation345,778,813,561,569
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,290
net_rshares604,321,293
author_curate_reward""
vote details (2)
@joseph ·
Typing info in the Cli_wallet will give important  information

unlocked >>> info

we look for these two lines

     "head_block_num": xxxxxxx,
     "head_block_age": "xx seconds old",

on a synced wallet head_block_age should be a couple of seconds old.

I have mined STEEM on a few machines including a 6 year old laptop.

I am not sure about hardware requirements, the issue never posed a problem for me and I never asked.

I will try to get that info. or maybe someone who knows can reply here.

As far as POW mining is concerned  it will run indefinitely, and reward miners with VESTS.
👍  , , , ,
properties (23)
authorjoseph
permlinkre-markopaasila-re-joseph-mining-steem-for-dummies-20160429t110933126z-20160429t115221231z
categorysteemhelp
json_metadata{}
created2016-04-29 11:52:12
last_update2016-04-29 11:52:12
depth2
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length590
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id1,273
net_rshares14,144,828,037
author_curate_reward""
vote details (5)
@gobbahfett ·
This gives me a little hope .. thank you. Gonna set this up on my *nix box right now.
👍  
properties (23)
authorgobbahfett
permlinkre-joseph-re-markopaasila-re-joseph-mining-steem-for-dummies-20160713t150339342z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-13 15:03:42
last_update2016-07-13 15:03:42
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation11,452,781,153
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,107
net_rshares226,928,084
author_curate_reward""
vote details (1)
@maxkoud ·
Please tell about mining on a few machines. I need to create a new accounts for each machine or may use same config.ini with one witness\miner name?
properties (22)
authormaxkoud
permlinkre-joseph-re-markopaasila-re-joseph-mining-steem-for-dummies-20160714t134748842z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 13:47:51
last_update2016-07-14 13:47:51
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation64,166,515,448
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,636
net_rshares0
@rimann ·
It says my head block age is 26 days old
properties (22)
authorrimann
permlinkre-joseph-re-markopaasila-re-joseph-mining-steem-for-dummies-20160823t155017151z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-23 15:50:24
last_update2016-08-23 15:50:24
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation4,534,352,190,320
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id952,688
net_rshares0
@martinh ·
i get these error messages:

1985208ms th_a       witness.cpp:189               plugin_startup       ] No witnesses configured! Please add witness names and private keys to configuration.
1985208ms th_a       witness.cpp:197               plugin_startup       ] No miners configured! Please add miner names and private keys to configuration.
1985209ms th_a       witness.cpp:199               plugin_startup       ] witness plugin:  plugin_startup() end
1985209ms th_a       main.cpp:182                  main                 ] Started witness node on a chain with 1331512 blocks.

what have i done wrong?
properties (22)
authormartinh
permlinkre-joseph-mining-steem-for-dummies-20160817t103503311z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-17 10:35:03
last_update2016-08-17 10:35:03
depth1
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length605
author_reputation3,940,211,959
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id850,407
net_rshares0
@allyouneedtoknow ·
Looks like you got the network running but did you create a cli_wallet and edited the config file?
properties (22)
authorallyouneedtoknow
permlinkre-martinh-re-joseph-mining-steem-for-dummies-20160818t154337131z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-18 15:42:06
last_update2016-08-18 15:42:06
depth2
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation7,439,666,530,016
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id872,503
net_rshares0
@martinh ·
what do i have to setup exactly? i run suggest_brain_key and got a block of data and i have my wif key when signing at at steemit.com ? i have witness = "martinh"and miner = ["martinh","key from signup at steemit is that correct? do i have to set up more?
properties (22)
authormartinh
permlinkre-allyouneedtoknow-re-martinh-re-joseph-mining-steem-for-dummies-20160818t194128470z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-18 19:41:27
last_update2016-08-18 19:41:27
depth3
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length255
author_reputation3,940,211,959
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id876,430
net_rshares0
@masterinvestor ·
https://www.steemimg.com/images/2016/07/25/mail-train-painting5b92f.th.jpg

I followed all your instructions and set up a miner on Digital Ocean. It worked perfectly after I allocated more memory to the droplet. I appreciate the effort you made to put together this guide. I wrote a post about my experience here https://steemit.com/mining/@masterinvestor/my-steem-engine-miner-experience.
properties (22)
authormasterinvestor
permlinkre-joseph-mining-steem-for-dummies-20160725t184308069z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"image":["https://www.steemimg.com/images/2016/07/25/mail-train-painting5b92f.th.jpg"]}
created2016-07-25 18:43:09
last_update2016-07-25 18:43:09
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length389
author_reputation147,373,199,177
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id353,538
net_rshares0
@joseph ·
you are welcome Sir.
properties (22)
authorjoseph
permlinkre-masterinvestor-re-joseph-mining-steem-for-dummies-20160727t063818656z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:38:15
last_update2016-07-27 06:38:15
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,500
net_rshares0
@minememineme69me ·
Fantastic, comprehensive tutorial, but I am banging my head against the wall the past two days.  

 I have a 22 vCPU Intel Haswell VM running Ubuntu 16.04 LTS(amd64 xenial image).   I already have wifkey from my user acct, so I dont generate one w/ &quot;suggest_brain_key&quot; I use the active private key from my account (I have actually tried both my active key and the key spit out by &quot;suggest_brain_key&quot;); however, this may have nothing to do with why I have a concussion from banging my head against the fuc&amp;(ng wall. 

 When its show time and I enter the `./steemd --rpc-endpoint --seed-node=&quot;seed.steemed.net:2001&quot;`  command or the `./steemd --rpc-endpoint` command, I am hit with the following:

```529626ms th_a       database.cpp:102              open                 ] 10 assert_exception: Assert Exception
maybe_found != nullptr: Unable to find Object
    {&quot;id&quot;:&quot;2.20.0&quot;}
    th_a  index.hpp:111 get
529626ms th_a       database.cpp:102              open                 ] data_dir: /home/mjmorningwood/steem/programs/steemd/witness_node_data_dir/blockchain 
529626ms th_a       application.cpp:352           startup              ] 10 assert_exception: Assert Exception
maybe_found != nullptr: Unable to find Object
    {&quot;id&quot;:&quot;2.20.0&quot;}
    th_a  index.hpp:111 get
rethrow
    {&quot;data_dir&quot;:&quot;/home/mjmorningwood/steem/programs/steemd/witness_node_data_dir/blockchain&quot;}
    th_a  database.cpp:102 open
529626ms th_a       application.cpp:879           startup              ] 10 assert_exception: Assert Exception
maybe_found != nullptr: Unable to find Object
    {&quot;id&quot;:&quot;2.20.0&quot;}
    th_a  index.hpp:111 get
rethrow
    {&quot;data_dir&quot;:&quot;/home/mjmorningwood/steem/programs/steemd/witness_node_data_dir/blockchain&quot;}
    th_a  database.cpp:102 open
rethrow
    {}
    th_a  application.cpp:352 startup
529626ms th_a       main.cpp:196                  main                 ] Exiting with error:
10 assert_exception: Assert Exception
maybe_found != nullptr: Unable to find Object
    {&quot;id&quot;:&quot;2.20.0&quot;}
    th_a  index.hpp:111 get
rethrow
    {&quot;data_dir&quot;:&quot;/home/mjmorningwood/steem/programs/steemd/witness_node_data_dir/blockchain&quot;}
    th_a  database.cpp:102 open
rethrow
    {}
    th_a  application.cpp:352 startup
```

Before I lose consciensness, could someone please just point me in the right direction.   I realize it has to do with the graphene /db/index.hpp.    But I cannot figure out what object `&quot;id&quot; :&quot;2.20.0&quot;` refers to.   The first person who can get my VM up and mining will receive 10% of the gross amount mined by that machine over a 5 day period of the geniuses choosing.   So, HELP ME, HELP YOU, HELP ME TO HELP YOURSELF!   Thanks in advance, I do appreciate it!   Feel free to contact me via the e-mail address listed below.  

MJ Morningwood

**[steemd@protonmail.ch](mailto:steemd@protonmail.ch)**
properties (22)
authorminememineme69me
permlinkre-joseph-mining-steem-for-dummies-20160727t065243576z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:52:42
last_update2016-07-27 06:52:42
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,003
author_reputation53,437,556
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,684
net_rshares0
@nioctib ·
is it worth mining steem on a shitty laptop??
can i use the same account for mining and for posting
properties (22)
authornioctib
permlinkre-joseph-mining-steem-for-dummies-20160714t093133388z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 09:31:33
last_update2016-07-14 09:31:33
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation85,098,617,111
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id107,719
net_rshares0
@joseph ·
you can you use same account for both, however, steemd ram requirements are increasing, so not sure a shitty laptop will do anymore, you can try.
properties (22)
authorjoseph
permlinkre-nioctib-re-joseph-mining-steem-for-dummies-20160727t062557944z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:25:54
last_update2016-07-27 06:25:54
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,314
net_rshares0
@noaommerrr ·
$0.26
Runnint the first the the ./cli_wallet fail on:

`Logging RPC to file: logs/rpc/rpc.log
Starting a new wallet
2318539ms th_a       main.cpp:154                  main                 ] wdata.ws_server: ws://localhost:8090 
2318550ms th_a       main.cpp:159                  main                 ] wdata.ws_user:  wdata.ws_password:  
2318675ms th_a       websocket_api.cpp:88          on_message           ] message: {"id":1,"result":true} 
2318676ms th_a       websocket_api.cpp:88          on_message           ] message: {"id":2,"result":2} 
2318677ms th_a       websocket_api.cpp:88          on_message           ] message: {"id":3,"result":3} 
2318677ms th_a       websocket_api.cpp:88          on_message           ] message: {"id":4,"error":{"code":1,"message":"10 assert_exception: Assert Exception\nit->second != nullptr: \n    {}\n    th_a  api.hpp:189 get_api_by_name","data":{"code":10,"name":"assert_exception","message":"Assert Exception","stack":[{"context":{"level":"error","file":"api.hpp","line":189,"method":"get_api_by_name","hostname":"","thread_name":"th_a","timestamp":"2016-05-14T07:38:38"},"format":"it->second != nullptr: ","data":{}}]}}} 
0 exception: unspecified
10 assert_exception: Assert Exception
it->second != nullptr: 
    {}
    th_a  api.hpp:189 get_api_by_name
    {"error":"10 assert_exception: Assert Exception\nit->second != nullptr: \n    {}\n    th_a  api.hpp:189 get_api_by_name","data":{"id":4,"error":{"code":1,"message":"10 assert_exception: Assert Exception\nit->second != nullptr: \n    {}\n    th_a  api.hpp:189 get_api_by_name","data":{"code":10,"name":"assert_exception","message":"Assert Exception","stack":[{"context":{"level":"error","file":"api.hpp","line":189,"method":"get_api_by_name","hostname":"","thread_name":"th_a","timestamp":"2016-05-14T07:38:38"},"format":"it->second != nullptr: ","data":{}}]}}}}
    th_a  state.cpp:38 handle_reply`
👍  , , , ,
properties (23)
authornoaommerrr
permlinkre-joseph-mining-steem-for-dummies-20160514t074140362z
categorysteemhelp
json_metadata{}
created2016-05-14 07:41:39
last_update2016-05-14 07:41:39
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.256 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,899
author_reputation2,271,075,629,264
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,097
net_rshares461,412,249,251
author_curate_reward""
vote details (5)
@dantheman ·
Version 0.4.3?
👍  ,
properties (23)
authordantheman
permlinkre-noaommerrr-re-joseph-mining-steem-for-dummies-20160514t074140362z-20160514t074458407z
categorysteemhelp
json_metadata{}
created2016-05-14 07:44:57
last_update2016-05-14 07:44:57
depth2
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation240,292,002,602,347
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,101
net_rshares27,598,084,497
author_curate_reward""
vote details (2)
@noaommerrr ·
$0.26
I upgrade and it OK now :-)
👍  ,
properties (23)
authornoaommerrr
permlinkre-dantheman-re-noaommerrr-re-joseph-mining-steem-for-dummies-20160514t074140362z-20160514t074458407z-20160517t070045629z
categorysteemhelp
json_metadata{}
created2016-05-17 07:00:45
last_update2016-05-17 07:00:45
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.256 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation2,271,075,629,264
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,579
net_rshares422,150,891,071
author_curate_reward""
vote details (2)
@okan ·
Thanks for this guide. But if i have more than one mining rigs is it safe to use exactly the same config in each of these? I read somewhere that i must use ONLY one witness name! is that valid?
properties (22)
authorokan
permlinkre-joseph-mining-steem-for-dummies-20160725t063901156z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 06:39:03
last_update2016-07-25 06:39:03
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length193
author_reputation3,829,995,485
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id340,271
net_rshares0
@joseph ·
use different miners / witnessess  on each machine
properties (22)
authorjoseph
permlinkre-okan-re-joseph-mining-steem-for-dummies-20160727t063353461z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:33:51
last_update2016-07-27 06:33:51
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,426
net_rshares0
@orchil ·
hey there,
i have a mac, so how do i set it up?
properties (22)
authororchil
permlinkre-joseph-mining-steem-for-dummies-20170515t035432420z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-15 03:54:33
last_update2017-05-15 03:54:33
depth1
children2
last_payout2017-05-22 03:54:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation0
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,419,246
net_rshares0
@joseph ·
You can not mine steem anymore do not bother. This post is a year old.
properties (22)
authorjoseph
permlinkre-orchil-re-joseph-mining-steem-for-dummies-20170515t044306477z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-05-15 04:43:06
last_update2017-05-15 04:43:06
depth2
children1
last_payout2017-05-22 04:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,419,817
net_rshares0
@gaissa ·
Totally impossible?
properties (22)
authorgaissa
permlinkre-joseph-re-orchil-re-joseph-mining-steem-for-dummies-20170603t053634668z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-06-03 05:36:36
last_update2017-06-03 05:36:36
depth3
children0
last_payout2017-06-10 05:36:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation120,843,439,847
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,097,115
net_rshares0
@psixto ·
Hi, good morning... two days running steemd......
1338525ms th_a       witness.cpp:426               on_applied_block     ] hash rate: 18065 hps  target: 30 queue: 106 estimated time to produce: 990 minutes
1338526ms th_a       application.cpp:439           handle_block         ] Got 5 transactions from network on block 3504327

17-18 Khps and nothing....is normal ? I thinking go back with monero (XMR) :(
properties (22)
authorpsixto
permlinkre-joseph-mining-steem-for-dummies-20160725t142956974z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 14:29:57
last_update2016-07-25 14:29:57
depth1
children5
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length408
author_reputation7,654,051,023
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id347,009
net_rshares0
@sigmajin · (edited)
i got my first POW in like 3 hours with like 16khps ... i think i got lucky as hell tho.
properties (22)
authorsigmajin
permlinkre-psixto-re-joseph-mining-steem-for-dummies-20160725t155351130z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 15:53:51
last_update2016-07-25 15:54:39
depth2
children4
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation35,847,511,233,614
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id349,101
net_rshares0
@psixto ·
48 hours, and nothing :( I don't like it ....
properties (22)
authorpsixto
permlinkre-sigmajin-re-psixto-re-joseph-mining-steem-for-dummies-20160725t185419116z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 18:54:18
last_update2016-07-25 18:54:18
depth3
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation7,654,051,023
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id353,843
net_rshares0
@psixto ·
mmm I'm checking steemstats.com, and i see this....
Mining Information
POW blocks that the watched accounts have found.
Account	Activity
psixto 
a day ago	Found a block

But can't see in my cli wallet, somebody knows why?
properties (22)
authorpsixto
permlinkre-sigmajin-re-psixto-re-joseph-mining-steem-for-dummies-20160725t193002927z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 19:30:03
last_update2016-07-25 19:30:03
depth3
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation7,654,051,023
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id354,825
net_rshares0
@psixto ·
Hi..I've a question
I found 3 blocks
psixto 
about 14 hours ago	Found a block
psixto 
a day ago	Found a block
psixto 
3 days ago	Found a block

And i can see in my wallet u$s 0.021 steem dollars.
This is all for 4 days @ 18-19 Khps ? 
Really guys is a shit....I'm returning to monero....
properties (22)
authorpsixto
permlinkre-joseph-mining-steem-for-dummies-20160727t232445958z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 23:24:45
last_update2016-07-27 23:24:45
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation7,654,051,023
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id419,364
net_rshares0
@raypenbor ·
WARNING! This guide doesn't work anymore.
Mining is  removed from HF 18.
As @jensm85 commented, please take a look at 
https://steemit.com/faq.html#Can_I_mine_STEEM

I'm leaving this comment because I also spent 3 days to setup a mining machine with this guide and figured out that doesn't work anymore.
👍  ,
properties (23)
authorraypenbor
permlinkre-joseph-mining-steem-for-dummies-20170705t110242184z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["jensm85"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2017-07-05 11:02:42
last_update2017-07-05 11:02:42
depth1
children0
last_payout2017-07-12 11:02:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length303
author_reputation11,613,513
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,383,869
net_rshares743,264,876
author_curate_reward""
vote details (2)
@rimann ·
Ok so the install of ./b2 took forever, kept seeing the word "failed" as it scrolled by. 
When it finally finished it gave me this output

    ...failed common.copy /usr/local/lib/libboost_test_exec_monitor.a...
    ...failed updating 67 targets...
    ...skipped 11973 targets...
    ...updated 1054 targets...

This normal? Running version 14.04
properties (22)
authorrimann
permlinkre-joseph-mining-steem-for-dummies-20160809t045457019z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-09 04:54:57
last_update2016-08-09 04:54:57
depth1
children5
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length347
author_reputation4,534,352,190,320
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id697,490
net_rshares0
@rimann ·
Also failed at CMAKE

    Configuring incomplete, errors occurred!

Checked the CMakeOutput.log

Can't make a whole lot of sense of it but I understand the general idea of what it is doing. But I was unable to find an obvious error signals
properties (22)
authorrimann
permlinkre-rimann-re-joseph-mining-steem-for-dummies-20160809t052031568z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-09 05:20:33
last_update2016-08-09 05:20:33
depth2
children4
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation4,534,352,190,320
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id697,769
net_rshares0
@rimann ·
In the log it appears that the program just stopped without reporting a specific error
properties (22)
authorrimann
permlinkre-rimann-re-rimann-re-joseph-mining-steem-for-dummies-20160809t053403159z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-09 05:34:03
last_update2016-08-09 05:34:03
depth3
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation4,534,352,190,320
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id697,936
net_rshares0
@ronin43 ·
I got through everything then had to restart ubuntu how do I restart the miner?
👍  
properties (23)
authorronin43
permlinkre-joseph-mining-steem-for-dummies-20160724t040939825z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-24 04:09:39
last_update2016-07-24 04:09:39
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation41,663,895,123
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id312,942
net_rshares57,033,686
author_curate_reward""
vote details (1)
@joseph ·
&gt;&gt;&gt; cd steem/programs/steemd
&gt;&gt;&gt; steemd --replay-blockchain --rpc-endpoint
properties (22)
authorjoseph
permlinkre-ronin43-re-joseph-mining-steem-for-dummies-20160727t063233263z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:32:30
last_update2016-07-27 06:32:30
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,404
net_rshares0
@samu-paha ·
I got my miner finally running. I'm using Qubes OS, which doesn't have Ubuntu templates, so I made it in Debian 8.

Had to do a few tricks in addition to this guide:

For Boost:

`sudo ./b2 install`

Otherwise it doesn't have rights to copy the files.

Before Steem cmake install package pkgconf `sudo apt-get install pkgconf` then run `pkgconf openssl` in the terminal. Otherwise cmake doesn't find openssl.
👍  ,
properties (23)
authorsamu-paha
permlinkre-joseph-mining-steem-for-dummies-20160717t132808073z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-17 13:28:06
last_update2016-07-17 13:28:06
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length408
author_reputation31,812,907,202
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,876
net_rshares6,899,030,598
author_curate_reward""
vote details (2)
@luke490 · (edited)
I need to uninstall Boost, because I keep getting this:  
` terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<std::logic_error> >'` 

 I tried both `sudo ./b2 uninstall` and `sudo ./b2 remove` 
should I be doing some kind of `unmake`
properties (22)
authorluke490
permlinkre-samu-paha-re-joseph-mining-steem-for-dummies-20160802t155157734z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-02 15:51:57
last_update2016-08-02 15:52:36
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length312
author_reputation241,302,356,483
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id561,598
net_rshares0
@shamitha ·
Is it possible to mine Steem on Windows PC?  If yes, please let me know the link to that article.
👍  
properties (23)
authorshamitha
permlinkre-joseph-mining-steem-for-dummies-20160626t101250398z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-06-26 10:12:57
last_update2016-06-26 10:12:57
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation17,653,771
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,275
net_rshares282,342,597
author_curate_reward""
vote details (1)
@gregory-f ·
[Here](https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm) is a link to @pfunk's guide to mining in Windows using a vm window. I had very good results using this guide.
properties (22)
authorgregory-f
permlinkre-shamitha-re-joseph-mining-steem-for-dummies-20160628t171612619z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["pfunk"],"links":["https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm"]}
created2016-06-28 17:16:12
last_update2016-06-28 17:16:12
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation183,272,600,833,008
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,158
net_rshares0
@joseph ·
yes you can mine on windows. here is the windows client:
https://github.com/arhag/steem/releases/tag/v0.5.0
However, @arhag will update this after Tuesday to 0.8.1 since we have a new fork coming up.
properties (22)
authorjoseph
permlinkre-shamitha-re-joseph-mining-steem-for-dummies-20160629t053311643z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["arhag"],"links":["https://github.com/arhag/steem/releases/tag/v0.5.0"]}
created2016-06-29 05:33:06
last_update2016-06-29 05:33:06
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,731
net_rshares0
@shamitha ·
Any guide to mine on cloud mining?
👍  
properties (23)
authorshamitha
permlinkre-joseph-mining-steem-for-dummies-20160710t110454553z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-10 11:05:03
last_update2016-07-10 11:05:03
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation17,653,771
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,111
net_rshares282,499,639
author_curate_reward""
vote details (1)
@sigmajin · (edited)
thanks!  this helped me get set up and i found my first POW! https://steemd.com/@sigma6m1  I sent you some steem as a thank you.  

Just one question if you don't mind... so my miner has to sit out after he finds the pow until it gets verified... can i just create more miners, then put more miner= lines in the config file to cycle through multiple miners while im waiting
properties (22)
authorsigmajin
permlinkre-joseph-mining-steem-for-dummies-20160725t140729630z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://steemd.com/@sigma6m1"]}
created2016-07-25 14:07:27
last_update2016-07-25 14:09:06
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length373
author_reputation35,847,511,233,614
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id346,389
net_rshares0
@joseph · (edited)
create 3 or 4 miners in the same config, so when one is on the queue the others will sill mine.
4 is very safe to keep your miners up 24/7
And thank you for the nice gesture. Appreciated.
properties (22)
authorjoseph
permlinkre-sigmajin-re-joseph-mining-steem-for-dummies-20160727t063510688z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:35:06
last_update2016-07-27 06:35:39
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,443
net_rshares0
@sigmajin ·
One more question... my hashrate is pretty steady around 15khps, but the estimated time to produce seems to vary wildly... from 600 minutes all the way up to 5000... is this normal... how many pow do you expect per day per khps
properties (22)
authorsigmajin
permlinkre-joseph-mining-steem-for-dummies-20160725t174352925z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-25 17:43:51
last_update2016-07-25 17:43:51
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation35,847,511,233,614
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id351,907
net_rshares0
@joseph ·
that's normal to vary, look at pow found average over three days on steemd.com
properties (22)
authorjoseph
permlinkre-sigmajin-re-joseph-mining-steem-for-dummies-20160727t063745817z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-27 06:37:42
last_update2016-07-27 06:37:42
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id396,493
net_rshares0
@softfuture · (edited)
In my opinion there is a bit of unclearity if this methode still works. Can anyone confirm if this guide will still work or if there is a link to a guide that does work on Ubuntu? And if it does not, how do you reverse the command: "sudo apt-get install git cmake g++ python-dev autotools-dev libicu-dev build-essential libbz2-dev libboost-all-dev libssl-dev libncurses5-dev doxygen libreadline-dev dh-autoreconf"?
properties (22)
authorsoftfuture
permlinkre-joseph-mining-steem-for-dummies-20170726t075738108z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-07-26 07:57:39
last_update2017-07-26 08:00:21
depth1
children0
last_payout2017-08-02 07:57:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length414
author_reputation1,735,970,774
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,765,523
net_rshares0
@suburbancaveman ·
I started my miner and it's running at 1hps.  I assume based on the comments that it needs sync.  My wallet is not seeing my account.  Does it need to completely sync before seeing my account?  
unlocked >>> list_my_accounts
list_my_accounts
2398197ms th_a       websocket_api.cpp:88          on_message           ] message: {"id":5,"result":[]} 
-------------------------------------------------------------------------
TOTAL                     0.000 STEEM       0.000000 VESTS            0.000 SBD
properties (22)
authorsuburbancaveman
permlinkre-joseph-mining-steem-for-dummies-20160714t014350715z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 01:43:51
last_update2016-07-14 01:43:51
depth1
children4
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length500
author_reputation143,098,548,912
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,716
net_rshares0
@joseph ·
your account is created when you mine your first block, however, since you already have an account on steemit, you can use the private key for this account to also mine with. you can find your private key in the permissions link on top right of steemeit website  under your account icon.
👍  
properties (23)
authorjoseph
permlinkre-suburbancaveman-re-joseph-mining-steem-for-dummies-20160714t015352871z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 01:53:45
last_update2016-07-14 01:53:45
depth2
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id103,805
net_rshares241,348,151
author_curate_reward""
vote details (1)
@suburbancaveman ·
When I go to permissions I see public keys but no private key.  I see PUBLIC POSTING KEY, PUBLIC ACTIVE KEY,  PUBLIC OWNER KEY, and PUBLIC MEMO KEY.
properties (22)
authorsuburbancaveman
permlinkre-joseph-re-suburbancaveman-re-joseph-mining-steem-for-dummies-20160714t022533362z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-14 02:25:33
last_update2016-07-14 02:25:33
depth3
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length148
author_reputation143,098,548,912
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,123
net_rshares0
@syadastinasti ·
If this is supposed to be for dummies, I'd fatten it up with a bit more explanation?
👍  ,
properties (23)
authorsyadastinasti
permlinkre-joseph-mining-steem-for-dummies-20160609t183842740z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-06-09 18:37:54
last_update2016-06-09 18:37:54
depth1
children1
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation1,547,051,595,896
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,349
net_rshares8,040,450,001
author_curate_reward""
vote details (2)
@joseph ·
Well there is dumb and dumber, any dumber than this and I would suggest the facebook approach.
Register a steemit account and make some posts, Steemit by design pays a lot more for content than mining.
👍  
properties (23)
authorjoseph
permlinkre-syadastinasti-re-joseph-mining-steem-for-dummies-20160610t030906628z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-06-10 03:09:00
last_update2016-06-10 03:09:00
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length201
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,633
net_rshares0
author_curate_reward""
vote details (1)
@taylormadeapps ·
I've created a docker build based on these steps https://github.com/taylormadeapps/steemiesvsdiesels
Seems to be working a treat. Added an ssh server to the docker container so that you can ssh in to config/monitor. No documentation yet, that's to follow soon.
properties (22)
authortaylormadeapps
permlinkre-joseph-mining-steem-for-dummies-20160729t213624669z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://github.com/taylormadeapps/steemiesvsdiesels"]}
created2016-07-29 21:36:27
last_update2016-07-29 21:36:27
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation572,162,793
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,106
net_rshares0
@taylormadeapps ·
FYI don't forget to change the public key if you try it!
properties (22)
authortaylormadeapps
permlinkre-taylormadeapps-re-joseph-mining-steem-for-dummies-20160729t215319412z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-29 21:53:24
last_update2016-07-29 21:53:24
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation572,162,793
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id475,371
net_rshares0
@taylormadeapps ·
And here's the prebuilt docker container on docker hub: 
https://hub.docker.com/r/taylormadeapps/steemiesvsdiesels/
properties (22)
authortaylormadeapps
permlinkre-taylormadeapps-re-joseph-mining-steem-for-dummies-20160801t122924903z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://hub.docker.com/r/taylormadeapps/steemiesvsdiesels/"]}
created2016-08-01 12:29:21
last_update2016-08-01 12:29:21
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation572,162,793
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id533,257
net_rshares0
@theboogie ·
@joseph golly good documentation ! thanks
properties (22)
authortheboogie
permlinkre-joseph-mining-steem-for-dummies-20170719t121431954z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["joseph"],"app":"steemit/0.1"}
created2017-07-19 12:14:36
last_update2017-07-19 12:14:36
depth1
children0
last_payout2017-07-26 12:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation61,347,470,338
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,968,820
net_rshares0
@thecryptofiend ·
Awesome post.  Thank you for this.  Got me up and running really quickly.
properties (22)
authorthecryptofiend
permlinkre-joseph-mining-steem-for-dummies-20160802t010322602z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-08-02 01:03:21
last_update2016-08-02 01:03:21
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation323,603,913,866,384
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id549,137
net_rshares0
@tnadu ·
Thanks for sharing.
properties (22)
authortnadu
permlinkre-joseph-mining-steem-for-dummies-20171018t064922330z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-10-18 06:49:24
last_update2017-10-18 06:49:24
depth1
children0
last_payout2017-10-25 06:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation2,092,282,320
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,955,429
net_rshares0
@tofm2 · (edited)
Hello, thanks for the work, 

I have downloaded and installed everything, but after compilation, and launching, nothing really seems to happen. 
So, if you could help me I would greatly appreciate with these 3 questions : 
1) does the "withness" name described above needs to be the same than my steemit account ? Or does it need to be dissociated from my steemit account ??
2) Is there a way to check if steemd actually does something ? In my case, i have started the daemon and nothing seems to happen, with no output at all....
3) the method described above shows some P2P nodes adresses and ips. Do they need to be entered in the .ini file or is it just some kind of output from the steem daemon. 


In my case, here is my output at launch : 
PORT-CM steemd # ./steemd --rpc-endpoint                                                                     
------------------------------------------------------                                                       
                                                                                                             
            STARTING STEEM NETWORK                                                                           
                                                                                                             
------------------------------------------------------                                                       
initminer public key: STM8GC13uCZbP44HzMLV6zPZGwVQ8Nt4Kji8PapsPiNq1BK153XTX                                  
chain id: 0000000000000000000000000000000000000000000000000000000000000000                                   
blockchain version: 0.18.2                                                                                   
------------------------------------------------------                                                       
1741503ms th_a       witness.cpp:90                plugin_initialize    ] _witnesses: ["tofm2"]              
                                                                                                 

and then nothing. 

Thanks for your help.
properties (22)
authortofm2
permlinkre-joseph-mining-steem-for-dummies-20170414t132244646z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-04-14 13:22:45
last_update2017-04-14 13:30:06
depth1
children1
last_payout2017-04-21 13:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,097
author_reputation411,114,848,872
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,012,938
net_rshares0
@grim-jester ·
I was having the issue where it would crash the terminal and give a bash json log for incorrect characters. Usually you can't put quotes in but you will need to put them in and remove the '#' symbol.  And the username/witness would be your steemit username in lowercase like mine says @grim-jester.
properties (22)
authorgrim-jester
permlinkre-tofm2-re-joseph-mining-steem-for-dummies-20170415t084128499z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"users":["grim-jester"],"app":"steemit/0.1"}
created2017-04-15 08:41:30
last_update2017-04-15 08:41:30
depth2
children0
last_payout2017-04-22 08:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length298
author_reputation934,496,993,721
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,018,795
net_rshares0
@tshering-tamang ·
Can We mine running Ubuntu in Windows? Does anyone know how to run Ubuntu in Windows?
👍  
properties (23)
authortshering-tamang
permlinkre-joseph-mining-steem-for-dummies-20160520t073817569z
categorysteemhelp
json_metadata{}
created2016-05-20 07:38:27
last_update2016-05-20 07:38:27
depth1
children4
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation11,388,588,016,470
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,629
net_rshares432,339,470
author_curate_reward""
vote details (1)
@william-noe ·
Yes. get VM ware. Virtual Box, download Ubuntu
👍  
properties (23)
authorwilliam-noe
permlinkre-tshering-tamang-re-joseph-mining-steem-for-dummies-20160525t015809193z
categorysteemhelp
json_metadata{}
created2016-05-25 01:58:09
last_update2016-05-25 01:58:09
depth2
children3
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation10,095,398,857,222
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,319
net_rshares476,681,979
author_curate_reward""
vote details (1)
@tshering-tamang ·
Cool, Thanks a lot.
👍  
properties (23)
authortshering-tamang
permlinkre-william-noe-re-tshering-tamang-re-joseph-mining-steem-for-dummies-20160525t053041353z
categorysteemhelp
json_metadata{}
created2016-05-25 05:30:45
last_update2016-05-25 05:30:45
depth3
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation11,388,588,016,470
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,458
net_rshares476,681,979
author_curate_reward""
vote details (1)
@tuck-fheman · (edited)
nevermind smooth helped me.
properties (22)
authortuck-fheman
permlinkre-joseph-mining-steem-for-dummies-20160528t055447192z
categorysteemhelp
json_metadata{}
created2016-05-28 05:54:54
last_update2016-05-28 06:10:54
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation345,778,813,561,569
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,419
net_rshares0
@tuck-fheman ·
If you need help with Windows mining, check out this topic ... 

https://steemit.com/steem/@arhag/windows-binaries-for-steem-v0

or visit the mining slack channel ...

https://steem.slack.com/messages/mining/
properties (22)
authortuck-fheman
permlinkre-joseph-mining-steem-for-dummies-20160529t012549406z
categorysteemhelp
json_metadata{}
created2016-05-29 01:26:00
last_update2016-05-29 01:26:00
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation345,778,813,561,569
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,297
net_rshares0
@tvulgaris ·
Running Tahrpup (so, forked from Ubuntu Tahr) on a 32-bit machine, I gave up on the initial batch install and used the package manager to install all the individual packages (which were all in the repos, and all installed), but Boost will not build properly (./bootstrap.sh won't run).
Any ideas why sys/types.h, stddef.h and stdlib.h files aren't created?
properties (22)
authortvulgaris
permlinkre-joseph-mining-steem-for-dummies-20170419t025234885z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-04-19 02:53:12
last_update2017-04-19 02:53:12
depth1
children1
last_payout2017-04-26 02:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length356
author_reputation294,326,448,157
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,048,959
net_rshares0
@demotruk ·
I can't answer your specific question, but FYI mining was removed from Steem with Hard Fork 18. Thus all mining guides are out of date and there is no way to get mining working.
👍  
properties (23)
authordemotruk
permlinkre-tvulgaris-re-joseph-mining-steem-for-dummies-20170419t083142696z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-04-19 08:31:42
last_update2017-04-19 08:31:42
depth2
children0
last_payout2017-04-26 08:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation278,747,146,820,861
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,050,831
net_rshares0
author_curate_reward""
vote details (1)
@tzar ·
Cloud mining all the way for me. These are the sites I use!
All Free Gh/s.
Eobot - https://goo.gl/FVAp7L - Daily free faucet!! Number One & Most Trusted
Fleex - https://goo.gl/hyff4J - 100Gh/s
Rapid - https://goo.gl/W1CzRr - 100 Gh/s
CryptoS - https://goo.gl/LtaaTU - 20Gh/s
MinerClub - https://goo.gl/Lfok5X - 15 Kh/s
Nano - https://goo.gl/ZgcrQe - 15 Khs
Elite - https://goo.gl/72rxWA - 5000 DogeCoin to start investing.
Demix - https://goo.gl/pcpMve - 5 Gh/s
DogeMine - https://goo.gl/syBPcZ - 20 Kh/s
I do not recommend you invest $$$ except in Eobot, more your time,
in and internally generated Gigahashes
Then cash out when you like the day returns!
Then send it over to Eobot to boost my account their.
Please use the links so i can gain a small amount of Gh/s for your referral.
Happy Mining.
👎  
properties (23)
authortzar
permlinkre-joseph-mining-steem-for-dummies-20170730t142431870z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"links":["https://goo.gl/FVAp7L","https://goo.gl/hyff4J","https://goo.gl/W1CzRr","https://goo.gl/LtaaTU","https://goo.gl/Lfok5X","https://goo.gl/ZgcrQe","https://goo.gl/72rxWA","https://goo.gl/pcpMve","https://goo.gl/syBPcZ"],"app":"steemit/0.1"}
created2017-07-30 14:24:33
last_update2017-07-30 14:24:33
depth1
children0
last_payout2017-08-06 14:24:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length800
author_reputation-14,442,798,271
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,223,753
net_rshares0
author_curate_reward""
vote details (1)
@vinaypsychic ·
When I am trying to mine I am getting this message in the last line - "Started witness node on a chain with 0 blocks." Can someone help me out what am I doing wrong?
properties (22)
authorvinaypsychic
permlinkre-joseph-mining-steem-for-dummies-20170704t073600689z
categorysteemhelp
json_metadata{"tags":["steemhelp"],"app":"steemit/0.1"}
created2017-07-04 07:36:00
last_update2017-07-04 07:36:00
depth1
children0
last_payout2017-07-11 07:36:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation24,030,512,483
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,243,789
net_rshares0
@warplat ·
properties (23)
authorwarplat
permlinkre-joseph-mining-steem-for-dummies-20160711t152054497z
categorysteemhelp
json_metadata{"tags":["steemhelp"]}
created2016-07-11 15:21:18
last_update2016-07-11 15:21:18
depth1
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation327,774,469,729
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id79,082
net_rshares344,932,964
author_curate_reward""
vote details (5)
@william-noe ·
I'm getting 3k hps and I've been running for about 48 hours and no block. I'm I doing something wrong will there be a pool maybe?
properties (22)
authorwilliam-noe
permlinkre-joseph-mining-steem-for-dummies-20160529t015656951z
categorysteemhelp
json_metadata{}
created2016-05-29 01:57:00
last_update2016-05-29 01:57:00
depth1
children2
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation10,095,398,857,222
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,325
net_rshares0
@joseph · (edited)
STEEM does not favor pool mining because of the need of your private key.
I have an old laptop that mines STEEM on 1 core and provides less than 1k hps,
I do get a block  every other day, sometimes longer. On my 8 core cpu I use only 4 cores
with 20k hps  and get a few blocks a day. The 20k hps generates about 2.0 to 3.0 Steem a day
on average, but since it's in steem power it also starts generating more steem daily just by holding it.
Steem is really promising in the fact it's a first of it's kind social media network based on the blockchain.
If one day Steemit gets 5% of twitter or facebook reach, you will be in a great shape holding the steem power you mined.
👍  , ,
properties (23)
authorjoseph
permlinkre-william-noe-re-joseph-mining-steem-for-dummies-20160529t140522952z
categorysteemhelp
json_metadata{}
created2016-05-29 14:05:21
last_update2016-05-29 14:06:27
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length670
author_reputation381,890,490,550,578
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,742
net_rshares974,370,132
author_curate_reward""
vote details (3)
@william-noe ·
Thanks Joseph. I had a block show up overnight.
properties (22)
authorwilliam-noe
permlinkre-william-noe-re-joseph-mining-steem-for-dummies-20160529t141208601z
categorysteemhelp
json_metadata{}
created2016-05-29 14:12:15
last_update2016-05-29 14:12:15
depth2
children0
last_payout2016-08-24 12:54:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation10,095,398,857,222
root_title"Mining STEEM For Dummies"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,748
net_rshares0