create account

[Guide] Steem Windows Mining in a Linux Virtual Machine by pfunk

View this thread on: hive.blogpeakd.comecency.com
· @pfunk · (edited)
$706.66
[Guide] Steem Windows Mining in a Linux Virtual Machine
Full Steem Ahead!

<center>![mining](https://www.vidble.com/UAfFN7EJD8_med.png)</center>

Originally I wrote this guide because the early Windows builds were very slow at mining. Now they are just as fast as Linux mining, but because they are made by volunteers and not officially by the Steem team (at least not yet), some might want to be secure by downloading and compiling the Steem code straight from github while still running Windows.  Another reason to run a steemd node in a Linux VM is that the updated Windows builds are not always available past a hard fork. Furthermore, Part 2 of this guide serves as a step-by-step guide to using Ubuntu 16.04 which differs slightly from 14.04 in that we install libboost from the Ubuntu repository instead of compiling it ourselves, which saves time. Now to the guide.

<sub>Right click-> View image for any image that you'd like to see bigger.

## Part 1: Install Ubuntu Server 16.04 in a VM and connect to it with a terminal

### Step 1.
We're going to use a virtual machine (VM) within Windows, so first things first, verify your CPU's virtualization features are enabled. Most CPUs made in the last decade have hardware virtualization but sometimes they are not enabled in your BIOS configuration. Intel calls it **VT-x**, and AMD calls it **AMD-V**.  To check this, Microsoft provides the [Hardware-Assisted Virtualization Detection Tool](https://www.microsoft.com/en-us/download/details.aspx?id=592) to check this, and you can also use [CPU-Z portable](http://www.cpuid.com/downloads/cpu-z/cpu-z_1.76-en.zip) to see if VT-x or AMD-V is enabled as well.

![HAVDT](https://www.vidble.com/uj5WinneuE.png) ![CPU-Z](https://www.vidble.com/wIrWLa3QOY.png)
<sup>Success, hardware virtualization is enabled</sup>

![HAVDT fail](https://www.vidble.com/zDS3jAF6VP.png)
<sup>Fail, virtualization needs to be enabled or your CPU does not support virtualization</sup>

If your CPU supports it but virtualization isn't enabled, you likely need to enable it in your computer's BIOS/UEFI. Refer to your computer or motherboard manual for how to do this, but it's generally an easy process of rebooting your computer, pressing the Del or F2 key, and hunting around the menus for something that mentions virtualization.

### Step 2.
Next, begin downloading the Ubuntu Server 16.04 iso: 
[ubuntu-16.04-server-amd64.iso](http://releases.ubuntu.com/16.04/ubuntu-16.04-server-amd64.iso) ([torrent link](http://releases.ubuntu.com/16.04/ubuntu-16.04-server-amd64.iso.torrent)) [655MB]
<sup>SHA256 sum: b8b172cbdf04f5ff8adc8c2c1b4007ccf66f00fc6a324a6da6eba67de71746f6</sup>

Then download and install [VMware Workstation 12.1.1 Player for Windows](https://my.vmware.com/en/web/vmware/free#desktop_end_user_computing/vmware_workstation_player/12_0) [70MB]

### Step 3.

With VMware Player installed and the Ubuntu Server .iso fully downloaded, launch VMware Player and click Create New Virtual Machine. The first screen of the wizard asks you for an installer disc image file, navigate to and select the Ubuntu .iso you downloaded. Enter in the user and password for the linux installation, (the pass doesn't have to be particularly strong, also write these down just in case you forget!) [next], and select where you want the virtual machine files to be stored (ensure there's plenty of space on the disk) [next]. Set a maximum disk size, if you have the space 20GB will be fine for a while. You can set it lower to conserve space and if you don't plan on mining long-term [next].

![click customize](https://www.vidble.com/Zht72IZUz5.png)

**Stop right there!** Click Customize Hardware. If you have plenty, set your memory to 2GB. The VM process will only use as much RAM as it needs. Set the number of processors to the number of threads  CPU supports. This is equal to the number of cores any AMD or non-i7/Xeon Intel CPU has. If you have an i7 or Xeon you have hyperthreading, so set the processor count to the number of threads your CPU supports. For AMD and Intel, if you're not sure how many cores to set, press `CTL+Shift+ESC` for the Task Manager, click the Performance tab, and count how many boxed graphs you see under CPU usage history.

![Customize](https://www.vidble.com/68Mw372c0m.png)

When you're done click Close. Leave the "Power on this virtual machine" option checked and click Finish.

### Step 4.

The VM will start and the Ubuntu Server installer will boot. VMware will do an "Easy Install" which will breeze through it and reboot the VM. Eventually you will be greeted with a black terminal with the login prompt.

![terminal](https://www.vidble.com/HRnOmx047t.png)
<sup>Yay! Installed and ready to go</sup>

### Step 5.

You can run steemd and use cli_wallet straight from the VMware terminal but for a few reasons I recommend using a terminal client. KiTTY is an updated version of PuTTY, a simple but powerful oldschool Windows terminal client. [Download it here](http://www.9bis.net/kitty/?page=Download). Run it, and it will open a Configuration prompt that needs a hostname or IP. To connect to the VM you'll first need to install OpenSSH, go back to your VM terminal and enter `sudo apt-get -y install openssh-server` and enter your password. Then type `ifconfig`

![ifconfig](https://www.vidble.com/fezzq736i5.png)

I've highlighted in the red box what you're looking for, the local IP address for your VM. [1] Enter that IP address into the KiTTY configuration and make sure the SSH button is selected. [2] Under Load, save, or delete a stored session type in Steem (or whatever you like) at the top of the box and [3] click Save. Here you can retrieve the session by clicking Load next time. [4] Finally click the Open button.

![KiTTY config](https://www.vidble.com/xPG2E7sPGy.png)

The first time you connect you will get a "KiTTY Security Alert" prompt regarding the SSH key, click Yes. You will have a terminal screen open that you need to log in to. Enter your username and password.

## Part 2. Install and configure Steem

**Note** with PuTTY/KiTTY and many other terminals, **right-clicking will paste text**.

### Step 6. Update + install dependencies
Logged in to your terminal, enter `sudo apt-get update` and enter your password.  You might see some errors about the CD-ROM, ignore this. Then enter

    sudo apt-get -y upgrade && sudo apt-get -y 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 screen

This downloads all the software that Steem needs to build and run, plus screen which makes interacting with multiple programs easier.

### Step 7. Build
Now we're ready to build and run steemd! Next enter this:

    git clone https://github.com/steemit/steem && cd steem && git checkout master && git submodule update --init --recursive && cmake -DCMAKE_BUILD_TYPE=Release -DLOW_MEMORY_NODE=ON . && make && cd programs/steemd/ && ./steemd

You will see some warnings while it's compiling but it's safe to ignore them.

### Step 8. config.ini
When the build is done with the above command, steemd (the program that runs the Steem node) will start but it can't do anything without a configuration file yet. Press `CTL+C` to stop steemd and then enter `cd witness_node_data_dir`.

Optional but recommended: Witness @steemychicken1 offers an up-to-date blockchain download here: http://steemitup.eu/ which can make syncing much faster. If you somehow find yourself out of it, navigate to your data dir `cd ~/steem/programs/steemd/witness_node_data_dir` then `wget http://steemitup.eu/witness_node_data_dir.tar.gz && tar xvzf witness_node_data_dir.tar.gz`and the blockchain will be in the right place.

 To edit your config.ini file type `nano config.ini` which opens it in the command line text editor nano. **Tip**: the terminal will auto-fill the directory or filename when you press `Tab`. So to perform the above commands you can simply type `cd wit [tab] [enter] nano con [tab] [enter]` or even abbreviate the names to just the first letter.

![config.ini](https://www.vidble.com/MckhYGqEqB.png)

Within nano you can navigate using your arrow keys, home, end, page up/down etc. Again you can paste with right-click. Here's what you'll want to enter in config.ini:

First copy and paste the whole list of Steem seed-nodes, available from steem-id's post here https://steemit.com/steemhelp/@steem-id/updated-steem-seed-node-list

Then add rpc-endpoint and witnesses:

`rpc-endpoint = 127.0.0.1:8090`

    witness = "youraccountname"
    witness = "yourotheraccountname"
    witness = "etc.etc"
Because of the mining queue system, you will want to make at least a few accounts for mining. Once a miner account gets queued, the machine can't mine for it anymore and will otherwise sit idle, so you have a handful of accounts as secondary, tertiary, etc accounts for when the above accounts are already queued. Something to keep in mind is steemd prioritizes accounts by alphabetical order. So if you want your primary account to mine the most SteemPower, make sure your secondary accounts come after it in alphabetical order. In the example above, the etc.etc account would be first to be submitted when steemd solved a proof-of-work despite being listed last. If you are making a new account by mining, make sure it is not already taken by visiting https://steemd.com/@your-desired-account and seeing "Page not found".

When mining, for every witness account you set, you need a miner = line as well. 

    miner = ["youraccountname","5WIFKEY"]
    miner = ["yourotheraccountname","5WIFKEY"]
    miner = ["etc.etc","5WIFKEY"]

You may use the same keys for different accounts as long as you are mining them on the same machine. Personally I use different keys for every account.

### **For all of your keys be sure to back them up, print them, etc.**

If you have an account already, made with a Facebook or Reddit verification, you can get the key you need to mine to that account with by going to your Permissions page on your Steemit profile: https://steemit.com/@yourusername/permissions and clicking `show`. Side note on Steemit password security: [How to login to Steemit with your posting key (and why this is important)](https://steemit.com/steemit-guides/@pfunk/how-to-login-with-your-posting-key-and-why-this-is-important).

For new accounts, you can obtain secure WIF keys by going to https://bitaddress.org and saving the HTML to your computer. You then open it locally, do the mouse entropy, then click Bulk Wallet, uncheck the compressed address option then click Generate. The WIF keys are on the right, below.

![bitaddress](https://ipfs.pics/ipfs/QmcvNeFxyvDiwLZeJX945FZEWL37DxnDHt9kkG6EjGmq9e)

Finally you must set mining-threads = X where X is the number of threads your CPU supports discussed earlier. Don't set it for less, we're going for max performance remember?

    mining-threads = X

Press `CTL+O` to save, press enter to keep the same config.ini filename, then press `CTL+X` to exit.

## Part 3: Run steemd and mine!

### Step 9.
You'll be in `witness_node_data_dir` so type `cd ..` to go back to the steemd/ directory and then enter `screen -t steemd ./steemd` and hit enter. If all goes well steemd will start and it will begin to sync or replay if you downloaded the blockchain via .zip. You will see many messages scroll by that include `hash rate: 1 hps`. When scrolling fast, this means it is syncing the blockchain.

![syncing](https://www.vidble.com/XwTMBkS5kN.png)

From here you can either wait or if you want to check on the progress on the sync you can make another screen by pressing `CTL+A` then `C`. Then start the cli_wallet with `cd ~/steem/programs/cli_wallet/` and `./cli_wallet`. If you wish to use the command line wallet you can make a password, but it's useful just to see where you are in the sync. Type `info` and look at the line near the bottom that says  `"head_block_age":`. This is how far behind in the chain you are. Once that time is down to the seconds, you should be synced. To navigate to the previous screen in console, press `CTL+A` twice in a row. For navigating more screens, press `CTL+A` then `"` and select from the list.

Once synced, your node should start mining and look something like this:

![mining](https://www.vidble.com/PjJcqyUtzn.png)
<sup>Yay mining!</sup>

### Step 10. Optionally set CPU priority

To keep your Windows machine more usable when running a mining node, you can optionally set the CPU process priority for the virtual machine process. Press `CTL+Shift+ESC` to open Task Manager. Find the virtual machine process then right-click -> Set Priority -> Below Normal (or) Low. When idle, your machine will mine as fast as it can, but when programs need the CPU, lower priority will allow them a little more breathing room.

![priority](https://www.vidble.com/JBufHvk0oH.png)

---

That's it! Easy huh? :P

When you solve proof-of-work you are entered into the mining queue. You must leave your node on while queued to actually get the SteemPower reward when you generate the block and leave the queue. To track your mining you can visit your user page on steemd.com and also see the https://steemd.com/witnesses page to view the whole miner queue. Be sure to track how many SteemPower you accumulate on your mining accounts as well to make sure they are actually generating the blocks. 

---

Thanks to the many Steem users who helped me accumulate the knowledge of this process and thanks to @tuck-fheman for prompting me to write this guide.

<sup>If you found this or my other posts helpful, [click here for my blog page](https://steemit.com/@pfunk) and hit the ![follow](https://i.imgsafe.org/63e11066d7.png) button in the upper right!</sup>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 105 others
👎  
properties (23)
authorpfunk
permlinkguide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm
categorysteem
json_metadata{"tags":["steem","mining","steemhelp","guides"],"users":["steemychicken1","tuck-fheman"],"image":["https://www.vidble.com/UAfFN7EJD8_med.png","https://www.vidble.com/zDS3jAF6VP.png","https://www.vidble.com/JBufHvk0oH.png"],"links":["https://www.microsoft.com/en-us/download/details.aspx?id=592","http://releases.ubuntu.com/16.04/ubuntu-16.04-server-amd64.iso","https://my.vmware.com/en/web/vmware/free#desktop_end_user_computing/vmware_workstation_player/12_0","http://www.9bis.net/kitty/?page=Download","https://steemit.com/@pfunk"]}
created2016-05-31 03:44:27
last_update2016-07-15 12:42:00
depth0
children90
last_payout2016-08-25 07:30:12
cashout_time1969-12-31 23:59:59
total_payout_value353.394 HBD
curator_payout_value353.262 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13,739
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,237
net_rshares92,214,732,403,960
author_curate_reward""
vote details (170)
@alohajedi ·
Great guide, It has been fun to get it all together. 
If anyone has any advise? I have made it to step 9 and entered "screen -t steemd ./steemd" It did not go so well. When I click the enter key the screen flashes and I get the message [screen is terminating] 
I did start over  twice and received the same flash and message.
Aloha and Mahalo!
properties (22)
authoralohajedi
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160723t095522680z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-23 09:55:24
last_update2016-07-23 09:55:24
depth1
children1
last_payout2016-08-25 07:30: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_length343
author_reputation53,926,997,666
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id293,606
net_rshares0
@vudinhthi ·
The same problem and just sloved it. Check the "" at line witness name, or WIF key
👍  ,
properties (23)
authorvudinhthi
permlinkre-alohajedi-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t065642983z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-24 06:56:48
last_update2016-07-24 06:56:48
depth2
children0
last_payout2016-08-25 07:30: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_length82
author_reputation48,914,218
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id314,886
net_rshares187,780,826
author_curate_reward""
vote details (2)
@amit86 ·
@pfunk thanks for such amazing documentation and help.

Quick question - I am following the process mentioned [here](https://cryptomining-blog.com/8168-a-quick-guide-on-how-to-mine-steem-on-windows/#comment-8217) for windows mining of steem. I have configured the file as stated and once I run the exe file it shows some red text and immediately closes out. Any pointers on this? I have used only 1 CPU thread for mining, and I am using it on my Laptop.
properties (22)
authoramit86
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t033329449z
categorysteem
json_metadata{"tags":["steem"],"users":["pfunk"],"links":["https://cryptomining-blog.com/8168-a-quick-guide-on-how-to-mine-steem-on-windows/#comment-8217"],"app":"steemit/0.1"}
created2018-07-12 03:33:33
last_update2018-07-12 03:33:33
depth1
children3
last_payout2018-07-19 03:33: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_length453
author_reputation521,477,963,540
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id64,360,002
net_rshares0
@pfunk ·
Steem PoW mining is no longer possible. The network has moved to a purely DPOS consensus model. Though the old top comment thread was about this, I've made a comment at the top now that makes it more clear.
properties (22)
authorpfunk
permlinkre-amit86-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t060501857z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-07-12 06:04:57
last_update2018-07-12 06:04:57
depth2
children2
last_payout2018-07-19 06:04:57
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_length206
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,371,621
net_rshares0
@amit86 ·
Thanks for your response @pfunk. Is virtualbox mining still available?
properties (22)
authoramit86
permlinkre-pfunk-re-amit86-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t211855704z
categorysteem
json_metadata{"tags":["steem"],"users":["pfunk"],"app":"steemit/0.1"}
created2018-07-12 21:19:03
last_update2018-07-12 21:19:03
depth3
children1
last_payout2018-07-19 21:19:03
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_reputation521,477,963,540
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id64,455,036
net_rshares0
@arngrim280 ·
Really nice guide, thanks for this!
properties (22)
authorarngrim280
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170615t024329957z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-15 02:43:27
last_update2017-06-15 02:43:27
depth1
children0
last_payout2017-06-22 02:43:27
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,033,074,377
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,883,597
net_rshares0
@bitlord ·
Thanks very much. But one quastion. What about NVIDIA cards? Can I mine with nvidia cards?
👍  , , ,
properties (23)
authorbitlord
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160714t110238063z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-14 11:02:36
last_update2016-07-14 11:02:36
depth1
children1
last_payout2016-08-25 07:30: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_length90
author_reputation680,644,964,683
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id108,550
net_rshares802,791,368
author_curate_reward""
vote details (4)
@pfunk ·
There are as yet no GPU miners for Nvidia or AMD. Be very wary of anyone saying they've made one too.
👍  ,
properties (23)
authorpfunk
permlinkre-bitlord-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160715t122957693z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-15 12:30:06
last_update2016-07-15 12:30:06
depth2
children0
last_payout2016-08-25 07:30: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_length101
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,604
net_rshares341,443,488
author_curate_reward""
vote details (2)
@blackprapor ·
I went through all comments, and it looks like I'll be the first one to ask: which mining algorithm is used to mine steem? Is it SHA256 or scrypt?
👍  
properties (23)
authorblackprapor
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160605t125502376z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-05 12:55:03
last_update2016-06-05 12:55:03
depth1
children1
last_payout2016-08-25 07:30: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_length146
author_reputation5,124,702
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,126
net_rshares327,980,953
author_curate_reward""
vote details (1)
@pfunk ·
It can be found here: https://steem.io/documentation/consensus/

It's neither Bitcoin's SHA256d or Scrypt, so no existing ASICs can be used to mine Steem.
👍  
properties (23)
authorpfunk
permlinkre-blackprapor-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160605t204309127z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-05 20:43:48
last_update2016-06-05 20:43:48
depth2
children0
last_payout2016-08-25 07:30: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_length154
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id24,392
net_rshares56,664,538
author_curate_reward""
vote details (1)
@bobo012 · (edited)
Every time there's a problem with the network (like when hacking occurred or this morning when there was interruption for an hour) my miner stops. When i try to run it again, it's not working. Instead it says  on the first line error parsing logging config from the config file (config.ini). I haven't changed that since initial setup. And then the miner starts, but it gives all errors.
It says error when pushing block, unlinkable block exception, block does not link to the known chain. Once again I didn't change anything, just restarted the miner after the miner stopped working. Is there anything that I can do to fix that?
Thanks
properties (22)
authorbobo012
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t085509355z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-16 08:55:09
last_update2016-07-16 08:56:24
depth1
children1
last_payout2016-08-25 07:30: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_length636
author_reputation105,205,238,076
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id132,937
net_rshares0
@techsaavy ·
same here- everytime I stop and restart I have to delete the witness node data dir directory - wait for it to build all OVER again.... before it mines- otherwise it's stuck on block "0" with errors
properties (22)
authortechsaavy
permlinkre-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t015355810z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 01:54:18
last_update2016-07-17 01:54:18
depth2
children0
last_payout2016-08-25 07:30: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_length197
author_reputation60,637,536,350
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id134,591
net_rshares0
@bobo012 ·
I have done this, have a version thats up to date, but when its replaying the blocks its not applying  HARDFORK 12. 
It's just stuck on 96 % of replay.
Whats going on?
properties (22)
authorbobo012
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t201837720z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-29 20:18:42
last_update2016-07-29 20:18:42
depth1
children3
last_payout2016-08-25 07:30: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_length167
author_reputation105,205,238,076
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,482
net_rshares0
@bobo012 ·
https://www.steemitup.eu/i/4B4C90C89A484D925C691CDEE06C04AB.jpg
properties (22)
authorbobo012
permlinkre-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t203402522z
categorysteem
json_metadata{"tags":["steem"],"image":["https://www.steemitup.eu/i/4B4C90C89A484D925C691CDEE06C04AB.jpg"]}
created2016-07-29 20:34:06
last_update2016-07-29 20:34:06
depth2
children2
last_payout2016-08-25 07:30: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_length63
author_reputation105,205,238,076
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id473,791
net_rshares0
@capcom717 ·
same here.
properties (22)
authorcapcom717
permlinkre-bobo012-re-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t020618485z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-30 02:06:18
last_update2016-07-30 02:06:18
depth3
children1
last_payout2016-08-25 07:30: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_length10
author_reputation0
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id478,786
net_rshares0
@crackdown ·
nice guide
properties (22)
authorcrackdown
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170520t210551006z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-05-20 21:05:57
last_update2017-05-20 21:05:57
depth1
children1
last_payout2017-05-27 21:05:57
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_reputation179,983,416,281
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,610,821
net_rshares0
@pfunk ·
Thank you. It's entirely irrelevant and outdated now though. Steem does not have any PoW any more. :)
properties (22)
authorpfunk
permlinkre-crackdown-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170521t220124924z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-05-21 22:01:24
last_update2017-05-21 22:01:24
depth2
children0
last_payout2017-05-28 22:01: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_length101
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,643,350
net_rshares0
@dasan-oneia ·
hi i have followed these instruction to the t several times and i can not get this to work for me the program starts then immediately crashes the the first time it start to load blocks but they were all red after that it just crashed
properties (22)
authordasan-oneia
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t170243615z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 17:02:33
last_update2016-07-18 17:02:33
depth1
children0
last_payout2016-08-25 07:30: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_length233
author_reputation1,060,934,136,993
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id169,165
net_rshares0
@geminigoldsaint ·
what blok are steem right now ?
properties (22)
authorgeminigoldsaint
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t134159823z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 13:42:00
last_update2016-07-17 13:42:00
depth1
children0
last_payout2016-08-25 07:30: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_length31
author_reputation6,283,448
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id145,057
net_rshares0
@gregory-f ·
If I'm trying to use an existing account, which WIF key/permission should I use? Owner, Active or one of the others? 
>If you have an account already, you can get the key you need to mine to that account with by going to your Permissions page on your Steemit profile: https://steemit.com/@yourusername/permissions
properties (22)
authorgregory-f
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160603t190425074z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-03 19:04:24
last_update2016-06-03 19:04:24
depth1
children1
last_payout2016-08-25 07:30: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_length313
author_reputation183,272,600,833,008
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,855
net_rshares0
@pfunk · (edited)
Sorry for not being more specific there. Use the active key.
👍  
properties (23)
authorpfunk
permlinkre-gregory-f-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160604t024432569z
categorysteem
json_metadata{"tags":["steem"]}
created2016-06-04 02:45:09
last_update2016-07-15 12:30:51
depth2
children0
last_payout2016-08-25 07:30: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_length60
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,013
net_rshares550,076,750
author_curate_reward""
vote details (1)
@hackecon ·
Fantastic Article, currently loading the blockchain to my VM. Hopefully my i7 4790 still packs a punch!
👍  
properties (23)
authorhackecon
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160714t040600908z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-14 04:05:54
last_update2016-07-14 04:05:54
depth1
children0
last_payout2016-08-25 07:30: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_length103
author_reputation2,671,988,397
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id104,996
net_rshares83,644,634
author_curate_reward""
vote details (1)
@hackecon ·
Very easy to digest. Great post. Moving from windows host to ubuntu server mining now.
properties (22)
authorhackecon
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160808t172831990z
categorysteem
json_metadata{"tags":["steem"]}
created2016-08-08 17:28:30
last_update2016-08-08 17:28:30
depth1
children0
last_payout2016-08-25 07:30: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_length86
author_reputation2,671,988,397
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id686,364
net_rshares0
@hickorysmoked ·
Excellent guide, thank you for posting it. 
Once you have mined a block and have a new account it shows 1 steam here on steamit. In the cli_wallet it shows 7700+ vests in the account. I tried the withdraw_vesting command, but that says it will power them down and takes time.  Is there a way to just transfer the vests to steamit?
👍  
properties (23)
authorhickorysmoked
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t060809400z
categorysteem
json_metadata{}
created2016-05-31 06:08:30
last_update2016-05-31 06:08:30
depth1
children5
last_payout2016-08-25 07:30: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_length330
author_reputation126,055,273
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,290
net_rshares8,067,537,516
author_curate_reward""
vote details (1)
@pfunk · (edited)
Steemit displays your SteemPower, or VESTS as the cli_wallet calls them, as STEEM, the liquid currency that is tradeable. What it really means is what your SteemPower's current value in STEEM is, because it's not liquid as you found out. If you go to steemd.com you can see on the top of the right-hand box that steem_per_mvests = 129.229. 1 million divided by 129.229 equals 7,738. So that's where that VEST number comes from. https://steemd.com/@hickorysmoked shows your actual SteemPower/VESTS in million-units.
properties (22)
authorpfunk
permlinkre-hickorysmoked-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t062619235z
categorysteem
json_metadata{}
created2016-05-31 06:26:57
last_update2016-05-31 06:27:57
depth2
children4
last_payout2016-08-25 07:30: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_length514
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,296
net_rshares0
@hickorysmoked ·
What should I do with it, do I need to move it or power it down to keep it without that wallet file?
properties (22)
authorhickorysmoked
permlinkre-pfunk-re-hickorysmoked-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t063924900z
categorysteem
json_metadata{}
created2016-05-31 06:39:45
last_update2016-05-31 06:39:45
depth3
children3
last_payout2016-08-25 07:30: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_length100
author_reputation126,055,273
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,309
net_rshares0
@infocus7 ·
If I made a new account for mining on the Steemd program, do I also have to create an account on the actual website for it to store my Steem Power gained from mining?
properties (22)
authorinfocus7
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t012435691z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-30 01:24:45
last_update2016-07-30 01:24:45
depth1
children1
last_payout2016-08-25 07:30: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_length166
author_reputation94,924,113,796
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id478,144
net_rshares0
@bobo012 ·
No, it's automatically created when POW is found
👍  
properties (23)
authorbobo012
permlinkre-infocus7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t051356064z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-30 05:14:00
last_update2016-07-30 05:14:00
depth2
children0
last_payout2016-08-25 07:30: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_length48
author_reputation105,205,238,076
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id481,371
net_rshares124,024,635
author_curate_reward""
vote details (1)
@jonipilo ·
$0.50
Why steem cannot be mined anymore?
👍  ,
properties (23)
authorjonipilo
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t113123248z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-01 11:31:33
last_update2017-07-01 11:31:33
depth1
children3
last_payout2017-07-08 11:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.372 HBD
curator_payout_value0.123 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation530,321,342,055
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,879,354
net_rshares58,728,186,071
author_curate_reward""
vote details (2)
@pfunk ·
$0.49
Mining (PoW to be queued for the 21st witness slot in each round) was removed in version 0.17.0 because it was being exploited and it was decided that the work to fix it was not worth the effort.
👍  , ,
properties (23)
authorpfunk
permlinkre-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t122439030z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-01 12:24:45
last_update2017-07-01 12:24:45
depth2
children2
last_payout2017-07-08 12:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.492 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,884,179
net_rshares58,728,186,071
author_curate_reward""
vote details (3)
@jonipilo ·
shait
properties (22)
authorjonipilo
permlinkre-pfunk-re-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t154823303z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-01 15:48:21
last_update2017-07-01 15:48:21
depth3
children0
last_payout2017-07-08 15:48:21
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_length5
author_reputation530,321,342,055
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,905,496
net_rshares0
@kartikohri1712 ·
@pfunk Can I mine steem if I become steem witness now?
👍  
properties (23)
authorkartikohri1712
permlinkre-pfunk-re-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180212t091840822z
categorysteem
json_metadata{"tags":["steem"],"users":["pfunk"],"app":"steemit/0.1"}
created2018-02-12 09:18:42
last_update2018-02-12 09:18:42
depth3
children0
last_payout2018-02-19 09:18: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_length54
author_reputation26,337,803,094
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,886,963
net_rshares0
author_curate_reward""
vote details (1)
@jordi-kicken ·
Problems with this error code with building steem:

    FC_ASSERT( hardfork == hfp.last_hardfork + 1, "Hardfork being applied out
       ^

What to do?
properties (22)
authorjordi-kicken
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t215815541z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 21:58:21
last_update2016-07-17 21:58:21
depth1
children5
last_payout2016-08-25 07:30: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_length151
author_reputation3,017,142,722
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id154,068
net_rshares0
@carsonkt ·
I have the same thing, while I am reading your reply and try to find a solution, the build process continues.
👍  
properties (23)
authorcarsonkt
permlinkre-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160719t020039872z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-19 02:00:33
last_update2016-07-19 02:00:33
depth2
children0
last_payout2016-08-25 07:30: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_length109
author_reputation989,291,315
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id178,253
net_rshares334,540,572
author_curate_reward""
vote details (1)
@techsaavy ·
$1.30
I had these issues too... what I did was delete the directory, start over, follow this https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm  follow the step 6, 7, and then on step 8-   download the blockchain BUT make sure you are in steem/programs/steemd NOT the one he says .... then type wget http://steemitup.eu/witness_node_data_dir.tar.gz  next get 7z  type apt-get install p7zip-full    then type 7z x witness_node_data_dir.tar.gz  then edit the config with the rest of the directions
👍  , , , ,
properties (23)
authortechsaavy
permlinkre-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t000919804z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm"]}
created2016-07-18 00:09:39
last_update2016-07-18 00:09:39
depth2
children3
last_payout2016-08-25 07:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.978 HBD
curator_payout_value0.320 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length542
author_reputation60,637,536,350
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,226
net_rshares685,651,202,060
author_curate_reward""
vote details (5)
@jordi-kicken ·
Thankyou! Syncing it now
properties (22)
authorjordi-kicken
permlinkre-techsaavy-re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t141241729z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 14:12:48
last_update2016-07-18 14:12:48
depth3
children0
last_payout2016-08-25 07:30: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_length24
author_reputation3,017,142,722
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id166,617
net_rshares0
@pfunk ·
Good catch, I need to edit the post but I can't right now. I'll update when I can.
properties (22)
authorpfunk
permlinkre-techsaavy-re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t074737528z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 07:47:51
last_update2016-07-18 07:47:51
depth3
children1
last_payout2016-08-25 07:30: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_length82
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id161,840
net_rshares0
@kahanek ·
Excellent! Thank you so much!
properties (22)
authorkahanek
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170618t003408236z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 00:34:09
last_update2017-06-18 00:34:09
depth1
children1
last_payout2017-06-25 00:34:09
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_length29
author_reputation0
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,136,795
net_rshares0
@pfunk ·
Guide is outdated/no longer valid because there is no mining in Steem anymore, but you're welcome anyway. Is this guide being linked to somewhere? There have been some newer comments on it.
properties (22)
authorpfunk
permlinkre-kahanek-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170618t085855164z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-18 08:58:54
last_update2017-06-18 08:58:54
depth2
children0
last_payout2017-06-25 08:58: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_length189
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,161,221
net_rshares0
@khunfarang ·
Warning! mining STEEM 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 (23)
authorkhunfarang
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170705t113527236z
categorysteem
json_metadata{"tags":["steem"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"}
created2017-07-05 11:35:27
last_update2017-07-05 11:35:27
depth1
children1
last_payout2017-07-12 11:35:27
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_reputation23,724,395,578
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,386,355
net_rshares542,744,247
author_curate_reward""
vote details (2)
@shahdarshan ·
thanks !!! justed wested 4 housrs for settings in config file and learn about mining .
properties (22)
authorshahdarshan
permlinkre-khunfarang-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170705t192224760z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-07-05 19:22:21
last_update2017-07-05 19:22:21
depth2
children0
last_payout2017-07-12 19:22:21
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_reputation925,693,353
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,433,146
net_rshares0
@magnebit ·
$0.03
Best guide ever!!!  It still works as of my post (Windows 7 AMD).  I would suggest adding a FTP\GIT download of the blockchain if possible.
👍  , ,
properties (23)
authormagnebit
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160703t150033537z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-03 15:00:36
last_update2016-07-03 15:00:36
depth1
children0
last_payout2016-08-25 07:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation4,957,809,430,246
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,304
net_rshares81,937,991,000
author_curate_reward""
vote details (3)
@mrgreen ·
how long does it takes to sync the blockchain? https://i.imgsafe.org/4c68319a73.jpg
👍  
properties (23)
authormrgreen
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t134617953z
categorysteem
json_metadata{"tags":["steem"],"image":["https://i.imgsafe.org/4c68319a73.jpg"]}
created2016-07-24 13:46:18
last_update2016-07-24 13:46:18
depth1
children2
last_payout2016-08-25 07:30: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_length83
author_reputation23,106,142,389,321
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id320,649
net_rshares55,737,113
author_curate_reward""
vote details (1)
@mrgreen ·
it took about an our
👍  
properties (23)
authormrgreen
permlinkre-mrgreen-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t143355837z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-24 14:33:54
last_update2016-07-24 14:33:54
depth2
children1
last_payout2016-08-25 07:30: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_length20
author_reputation23,106,142,389,321
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id321,608
net_rshares53,149,191
author_curate_reward""
vote details (1)
@bola ·
nice, i have been on this for three hours now. It's a mess, so many errors one after another. If i can finish it , i'll do it again but on video for others.
👍  
properties (23)
authorbola
permlinkre-mrgreen-re-mrgreen-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t151934954z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-24 15:19:21
last_update2016-07-24 15:19:21
depth3
children0
last_payout2016-08-25 07:30: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_length156
author_reputation51,245,914,991,562
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id322,738
net_rshares47,967,408
author_curate_reward""
vote details (1)
@nextplx ·
<a href="http://share-your-photo.com/5801633e7c" target="_blank"><img src="http://share-your-photo.com/img/5801633e7c_thumb.jpg" border="0" alt="Bilder hochladen" /></a> can someone help me to fix it?
properties (22)
authornextplx
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t182148675z
categorysteem
json_metadata{"tags":["steem"],"image":["http://share-your-photo.com/img/5801633e7c_thumb.jpg"],"links":["http://share-your-photo.com/5801633e7c"]}
created2016-07-29 18:21:48
last_update2016-07-29 18:21:48
depth1
children0
last_payout2016-08-25 07:30: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_length200
author_reputation219,777,742,694
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id471,089
net_rshares0
@nomoreheroes7 ·
This guide is incredible -- very well laid out and organized (and pictures too!). Very noob friendly. I'm going to give this a shot in the morning , since I'm a total linux noob. Great work pfunk!
👍  ,
properties (23)
authornomoreheroes7
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t040254662z
categorysteem
json_metadata{}
created2016-05-31 04:02:57
last_update2016-05-31 04:02:57
depth1
children2
last_payout2016-08-25 07:30: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_length196
author_reputation2,976,598,660,524
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,241
net_rshares637,439,066
author_curate_reward""
vote details (2)
@gavvet ·
yup, it's windows user quality and by that i mean idiot proof (i am a windows user by the way)
properties (22)
authorgavvet
permlinkre-nomoreheroes7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t053113036z
categorysteem
json_metadata{}
created2016-05-31 05:31:12
last_update2016-05-31 05:31:12
depth2
children0
last_payout2016-08-25 07:30: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_length94
author_reputation889,099,611,791,780
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,274
net_rshares0
@tuck-fheman ·
It's very satisfying to get it going. I've been so intimidated for years about installing Linux that I've never done it. Hanging with all these smart dudes lately gave me the itch and confidence (that I had someone to ask questions of) to finally give it a shot. Everyone in the Steem slack is very helpful if you run into any issues.
properties (22)
authortuck-fheman
permlinkre-nomoreheroes7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t071916426z
categorysteem
json_metadata{}
created2016-05-31 07:19:15
last_update2016-05-31 07:19:15
depth2
children0
last_payout2016-08-25 07:30: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_length334
author_reputation345,778,813,561,569
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,345
net_rshares0
@oholiab ·
Nice! 

I'd be interested to see if you actually see a performance improvement, however, from setting the number of cores *lower* than the maximum number (at least when you're using the host machine at the same time)... Reason being that in most hypervisors (I could be wrong here, so someone please correct me if I am...) the VM will only be scheduled CPU time when all cores are available concurrently.

If you're using the host machine at the same time, this is going to mean that whenever you're running even a single process with a single thread, the entire VM is off-CPU because in order for the guest OS to do that multithreading, it needs its full contingent of cores simultaneously (having no real awareness of the host system).

Again, my previous disclaimer about possible factual inaccuracy stands (I don't know what work has been done on hypervisors here within the last few years, and I wouldn't be surprised if VMWare player runs completely in userspace and therefore does some crazy weirdness), but it would be nice to see a comparative load test if you're set up for it!
properties (22)
authoroholiab
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t173430143z
categorysteem
json_metadata{}
created2016-05-31 17:34:30
last_update2016-05-31 17:34:30
depth1
children3
last_payout2016-08-25 07:30: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_length1,087
author_reputation1,894,810,279,063
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,772
net_rshares0
@pfunk ·
All I know that on my 4690K I get exactly the hashrate I should be getting in the VM (compared to the same generation chip running only Linux) while everything else is idle.
👍  ,
properties (23)
authorpfunk
permlinkre-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t200054639z
categorysteem
json_metadata{}
created2016-05-31 20:01:33
last_update2016-05-31 20:01:33
depth2
children2
last_payout2016-08-25 07:30: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_length173
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,891
net_rshares626,530,666
author_curate_reward""
vote details (2)
@oholiab ·
Cool! I wonder if VMWare player is doing anything particularly clever or if the Windows scheduler is just doing a really good job... Probably the latter to be fair.
properties (22)
authoroholiab
permlinkre-pfunk-re-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t113240771z
categorysteem
json_metadata{}
created2016-06-01 11:32:39
last_update2016-06-01 11:32:39
depth3
children0
last_payout2016-08-25 07:30: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_length164
author_reputation1,894,810,279,063
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,476
net_rshares0
@tuck-fheman ·
Ya I noticed very little slowdown speed wise.
properties (22)
authortuck-fheman
permlinkre-pfunk-re-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t040024671z
categorysteem
json_metadata{}
created2016-06-01 04:00:27
last_update2016-06-01 04:00:27
depth3
children0
last_payout2016-08-25 07:30: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_length45
author_reputation345,778,813,561,569
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,218
net_rshares0
@pfunk ·
$2.62
#  ⚠️ This post is out of date!

## Steem mining, proof-of-work, is no longer part of Steem's block creation. It is purely a delegated-proof-of-stake blockchain network now.
👍  
properties (23)
authorpfunk
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t060313489z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-07-12 06:03:09
last_update2018-07-12 06:03:09
depth1
children0
last_payout2018-07-19 06:03:09
cashout_time1969-12-31 23:59:59
total_payout_value2.616 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id64,371,485
net_rshares1,231,645,655,143
author_curate_reward""
vote details (1)
@proctologic · (edited)
wow got 100% increase.
http://imgur.com/3cAUQNp
mining-threads = 4
👍  
properties (23)
authorproctologic
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t195244575z
categorysteem
json_metadata{}
created2016-05-31 19:52:42
last_update2016-05-31 19:55:15
depth1
children0
last_payout2016-08-25 07:30: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_length66
author_reputation11,572,464,696,308
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,882
net_rshares11,428,653,326
author_curate_reward""
vote details (1)
@rina ·
Nice Job
👍  , ,
properties (23)
authorrina
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160709t143316060z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-09 14:33:21
last_update2016-07-09 14:33:21
depth1
children0
last_payout2016-08-25 07:30: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_length8
author_reputation273,195,476,093
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,918
net_rshares2,093,610,422
author_curate_reward""
vote details (3)
@riverhead ·
Wow. Fantastic! Thank you for taking the time to put this together.
👍  
properties (23)
authorriverhead
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t135624925z
categorysteem
json_metadata{}
created2016-06-01 13:56:21
last_update2016-06-01 13:56:21
depth1
children0
last_payout2016-08-25 07:30: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_length67
author_reputation12,486,999,157,746
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,605
net_rshares614,093,204
author_curate_reward""
vote details (1)
@roboticbubiz ·
is this guide still up-to-date or usable ? thanks for your tutorial
properties (22)
authorroboticbubiz
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180422t170137567z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-04-22 17:01:39
last_update2018-04-22 17:01:39
depth1
children0
last_payout2018-04-29 17:01: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_length67
author_reputation707,247,146,352
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id51,519,421
net_rshares0
@scottland ·
I know this post is old, however, I am having some issues with step 8. I have done all of the steps before it however when I enter... 

     cd witness_node_data_dir

I get the error saying  "no such file or directory found"

Can you please help me?
properties (22)
authorscottland
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t204722934z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-12 20:47:21
last_update2017-06-12 20:47:21
depth1
children3
last_payout2017-06-19 20:47:21
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_length249
author_reputation94,012,994,635
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,682,638
net_rshares0
@pfunk · (edited)
Ok first of all, mining is no longer possible with Steem, and these instructions are also out of date in a couple ways.

 It may point in the general direction of successfully building still, but understand that if you want to build a node now, you should do a git checkout of the latest release tag (**not `master`**) before doing the git submodule update step.

The witness_node_data_dir is created after running steemd for the first time. So run it, give it a second, and then quit it with CTRL+C. Then there will be that directory with config.ini within.
properties (22)
authorpfunk
permlinkre-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t210756398z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-12 21:08:00
last_update2017-06-12 21:10:54
depth2
children2
last_payout2017-06-19 21:08: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_length558
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,684,021
net_rshares0
@jeevanjot ·
I spent my days to figure out and then....
👎  , , , , , , , ,
properties (23)
authorjeevanjot
permlinkre-pfunk-re-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180727t183638581z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2018-07-27 19:38:09
last_update2018-07-27 19:38:09
depth3
children0
last_payout2018-08-03 19:38:09
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_length42
author_reputation-189,315,725,860
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,197,878
net_rshares-147,378,336,030
author_curate_reward""
vote details (9)
@scottland ·
Thank you for your help!
properties (22)
authorscottland
permlinkre-pfunk-re-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t210919346z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-06-12 21:09:18
last_update2017-06-12 21:09:18
depth3
children0
last_payout2017-06-19 21:09: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_length24
author_reputation94,012,994,635
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,684,105
net_rshares0
@steempower ·
Great effort looks like a lot of effort went into writing this guide, i will give it a shot when i get home! :)
👍  
properties (23)
authorsteempower
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t052901353z
categorysteem
json_metadata{}
created2016-05-31 05:29:00
last_update2016-05-31 05:29:00
depth1
children0
last_payout2016-08-25 07:30: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_length111
author_reputation258,723,926,062,198
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,272
net_rshares14,065,242,643
author_curate_reward""
vote details (1)
@steemtest ·
hi pfunk,  i followed your guide and make it work, but the problem is i 've never get any POW for 2 days, and i'm running Core i7-5820K 3.3Ghz
👍  
properties (23)
authorsteemtest
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t094319515z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 09:43:15
last_update2016-07-18 09:43:15
depth1
children1
last_payout2016-08-25 07:30: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_length142
author_reputation441,661,067,508
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id163,162
net_rshares64,890,874
author_curate_reward""
vote details (1)
@exev ·
It also happens to me the same, it seems that the queue number always gets pushed back to the end, and never seem to produce a POW.
properties (22)
authorexev
permlinkre-steemtest-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160726t125124612z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-26 12:51:24
last_update2016-07-26 12:51:24
depth2
children0
last_payout2016-08-25 07:30: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_length131
author_reputation0
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id372,406
net_rshares0
@techsaavy ·
now I am getting this when it was building the blockchain http://prntscr.com/bu3ha1   do I just wait?
👍  
properties (23)
authortechsaavy
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t203325836z
categorysteem
json_metadata{"tags":["steem"],"links":["http://prntscr.com/bu3ha1"]}
created2016-07-17 20:33:45
last_update2016-07-17 20:33:45
depth1
children4
last_payout2016-08-25 07:30: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_length101
author_reputation60,637,536,350
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id152,577
net_rshares334,540,572
author_curate_reward""
vote details (1)
@chrishronic ·
unlinkable block could be due to hard forck. Check witnesses on steemd.com and see what version they are running. If there is a new version, you need to grab it from git and reinstall.
👍  
properties (23)
authorchrishronic
permlinkre-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t124212213z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 12:42:12
last_update2016-07-18 12:42:12
depth2
children0
last_payout2016-08-25 07:30: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_length184
author_reputation409,530,926,935
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id165,295
net_rshares334,540,572
author_curate_reward""
vote details (1)
@techsaavy ·
I'm just going to start over again (facepalm)
properties (22)
authortechsaavy
permlinkre-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t204449598z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 20:45:09
last_update2016-07-17 20:45:09
depth2
children2
last_payout2016-08-25 07:30: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_length45
author_reputation60,637,536,350
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id152,796
net_rshares0
@jordi-kicken ·
Same problem
properties (22)
authorjordi-kicken
permlinkre-techsaavy-re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t215852323z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-17 21:58:57
last_update2016-07-17 21:58:57
depth3
children0
last_payout2016-08-25 07:30: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_length12
author_reputation3,017,142,722
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id154,084
net_rshares0
@jordi-kicken · (edited)
Indeed need to start over, 0.11.0 is the latest right now, no error this time.
👍  
properties (23)
authorjordi-kicken
permlinkre-techsaavy-re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t145720577z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-18 14:57:27
last_update2016-07-18 14:58:06
depth3
children0
last_payout2016-08-25 07:30: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_length78
author_reputation3,017,142,722
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id167,256
net_rshares229,667,131
author_curate_reward""
vote details (1)
@tuck-fheman ·
Nice job pfunk!
👍  
properties (23)
authortuck-fheman
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t065013291z
categorysteem
json_metadata{}
created2016-05-31 06:50:12
last_update2016-05-31 06:50:12
depth1
children5
last_payout2016-08-25 07:30: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_length15
author_reputation345,778,813,561,569
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,320
net_rshares11,721,695,719
author_curate_reward""
vote details (1)
@pfunk ·
Thanks :) I only wish I didn't get dissuaded from writing it earlier :P
👍  
properties (23)
authorpfunk
permlinkre-tuck-fheman-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t065322287z
categorysteem
json_metadata{}
created2016-05-31 06:54:00
last_update2016-05-31 06:54:00
depth2
children4
last_payout2016-08-25 07:30: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_length71
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,324
net_rshares11,721,695,719
author_curate_reward""
vote details (1)
@tuck-fheman · (edited)
-snip-

Never mind, it synced 5 minutes after asking. :)

Interestingly, I get a much better hashrate using bitcube's Windows miner than going this route. I expected this to be on par with arhag's Windows miner. Is there some setting in the VirtualBox or Ubuntu that I need to set perhaps? For instance, is the VirtualBox or Ubuntu limited to less threads than I would be using versus the Windows miner?

Update: I tried the  "Hardware-Assisted Virtualization Detection Tool" but it does not work in Windows 10, so I had to use  CPU-Z (and it's on).

Update 2 : DOH! When I setup VirtualBox I did not tell it to use more than 1 processor. Fixing. See, I should have waited for your guide to do this. ;)

Update 3 : Hellz yeah! Now we're cooking with Crisco! ;)  12500 hps! Thanks for the guide pfunk! I will be sending big SBD tip on 7/4! I added a link to your guide from the Windows guide for those who are having issues with arhag's Windows miner but want more speed than bitcube's Windows miner offers.
👍  
properties (23)
authortuck-fheman
permlinkre-pfunk-re-tuck-fheman-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t174752196z
categorysteem
json_metadata{}
created2016-05-31 17:47:51
last_update2016-05-31 19:04:42
depth3
children3
last_payout2016-08-25 07:30: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_length1,006
author_reputation345,778,813,561,569
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,782
net_rshares11,721,695,719
author_curate_reward""
vote details (1)
@tunder07 ·
Noob question:  The output of the make  command creates steemd and cli_wallet; if I took this files and copy them to different computer in /usr/bin/ 
1. will steemd work correctly ? I guess there will be no problem but I want to confirm 
2. will I see decrease in hbs?
properties (22)
authortunder07
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160805t182658848z
categorysteem
json_metadata{"tags":["steem"]}
created2016-08-05 18:27:00
last_update2016-08-05 18:27:00
depth1
children0
last_payout2016-08-25 07:30: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_length268
author_reputation0
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id631,037
net_rshares0
@vudinhthi ·
I had running miner. But tell me where to see how many Steem that miner is working?
properties (22)
authorvudinhthi
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160722t035926314z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-22 04:02:06
last_update2016-07-22 04:02:06
depth1
children1
last_payout2016-08-25 07:30: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_length83
author_reputation48,914,218
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id265,950
net_rshares0
@vudinhthi ·
Hi pfunk.
When i check cli_wallet ==> info. I find the line "current_witness=xxx" but it is not my account name. Explain me about this line. Thanks
👍  
properties (23)
authorvudinhthi
permlinkre-vudinhthi-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t070017271z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-24 07:00:21
last_update2016-07-24 07:00:21
depth2
children0
last_payout2016-08-25 07:30: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_length147
author_reputation48,914,218
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id314,929
net_rshares57,016,680
author_curate_reward""
vote details (1)
@will-zewe ·
Quick question how or where do I get another account from without actually making one, if I just input "will-zewe1" will it automatically make a new account for mining? I know how to get the additional keys off bitaddress I'm just not sure where the account name comes from...
properties (22)
authorwill-zewe
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t025307336z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-16 02:53:06
last_update2016-07-16 02:53:06
depth1
children2
last_payout2016-08-25 07:30: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_length276
author_reputation10,620,815,246,903
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id129,461
net_rshares0
@pfunk ·
$0.39
> if I just input "will-zewe1" will it automatically make a new account for mining?

Yes, so long as nobody's made the same account name yet. I think you're safe.
👍  
properties (23)
authorpfunk
permlinkre-will-zewe-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t033011341z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-16 03:30:21
last_update2016-07-16 03:30:21
depth2
children1
last_payout2016-08-25 07:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.323 HBD
curator_payout_value0.067 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation221,632,045,904,452
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id129,778
net_rshares147,524,260,995
author_curate_reward""
vote details (1)
@will-zewe ·
Awesome! Thank you, I thought I saw that somewhere else but I couldn't retrack it down to verify so figured I'd just ask.
properties (22)
authorwill-zewe
permlinkre-pfunk-re-will-zewe-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t035134926z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-16 03:51:36
last_update2016-07-16 03:51:36
depth3
children0
last_payout2016-08-25 07:30: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_length121
author_reputation10,620,815,246,903
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id130,006
net_rshares0
@yorg ·
fav
properties (22)
authoryorg
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160720t070558391z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-20 07:06:00
last_update2016-07-20 07:06:00
depth1
children0
last_payout2016-08-25 07:30: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_length3
author_reputation12,012,443,872
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id212,164
net_rshares0
@zafarynl ·
very good post. thanks for sharing.
properties (22)
authorzafarynl
permlinkre-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20171101t152619955z
categorysteem
json_metadata{"tags":["steem"],"app":"steemit/0.1"}
created2017-11-01 15:26:21
last_update2017-11-01 15:26:21
depth1
children0
last_payout2017-11-08 15:26:21
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,933,457,342,393
root_title"[Guide] Steem Windows Mining in a Linux Virtual Machine"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id19,178,542
net_rshares0