Full Steem Ahead! <center></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.   <sup>Success, hardware virtualization is enabled</sup>  <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].  **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.  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.  <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`  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.  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.  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.  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.  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:  <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.  --- 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  button in the upper right!</sup>
author | pfunk |
---|---|
permlink | guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm |
category | steem |
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"]} |
created | 2016-05-31 03:44:27 |
last_update | 2016-07-15 12:42:00 |
depth | 0 |
children | 90 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 353.394 HBD |
curator_payout_value | 353.262 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13,739 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,237 |
net_rshares | 92,214,732,403,960 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
barrie | 0 | 0 | 100% | ||
smooth | 0 | 29,399,227,804,616 | 100% | ||
berniesanders | 0 | 29,604,180,560,953 | 100% | ||
berkah | 0 | 396,669,469,986 | 100% | ||
riverhead | 0 | 3,619,898,455,677 | 100% | ||
pharesim | 0 | 5,205,536,688,242 | 100% | ||
fuzzyvest | 0 | 5,802,465,695,828 | 100% | ||
kushed | 0 | 3,662,300,776,970 | 100% | ||
ihashfury | 0 | 975,076,331,325 | 100% | ||
nextgencrypto | 0 | 3,843,711,528,729 | 100% | ||
liondani | 0 | 540,741,966,556 | 100% | ||
roadscape | 0 | 3,191,731,969,196 | 100% | ||
testz | 0 | 15,487,251,600 | 100% | ||
steemychicken1 | 0 | 968,357,681,090 | 100% | ||
arhag | 0 | 2,686,621,875,210 | 100% | ||
joseph | 0 | 682,332,945,046 | 100% | ||
mineralwasser | 0 | 0 | 100% | ||
bingo-0 | 0 | 0 | 100% | ||
steempower | 0 | 57,424,136,749 | 100% | ||
boatymcboatface | 0 | 170,486,266,592 | 100% | ||
pfunk | 0 | 70,101,992,536 | 100% | ||
proctologic | 0 | 8,067,537,516 | 100% | ||
tuck-fheman | 0 | 128,838,121,620 | 100% | ||
tpboy3 | 0 | 702,188,603 | 100% | ||
steemrollin | 0 | 1,140,719,095 | 100% | ||
chitty | 0 | 5,480,899,858 | 100% | ||
brindleswan | 0 | 599,348,520 | 100% | ||
noaommerrr | 0 | 298,401,708,384 | 100% | ||
gregory-f | 0 | 502,199,781 | 100% | ||
dave-hughes | 0 | 9,968,926,135 | 100% | ||
tshering-tamang | 0 | 543,195,744 | 100% | ||
mod-tamichh | 0 | 14,524,571,693 | 100% | ||
nomoreheroes7 | 0 | 5,100,030,032 | 100% | ||
vato | 0 | 125,337,974,255 | 100% | ||
officialbitcash | 0 | 518,002,152 | 100% | ||
gavvet | 0 | 2,918,248,376 | 100% | ||
fkn | 0 | 482,067,443 | 100% | ||
ereismatias | 0 | 433,147,845 | 100% | ||
hipster | 0 | 469,674,098,807 | 100% | ||
spaninv | 0 | 4,702,079,461 | 100% | ||
gekko | 0 | 324,648,331 | 100% | ||
cryptoctopus | 0 | 12,367,070,285 | 100% | ||
bbqbear | 0 | 2,089,005,226 | 100% | ||
algo-rythm | 0 | 165,819,317 | 100% | ||
nanzo-scoop | 0 | 0 | 100% | ||
jerome-colley | 0 | 359,799,955 | 100% | ||
john-kimmel | 0 | 6,757,280,430 | 100% | ||
kingjohal | 0 | 5,377,798,863 | 100% | ||
yoona-lee | 0 | 417,009,617 | 100% | ||
hannixx42 | 0 | 9,867,730,390 | 100% | ||
amartinezque | 0 | 429,682,365 | 100% | ||
murh | 0 | 474,257,275 | 13% | ||
tie-warutho | 0 | 395,714,092 | 100% | ||
b4bb4r-5h3r | 0 | 267,256,860 | 100% | ||
jeky-jeky | 0 | 368,161,234 | 100% | ||
tinfoilfedora | 0 | 38,810,217 | 100% | ||
hickorysmoked | 0 | 39,498,775 | 100% | ||
olivia-sorenson | 0 | 386,545,391 | 100% | ||
alex-muss | 0 | 369,972,578 | 100% | ||
joeh | 0 | 377,241,679 | 100% | ||
oholiab | 0 | 392,176,451 | 100% | ||
troll | 0 | 31,657,192 | 100% | ||
justtryme90 | 0 | 2,358,079,480 | 100% | ||
robi-rusmana | 0 | 340,238,391 | 100% | ||
johnerfx | 0 | 349,760,556 | 100% | ||
taoteh1221 | 0 | 91,020,289,120 | 100% | ||
stiletto | 0 | 359,680,480 | 100% | ||
minfon | 0 | 388,823,622 | 100% | ||
jordi-kicken | 0 | 327,980,953 | 100% | ||
zach-beckett | 0 | 328,890,778 | 100% | ||
hater | 0 | -205,383,607 | -100% | ||
hackecon | 0 | 309,458,113 | 100% | ||
michaelx | 0 | 11,775,998,164 | 100% | ||
cheftony | 0 | 313,467,117 | 100% | ||
dtbahoney | 0 | 315,060,518 | 100% | ||
gabi-dumitriu | 0 | 57,866,997,773 | 100% | ||
erik-prestinary | 0 | 322,622,442 | 100% | ||
gtg | 0 | 27,547,358 | 100% | ||
magnebit | 0 | 270,694,557 | 100% | ||
dtsddace | 0 | 1,497,169,676 | 100% | ||
ustas | 0 | 253,430,226 | 100% | ||
rina | 0 | 246,381,109 | 100% | ||
piknick | 0 | 250,425,579 | 100% | ||
anwar78 | 0 | 979,993,058 | 100% | ||
cristina | 0 | 295,016,680 | 100% | ||
killswitch | 0 | 3,867,796,979 | 100% | ||
btcshare7 | 0 | 1,173,695,117 | 100% | ||
danny-g | 0 | 272,730,280 | 100% | ||
kirill7 | 0 | 117,115,628 | 100% | ||
lovenugz | 0 | 1,950,070,990 | 100% | ||
on0tole | 0 | 1,931,074,636 | 100% | ||
sveokla | 0 | 239,028,925 | 100% | ||
cloh76 | 0 | 400,885,258 | 100% | ||
steemtest | 0 | 237,847,097 | 100% | ||
jesta | 0 | 242,460,090 | 100% | ||
radioogaga | 0 | 242,434,536 | 100% | ||
d3v667 | 0 | 232,000,372 | 100% | ||
student | 0 | 265,080,785 | 100% | ||
mikevas | 0 | 266,442,988 | 100% | ||
bycz | 0 | 235,993,637 | 100% | ||
alexoz | 0 | 163,246,334 | 100% | ||
tallmansteez | 0 | 240,459,966 | 100% | ||
bittrex.com | 0 | 80,113,016 | 100% | ||
r3b37 | 0 | 235,581,630 | 100% | ||
chefbauer | 0 | 402,306,525 | 100% | ||
arcange | 0 | 570,890,853 | 100% | ||
warrensteem | 0 | 211,382,920 | 100% | ||
chrishronic | 0 | 306,167,861 | 100% | ||
negrodomus | 0 | 239,041,300 | 100% | ||
natalyt | 0 | 405,516,560 | 100% | ||
willytrader | 0 | 182,641,422 | 100% | ||
all-of-us | 0 | 107,758,821 | 100% | ||
bobo012 | 0 | 56,121,154 | 100% | ||
akronte | 0 | 119,093,841 | 100% | ||
denverliu | 0 | 748,420,522 | 100% | ||
animus | 0 | 95,612,070 | 100% | ||
jasonpangjs | 0 | 116,566,027 | 100% | ||
metasyn | 0 | 0 | 100% | ||
protey | 0 | 139,591,356 | 100% | ||
bitlord | 0 | 7,118,014 | 100% | ||
bellodox | 0 | 118,400,704 | 100% | ||
stat | 0 | 83,535,032 | 100% | ||
fellucky | 0 | 118,119,803 | 100% | ||
sergey22 | 0 | 27,754,763 | 100% | ||
yorg | 0 | 106,078,832 | 100% | ||
rfox | 0 | 136,971,347 | 100% | ||
beastmastermason | 0 | 399,163,717 | 100% | ||
tsojin | 0 | 116,577,022 | 100% | ||
ghost26x | 0 | 2,220,070,939 | 100% | ||
alex.chien | 0 | 0 | 100% | ||
jj888 | 0 | 182,484,130 | 100% | ||
dmilash | 0 | 46,860,994 | 100% | ||
alohajedi | 0 | 129,451,490 | 100% | ||
shortcut | 0 | 940,543,136 | 100% | ||
bergy | 0 | 11,060,131,586 | 100% | ||
deedee | 0 | 112,454,425 | 100% | ||
steemeando | 0 | 63,650,602 | 100% | ||
arschnelson | 0 | 60,369,780 | 100% | ||
raptor650 | 0 | 62,494,984 | 100% | ||
skyneth | 0 | 63,396,427 | 100% | ||
randomblock1 | 0 | 0 | 100% | ||
dv8silencersteem | 0 | 521,540,991 | 100% | ||
carlvanderpal | 0 | 61,738,848 | 100% | ||
ashwim | 0 | 56,304,099 | 100% | ||
indykpol | 0 | 58,308,498 | 100% | ||
dumbclubs | 0 | 252,674,289 | 100% | ||
jhonione | 0 | 52,819,125 | 100% | ||
maimoy | 0 | 0 | 100% | ||
demartini | 0 | 0 | 100% | ||
chappers | 0 | 0 | 100% | ||
bioniix | 0 | 0 | 100% | ||
crackdown | 0 | 0 | 100% | ||
stanleyrs | 0 | 0 | 100% | ||
arngrim280 | 0 | 0 | 100% | ||
mclaurin | 0 | 0 | 100% | ||
duckmast3r | 0 | 0 | 100% | ||
obzz | 0 | 0 | 100% | ||
kahanek | 0 | 0 | 100% | ||
mckeown12 | 0 | 0 | 100% | ||
cidt | 0 | 0 | 100% | ||
pfiffel | 0 | 0 | 100% | ||
publictext | 0 | 0 | 100% | ||
nasiriq | 0 | 0 | 100% | ||
razzek | 0 | 0 | 100% | ||
ivan.atman | 0 | 0 | 0% | ||
madkillerpt | 0 | 0 | 100% | ||
terratian | 0 | 0 | 100% | ||
kingjull | 0 | 0 | 100% | ||
meianju-naihatsu | 0 | 0 | 100% | ||
cambridgeport90 | 0 | 0 | 100% |
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!
author | alohajedi |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160723t095522680z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-23 09:55:24 |
last_update | 2016-07-23 09:55:24 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 343 |
author_reputation | 53,926,997,666 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 293,606 |
net_rshares | 0 |
The same problem and just sloved it. Check the "" at line witness name, or WIF key
author | vudinhthi |
---|---|
permlink | re-alohajedi-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t065642983z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-24 06:56:48 |
last_update | 2016-07-24 06:56:48 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 48,914,218 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 314,886 |
net_rshares | 187,780,826 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alohajedi | 0 | 129,451,490 | 100% | ||
education | 0 | 58,329,336 | 100% |
@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.
author | amit86 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t033329449z |
category | steem |
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"} |
created | 2018-07-12 03:33:33 |
last_update | 2018-07-12 03:33:33 |
depth | 1 |
children | 3 |
last_payout | 2018-07-19 03:33:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 453 |
author_reputation | 521,477,963,540 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 64,360,002 |
net_rshares | 0 |
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.
author | pfunk |
---|---|
permlink | re-amit86-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t060501857z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-12 06:04:57 |
last_update | 2018-07-12 06:04:57 |
depth | 2 |
children | 2 |
last_payout | 2018-07-19 06:04:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,371,621 |
net_rshares | 0 |
Thanks for your response @pfunk. Is virtualbox mining still available?
author | amit86 |
---|---|
permlink | re-pfunk-re-amit86-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t211855704z |
category | steem |
json_metadata | {"tags":["steem"],"users":["pfunk"],"app":"steemit/0.1"} |
created | 2018-07-12 21:19:03 |
last_update | 2018-07-12 21:19:03 |
depth | 3 |
children | 1 |
last_payout | 2018-07-19 21:19:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 521,477,963,540 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 64,455,036 |
net_rshares | 0 |
Really nice guide, thanks for this!
author | arngrim280 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170615t024329957z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-15 02:43:27 |
last_update | 2017-06-15 02:43:27 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 02:43:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 1,033,074,377 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,883,597 |
net_rshares | 0 |
Thanks very much. But one quastion. What about NVIDIA cards? Can I mine with nvidia cards?
author | bitlord |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160714t110238063z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-14 11:02:36 |
last_update | 2016-07-14 11:02:36 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 680,644,964,683 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 108,550 |
net_rshares | 802,791,368 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sanbir | 0 | 488,911,750 | 100% | ||
bitlord | 0 | 83,644,634 | 100% | ||
sarancha80 | 0 | 23,042,984 | 100% | ||
rusmicrob | 0 | 207,192,000 | 100% |
There are as yet no GPU miners for Nvidia or AMD. Be very wary of anyone saying they've made one too.
author | pfunk |
---|---|
permlink | re-bitlord-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160715t122957693z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-15 12:30:06 |
last_update | 2016-07-15 12:30:06 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 118,604 |
net_rshares | 341,443,488 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chrishronic | 0 | 234,692,856 | 100% | ||
miacameron | 0 | 106,750,632 | 100% |
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?
author | blackprapor |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160605t125502376z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-05 12:55:03 |
last_update | 2016-06-05 12:55:03 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 146 |
author_reputation | 5,124,702 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,126 |
net_rshares | 327,980,953 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jordi-kicken | 0 | 327,980,953 | 100% |
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.
author | pfunk |
---|---|
permlink | re-blackprapor-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160605t204309127z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-05 20:43:48 |
last_update | 2016-06-05 20:43:48 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,392 |
net_rshares | 56,664,538 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
raz | 0 | 56,664,538 | 100% |
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
author | bobo012 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t085509355z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-16 08:55:09 |
last_update | 2016-07-16 08:56:24 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 636 |
author_reputation | 105,205,238,076 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 132,937 |
net_rshares | 0 |
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
author | techsaavy |
---|---|
permlink | re-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t015355810z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 01:54:18 |
last_update | 2016-07-17 01:54:18 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 197 |
author_reputation | 60,637,536,350 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 134,591 |
net_rshares | 0 |
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?
author | bobo012 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t201837720z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-29 20:18:42 |
last_update | 2016-07-29 20:18:42 |
depth | 1 |
children | 3 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 105,205,238,076 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,482 |
net_rshares | 0 |
https://www.steemitup.eu/i/4B4C90C89A484D925C691CDEE06C04AB.jpg
author | bobo012 |
---|---|
permlink | re-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t203402522z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://www.steemitup.eu/i/4B4C90C89A484D925C691CDEE06C04AB.jpg"]} |
created | 2016-07-29 20:34:06 |
last_update | 2016-07-29 20:34:06 |
depth | 2 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 105,205,238,076 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 473,791 |
net_rshares | 0 |
same here.
author | capcom717 |
---|---|
permlink | re-bobo012-re-bobo012-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t020618485z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-30 02:06:18 |
last_update | 2016-07-30 02:06:18 |
depth | 3 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 0 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 478,786 |
net_rshares | 0 |
nice guide
author | crackdown |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170520t210551006z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-05-20 21:05:57 |
last_update | 2017-05-20 21:05:57 |
depth | 1 |
children | 1 |
last_payout | 2017-05-27 21:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 179,983,416,281 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,610,821 |
net_rshares | 0 |
Thank you. It's entirely irrelevant and outdated now though. Steem does not have any PoW any more. :)
author | pfunk |
---|---|
permlink | re-crackdown-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170521t220124924z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-05-21 22:01:24 |
last_update | 2017-05-21 22:01:24 |
depth | 2 |
children | 0 |
last_payout | 2017-05-28 22:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,643,350 |
net_rshares | 0 |
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
author | dasan-oneia |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t170243615z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 17:02:33 |
last_update | 2016-07-18 17:02:33 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 233 |
author_reputation | 1,060,934,136,993 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 169,165 |
net_rshares | 0 |
what blok are steem right now ?
author | geminigoldsaint |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t134159823z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 13:42:00 |
last_update | 2016-07-17 13:42:00 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 6,283,448 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 145,057 |
net_rshares | 0 |
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
author | gregory-f |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160603t190425074z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-03 19:04:24 |
last_update | 2016-06-03 19:04:24 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 183,272,600,833,008 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,855 |
net_rshares | 0 |
Sorry for not being more specific there. Use the active key.
author | pfunk |
---|---|
permlink | re-gregory-f-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160604t024432569z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-06-04 02:45:09 |
last_update | 2016-07-15 12:30:51 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,013 |
net_rshares | 550,076,750 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hcf27 | 0 | 550,076,750 | 100% |
Fantastic Article, currently loading the blockchain to my VM. Hopefully my i7 4790 still packs a punch!
author | hackecon |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160714t040600908z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-14 04:05:54 |
last_update | 2016-07-14 04:05:54 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 2,671,988,397 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 104,996 |
net_rshares | 83,644,634 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitlord | 0 | 83,644,634 | 100% |
Very easy to digest. Great post. Moving from windows host to ubuntu server mining now.
author | hackecon |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160808t172831990z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-08 17:28:30 |
last_update | 2016-08-08 17:28:30 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 2,671,988,397 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 686,364 |
net_rshares | 0 |
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?
author | hickorysmoked |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t060809400z |
category | steem |
json_metadata | {} |
created | 2016-05-31 06:08:30 |
last_update | 2016-05-31 06:08:30 |
depth | 1 |
children | 5 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 330 |
author_reputation | 126,055,273 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,290 |
net_rshares | 8,067,537,516 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 8,067,537,516 | 100% |
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.
author | pfunk |
---|---|
permlink | re-hickorysmoked-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t062619235z |
category | steem |
json_metadata | {} |
created | 2016-05-31 06:26:57 |
last_update | 2016-05-31 06:27:57 |
depth | 2 |
children | 4 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 514 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,296 |
net_rshares | 0 |
What should I do with it, do I need to move it or power it down to keep it without that wallet file?
author | hickorysmoked |
---|---|
permlink | re-pfunk-re-hickorysmoked-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t063924900z |
category | steem |
json_metadata | {} |
created | 2016-05-31 06:39:45 |
last_update | 2016-05-31 06:39:45 |
depth | 3 |
children | 3 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 126,055,273 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,309 |
net_rshares | 0 |
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?
author | infocus7 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t012435691z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-30 01:24:45 |
last_update | 2016-07-30 01:24:45 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 166 |
author_reputation | 94,924,113,796 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 478,144 |
net_rshares | 0 |
No, it's automatically created when POW is found
author | bobo012 |
---|---|
permlink | re-infocus7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160730t051356064z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-30 05:14:00 |
last_update | 2016-07-30 05:14:00 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 105,205,238,076 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 481,371 |
net_rshares | 124,024,635 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
infocus7 | 0 | 124,024,635 | 100% |
Why steem cannot be mined anymore?
author | jonipilo |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t113123248z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-07-01 11:31:33 |
last_update | 2017-07-01 11:31:33 |
depth | 1 |
children | 3 |
last_payout | 2017-07-08 11:31:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.372 HBD |
curator_payout_value | 0.123 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 530,321,342,055 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,879,354 |
net_rshares | 58,728,186,071 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 58,728,186,071 | 1% | ||
cambridgeport90 | 0 | 0 | 100% |
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.
author | pfunk |
---|---|
permlink | re-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t122439030z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-07-01 12:24:45 |
last_update | 2017-07-01 12:24:45 |
depth | 2 |
children | 2 |
last_payout | 2017-07-08 12:24:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.492 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 195 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,884,179 |
net_rshares | 58,728,186,071 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 58,728,186,071 | 1% | ||
happi-hardcore | 0 | 0 | 100% | ||
cambridgeport90 | 0 | 0 | 100% |
shait
author | jonipilo |
---|---|
permlink | re-pfunk-re-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170701t154823303z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-07-01 15:48:21 |
last_update | 2017-07-01 15:48:21 |
depth | 3 |
children | 0 |
last_payout | 2017-07-08 15:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 530,321,342,055 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,905,496 |
net_rshares | 0 |
@pfunk Can I mine steem if I become steem witness now?
author | kartikohri1712 |
---|---|
permlink | re-pfunk-re-jonipilo-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180212t091840822z |
category | steem |
json_metadata | {"tags":["steem"],"users":["pfunk"],"app":"steemit/0.1"} |
created | 2018-02-12 09:18:42 |
last_update | 2018-02-12 09:18:42 |
depth | 3 |
children | 0 |
last_payout | 2018-02-19 09:18:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 26,337,803,094 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,886,963 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cambridgeport90 | 0 | 0 | 100% |
Problems with this error code with building steem: FC_ASSERT( hardfork == hfp.last_hardfork + 1, "Hardfork being applied out ^ What to do?
author | jordi-kicken |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t215815541z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 21:58:21 |
last_update | 2016-07-17 21:58:21 |
depth | 1 |
children | 5 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 3,017,142,722 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 154,068 |
net_rshares | 0 |
I have the same thing, while I am reading your reply and try to find a solution, the build process continues.
author | carsonkt |
---|---|
permlink | re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160719t020039872z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-19 02:00:33 |
last_update | 2016-07-19 02:00:33 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 989,291,315 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 178,253 |
net_rshares | 334,540,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jordi-kicken | 0 | 334,540,572 | 100% |
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
author | techsaavy |
---|---|
permlink | re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t000919804z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@pfunk/guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm"]} |
created | 2016-07-18 00:09:39 |
last_update | 2016-07-18 00:09:39 |
depth | 2 |
children | 3 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.978 HBD |
curator_payout_value | 0.320 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 542 |
author_reputation | 60,637,536,350 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 156,226 |
net_rshares | 685,651,202,060 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 684,850,454,638 | 100% | ||
jordi-kicken | 0 | 334,540,572 | 100% | ||
chrishronic | 0 | 239,386,713 | 100% | ||
tsojin | 0 | 114,291,198 | 100% | ||
picker | 0 | 112,528,939 | 100% |
Thankyou! Syncing it now
author | jordi-kicken |
---|---|
permlink | re-techsaavy-re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t141241729z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 14:12:48 |
last_update | 2016-07-18 14:12:48 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 3,017,142,722 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 166,617 |
net_rshares | 0 |
Good catch, I need to edit the post but I can't right now. I'll update when I can.
author | pfunk |
---|---|
permlink | re-techsaavy-re-jordi-kicken-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t074737528z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 07:47:51 |
last_update | 2016-07-18 07:47:51 |
depth | 3 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 161,840 |
net_rshares | 0 |
Excellent! Thank you so much!
author | kahanek |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170618t003408236z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-18 00:34:09 |
last_update | 2017-06-18 00:34:09 |
depth | 1 |
children | 1 |
last_payout | 2017-06-25 00:34:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 0 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,136,795 |
net_rshares | 0 |
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.
author | pfunk |
---|---|
permlink | re-kahanek-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170618t085855164z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-18 08:58:54 |
last_update | 2017-06-18 08:58:54 |
depth | 2 |
children | 0 |
last_payout | 2017-06-25 08:58:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 5,161,221 |
net_rshares | 0 |
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
author | khunfarang |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170705t113527236z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/faq.html#Can_I_mine_STEEM"],"app":"steemit/0.1"} |
created | 2017-07-05 11:35:27 |
last_update | 2017-07-05 11:35:27 |
depth | 1 |
children | 1 |
last_payout | 2017-07-12 11:35:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 23,724,395,578 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,386,355 |
net_rshares | 542,744,247 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shahdarshan | 0 | 542,744,247 | 100% | ||
nasiriq | 0 | 0 | 100% |
thanks !!! justed wested 4 housrs for settings in config file and learn about mining .
author | shahdarshan |
---|---|
permlink | re-khunfarang-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170705t192224760z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-07-05 19:22:21 |
last_update | 2017-07-05 19:22:21 |
depth | 2 |
children | 0 |
last_payout | 2017-07-12 19:22:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 925,693,353 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,433,146 |
net_rshares | 0 |
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.
author | magnebit |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160703t150033537z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-03 15:00:36 |
last_update | 2016-07-03 15:00:36 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 4,957,809,430,246 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,304 |
net_rshares | 81,937,991,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 81,590,497,796 | 100% | ||
magnebit | 0 | 266,172,032 | 100% | ||
bitlord | 0 | 81,321,172 | 100% |
how long does it takes to sync the blockchain? https://i.imgsafe.org/4c68319a73.jpg
author | mrgreen |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t134617953z |
category | steem |
json_metadata | {"tags":["steem"],"image":["https://i.imgsafe.org/4c68319a73.jpg"]} |
created | 2016-07-24 13:46:18 |
last_update | 2016-07-24 13:46:18 |
depth | 1 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 23,106,142,389,321 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 320,649 |
net_rshares | 55,737,113 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vacation | 0 | 55,737,113 | 100% |
it took about an our
author | mrgreen |
---|---|
permlink | re-mrgreen-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t143355837z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-24 14:33:54 |
last_update | 2016-07-24 14:33:54 |
depth | 2 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 23,106,142,389,321 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 321,608 |
net_rshares | 53,149,191 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
humor | 0 | 53,149,191 | 100% |
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.
author | bola |
---|---|
permlink | re-mrgreen-re-mrgreen-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t151934954z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-24 15:19:21 |
last_update | 2016-07-24 15:19:21 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 51,245,914,991,562 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 322,738 |
net_rshares | 47,967,408 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lbry | 0 | 47,967,408 | 100% |
<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?
author | nextplx |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160729t182148675z |
category | steem |
json_metadata | {"tags":["steem"],"image":["http://share-your-photo.com/img/5801633e7c_thumb.jpg"],"links":["http://share-your-photo.com/5801633e7c"]} |
created | 2016-07-29 18:21:48 |
last_update | 2016-07-29 18:21:48 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 219,777,742,694 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 471,089 |
net_rshares | 0 |
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!
author | nomoreheroes7 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t040254662z |
category | steem |
json_metadata | {} |
created | 2016-05-31 04:02:57 |
last_update | 2016-05-31 04:02:57 |
depth | 1 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 2,976,598,660,524 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,241 |
net_rshares | 637,439,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jordi-kicken | 0 | 327,980,953 | 100% | ||
hackecon | 0 | 309,458,113 | 100% |
yup, it's windows user quality and by that i mean idiot proof (i am a windows user by the way)
author | gavvet |
---|---|
permlink | re-nomoreheroes7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t053113036z |
category | steem |
json_metadata | {} |
created | 2016-05-31 05:31:12 |
last_update | 2016-05-31 05:31:12 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 889,099,611,791,780 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,274 |
net_rshares | 0 |
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.
author | tuck-fheman |
---|---|
permlink | re-nomoreheroes7-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t071916426z |
category | steem |
json_metadata | {} |
created | 2016-05-31 07:19:15 |
last_update | 2016-05-31 07:19:15 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 334 |
author_reputation | 345,778,813,561,569 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,345 |
net_rshares | 0 |
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!
author | oholiab |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t173430143z |
category | steem |
json_metadata | {} |
created | 2016-05-31 17:34:30 |
last_update | 2016-05-31 17:34:30 |
depth | 1 |
children | 3 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,087 |
author_reputation | 1,894,810,279,063 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,772 |
net_rshares | 0 |
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.
author | pfunk |
---|---|
permlink | re-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t200054639z |
category | steem |
json_metadata | {} |
created | 2016-05-31 20:01:33 |
last_update | 2016-05-31 20:01:33 |
depth | 2 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,891 |
net_rshares | 626,530,666 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oholiab | 0 | 392,176,451 | 100% | ||
negrodomus | 0 | 234,354,215 | 100% |
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.
author | oholiab |
---|---|
permlink | re-pfunk-re-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t113240771z |
category | steem |
json_metadata | {} |
created | 2016-06-01 11:32:39 |
last_update | 2016-06-01 11:32:39 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 1,894,810,279,063 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,476 |
net_rshares | 0 |
Ya I noticed very little slowdown speed wise.
author | tuck-fheman |
---|---|
permlink | re-pfunk-re-oholiab-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t040024671z |
category | steem |
json_metadata | {} |
created | 2016-06-01 04:00:27 |
last_update | 2016-06-01 04:00:27 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 345,778,813,561,569 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,218 |
net_rshares | 0 |
# ⚠️ 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.
author | pfunk |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180712t060313489z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-12 06:03:09 |
last_update | 2018-07-12 06:03:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-19 06:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.616 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,371,485 |
net_rshares | 1,231,645,655,143 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 1,231,645,655,143 | 25% |
wow got 100% increase. http://imgur.com/3cAUQNp mining-threads = 4
author | proctologic |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t195244575z |
category | steem |
json_metadata | {} |
created | 2016-05-31 19:52:42 |
last_update | 2016-05-31 19:55:15 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 11,572,464,696,308 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,882 |
net_rshares | 11,428,653,326 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 11,428,653,326 | 100% |
author | rina |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160709t143316060z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-09 14:33:21 |
last_update | 2016-07-09 14:33:21 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 273,195,476,093 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,918 |
net_rshares | 2,093,610,422 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
on0tole | 0 | 1,931,074,636 | 100% | ||
bitlord | 0 | 81,321,172 | 100% | ||
stat | 0 | 81,214,614 | 100% |
Wow. Fantastic! Thank you for taking the time to put this together.
author | riverhead |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160601t135624925z |
category | steem |
json_metadata | {} |
created | 2016-06-01 13:56:21 |
last_update | 2016-06-01 13:56:21 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 12,486,999,157,746 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,605 |
net_rshares | 614,093,204 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hcf27 | 0 | 614,093,204 | 100% |
is this guide still up-to-date or usable ? thanks for your tutorial
author | roboticbubiz |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180422t170137567z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-04-22 17:01:39 |
last_update | 2018-04-22 17:01:39 |
depth | 1 |
children | 0 |
last_payout | 2018-04-29 17:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 707,247,146,352 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,519,421 |
net_rshares | 0 |
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?
author | scottland |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t204722934z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-12 20:47:21 |
last_update | 2017-06-12 20:47:21 |
depth | 1 |
children | 3 |
last_payout | 2017-06-19 20:47:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 94,012,994,635 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,682,638 |
net_rshares | 0 |
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.
author | pfunk |
---|---|
permlink | re-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t210756398z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-12 21:08:00 |
last_update | 2017-06-12 21:10:54 |
depth | 2 |
children | 2 |
last_payout | 2017-06-19 21:08:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 558 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,684,021 |
net_rshares | 0 |
I spent my days to figure out and then....
author | jeevanjot |
---|---|
permlink | re-pfunk-re-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20180727t183638581z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2018-07-27 19:38:09 |
last_update | 2018-07-27 19:38:09 |
depth | 3 |
children | 0 |
last_payout | 2018-08-03 19:38:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | -189,315,725,860 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,197,878 |
net_rshares | -147,378,336,030 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -4,029,788,200 | -1% | ||
nextgencrypto | 0 | -1,248,564,787 | -1% | ||
thecyclist | 0 | -10,989,787,228 | -1% | ||
engagement | 0 | -29,149,849,449 | -1% | ||
iflagtrash | 0 | -2,422,470,472 | -1% | ||
randomthoughts | 0 | -5,308,316,037 | -1% | ||
thedelegator | 0 | -6,157,522,918 | -1% | ||
ngc | 0 | -84,963,188,453 | -1% | ||
abusereports | 0 | -3,108,848,486 | -1% |
Thank you for your help!
author | scottland |
---|---|
permlink | re-pfunk-re-scottland-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20170612t210919346z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-06-12 21:09:18 |
last_update | 2017-06-12 21:09:18 |
depth | 3 |
children | 0 |
last_payout | 2017-06-19 21:09:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 94,012,994,635 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,684,105 |
net_rshares | 0 |
Great effort looks like a lot of effort went into writing this guide, i will give it a shot when i get home! :)
author | steempower |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t052901353z |
category | steem |
json_metadata | {} |
created | 2016-05-31 05:29:00 |
last_update | 2016-05-31 05:29:00 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 258,723,926,062,198 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,272 |
net_rshares | 14,065,242,643 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 14,065,242,643 | 100% |
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
author | steemtest |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t094319515z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 09:43:15 |
last_update | 2016-07-18 09:43:15 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 441,661,067,508 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 163,162 |
net_rshares | 64,890,874 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
exev | 0 | 64,890,874 | 100% |
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.
author | exev |
---|---|
permlink | re-steemtest-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160726t125124612z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-26 12:51:24 |
last_update | 2016-07-26 12:51:24 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 0 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 372,406 |
net_rshares | 0 |
now I am getting this when it was building the blockchain http://prntscr.com/bu3ha1 do I just wait?
author | techsaavy |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t203325836z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://prntscr.com/bu3ha1"]} |
created | 2016-07-17 20:33:45 |
last_update | 2016-07-17 20:33:45 |
depth | 1 |
children | 4 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 60,637,536,350 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 152,577 |
net_rshares | 334,540,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jordi-kicken | 0 | 334,540,572 | 100% |
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.
author | chrishronic |
---|---|
permlink | re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t124212213z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 12:42:12 |
last_update | 2016-07-18 12:42:12 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 409,530,926,935 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 165,295 |
net_rshares | 334,540,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jordi-kicken | 0 | 334,540,572 | 100% |
I'm just going to start over again (facepalm)
author | techsaavy |
---|---|
permlink | re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t204449598z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 20:45:09 |
last_update | 2016-07-17 20:45:09 |
depth | 2 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 60,637,536,350 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 152,796 |
net_rshares | 0 |
Same problem
author | jordi-kicken |
---|---|
permlink | re-techsaavy-re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160717t215852323z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-17 21:58:57 |
last_update | 2016-07-17 21:58:57 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 3,017,142,722 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 154,084 |
net_rshares | 0 |
Indeed need to start over, 0.11.0 is the latest right now, no error this time.
author | jordi-kicken |
---|---|
permlink | re-techsaavy-re-techsaavy-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160718t145720577z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-18 14:57:27 |
last_update | 2016-07-18 14:58:06 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 3,017,142,722 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 167,256 |
net_rshares | 229,667,131 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
negrodomus | 0 | 229,667,131 | 100% |
Nice job pfunk!
author | tuck-fheman |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t065013291z |
category | steem |
json_metadata | {} |
created | 2016-05-31 06:50:12 |
last_update | 2016-05-31 06:50:12 |
depth | 1 |
children | 5 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 345,778,813,561,569 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,320 |
net_rshares | 11,721,695,719 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 11,721,695,719 | 100% |
Thanks :) I only wish I didn't get dissuaded from writing it earlier :P
author | pfunk |
---|---|
permlink | re-tuck-fheman-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t065322287z |
category | steem |
json_metadata | {} |
created | 2016-05-31 06:54:00 |
last_update | 2016-05-31 06:54:00 |
depth | 2 |
children | 4 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,324 |
net_rshares | 11,721,695,719 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 11,721,695,719 | 100% |
-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.
author | tuck-fheman |
---|---|
permlink | re-pfunk-re-tuck-fheman-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160531t174752196z |
category | steem |
json_metadata | {} |
created | 2016-05-31 17:47:51 |
last_update | 2016-05-31 19:04:42 |
depth | 3 |
children | 3 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,006 |
author_reputation | 345,778,813,561,569 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,782 |
net_rshares | 11,721,695,719 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proctologic | 0 | 11,721,695,719 | 100% |
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?
author | tunder07 |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160805t182658848z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-08-05 18:27:00 |
last_update | 2016-08-05 18:27:00 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | 0 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 631,037 |
net_rshares | 0 |
I had running miner. But tell me where to see how many Steem that miner is working?
author | vudinhthi |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160722t035926314z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-22 04:02:06 |
last_update | 2016-07-22 04:02:06 |
depth | 1 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 48,914,218 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 265,950 |
net_rshares | 0 |
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
author | vudinhthi |
---|---|
permlink | re-vudinhthi-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160724t070017271z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-24 07:00:21 |
last_update | 2016-07-24 07:00:21 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 48,914,218 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 314,929 |
net_rshares | 57,016,680 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marketing | 0 | 57,016,680 | 100% |
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...
author | will-zewe |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t025307336z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-16 02:53:06 |
last_update | 2016-07-16 02:53:06 |
depth | 1 |
children | 2 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 276 |
author_reputation | 10,620,815,246,903 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,461 |
net_rshares | 0 |
> 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.
author | pfunk |
---|---|
permlink | re-will-zewe-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t033011341z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-16 03:30:21 |
last_update | 2016-07-16 03:30:21 |
depth | 2 |
children | 1 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.323 HBD |
curator_payout_value | 0.067 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 221,632,045,904,452 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,778 |
net_rshares | 147,524,260,995 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
will-zewe | 0 | 147,524,260,995 | 100% |
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.
author | will-zewe |
---|---|
permlink | re-pfunk-re-will-zewe-re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160716t035134926z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-16 03:51:36 |
last_update | 2016-07-16 03:51:36 |
depth | 3 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 10,620,815,246,903 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,006 |
net_rshares | 0 |
fav
author | yorg |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20160720t070558391z |
category | steem |
json_metadata | {"tags":["steem"]} |
created | 2016-07-20 07:06:00 |
last_update | 2016-07-20 07:06:00 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | 12,012,443,872 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 212,164 |
net_rshares | 0 |
very good post. thanks for sharing.
author | zafarynl |
---|---|
permlink | re-pfunk-guide-maximize-your-mining-hashrate-in-windows-by-mining-steem-in-a-vm-20171101t152619955z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-11-01 15:26:21 |
last_update | 2017-11-01 15:26:21 |
depth | 1 |
children | 0 |
last_payout | 2017-11-08 15:26:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 1,933,457,342,393 |
root_title | "[Guide] Steem Windows Mining in a Linux Virtual Machine" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,178,542 |
net_rshares | 0 |