create account

Installing and Running EOS on Windows by tokenika

View this thread on: hive.blogpeakd.comecency.com
· @tokenika · (edited)
$268.07
Installing and Running EOS on Windows
If you are a Windows C++ developer and MS Visual Studio is your favorite IDE, you might wonder if it's possible to have the EOS code compiled directly on Windows. 

We have made several attempts with Windows C++ compilers, but to no avail. The main problem is that, while the EOS code is branched with the `WIN32` flag, unfortunately it's been done inconsistently. Also, Windows *Clang* compiler behaves differently than its Unix counterpart - it seems to be more restrictive. For example expressions like `std::move(u8"env")` are invalid in Windows.

However, we've come up with an alternative solution: [Windows Subsystem for Linux](https://msdn.microsoft.com/en-us/commandline/wsl/about) combined with [Visual Studio Code](https://code.visualstudio.com/) IDE. As you'll see this approach works even better than having the code compiled directly in Windows.

![windows10-ubuntu.png](https://steemitimages.com/DQmZZroqVUJSBshNNTy41vA95zhoCPAoZ6rLehPbAPUodYb/windows10-ubuntu.png)

# Prerequisites

You need to be running [Windows 10, version 1703, also known as the Creators Update](https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1703). To verify your Windows version open the *Settings Panel* and then navigate to `System > About`.

If you have an earlier version of Windows 10 and for some reasons don't want to upgrade to version 1703, you might still be able to give it a try, provided you manage to upgrade your *Windows Subsystem for Linux* from Ubuntu 14 to Ubuntu 16.

*Windows Subsystem for Linux* can be only installed on the system drive. If you're running low on your disk space (extra 3-4 GB will be needed), you might want to expand your system partition using tools available [here](https://www.partition-tool.com/).

# Tooling up

First we will enable *Windows Subsystem for Linux* and then we will access the Bash command line interface from within *Visual Studio*. 

### Windows Subsystem for Linux

The official *Windows Subsystem for Linux* installation guide is to be found [here](https://msdn.microsoft.com/en-us/commandline/wsl/install_guide). However, for your convenience, we provide the following simplified procedure:

1. Open *PowerShell* in the administrator mode (right-click and choose `Run as Administrator`) and execute this command: 
`Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux`

2. Restart your computer when prompted.

3. Turn on the *Developer Mode*:
    -- Open the *Settings Panel* and navigate to `Update & Security > For developers`.
    -- Select the *Developer Mode* radio button.
    -- If prompted, restart your computer again.

4. Open Windows command prompt and type `bash`.  After you have accepted the license agreement, a Ubuntu user-mode image will be downloaded and extracted to `%localappdata%\lxss\`. You will be prompted for setting up a Linux user name and password. When the process is finished, a shortcut named *Bash on Ubuntu on Windows* will be added to your *Start Menu*.

5. Launch a new Ubuntu shell by either:
   -- Typing `bash` in the command prompt, or
   -- Using the *Bash on Ubuntu on Windows* shortcut available from the *Start Menu*.

6. Once you are inside the Linux shell, make sure you are running Ubuntu 16:
`lsb_release -a`

7. And finally update & upgrade Ubuntu:
`sudo apt update`
`sudo apt full-upgrade`

### Redoing the Ubuntu installation

The following step is optional. Use it only if, for some reasons, you need to start over and redo the Ubuntu installation.

1. Open Windows command prompt and run:
`lxrun /uninstall /full`  to uninstall
`lxrun /install` to reinstall

2. Run `bash` to launch a new Ubuntu shell and inside it run update & upgrade:
`sudo apt update`
`sudo apt full-upgrade`

### Visual Studio Code

Download and install *Visual Studio Code* from [the official website](https://code.visualstudio.com/Download). To enable Ubuntu bash console inside *Visual Studio Code* you need to modify the *User Settings*:
   -- Navigate to `File > Preferences > User Settings`.
   -- Add the following entry in the right-hand side panel to overwrite the default settings: `"terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe"`.
   -- After saving the changes, you should be able to toggle the Ubuntu console with `Ctrl + '` or `View > Integrated Terminal`.

Optionally, consider adding C++ extensions to *Visual Studio Code*, as they can be useful for C++ development. Use `Ctrl + Shift + X` to open the *Extensions Panel* and then you might want to add the following extensions:
   -- C/C++
   -- C++ Intelisense
   -- CMakeTools
   -- CMake Tools Helper
   -- Code Runner

# Compile the Source Code

Create a workspace location for EOS on the Windows file system. In this guide we will be using `X:\Workspaces\EOS` but obviously it's up to you to choose your own location.

On the Linux file system, the above location will be mapped as `/mnt/x/Workspaces/EOS`. The location you have chosen will be mapped accordingly. 

NOTE: use lower case for the name of the drive, in our case it's `/mnt/x/`.

At this stage you can start using the Ubuntu shell available in *Visual Studio Code* (`View > Integrated Terminal`). The main advantage is its support for an easy way to *copy-paste* commands. 

All the following commands are to be run in an Ubuntu shell.

1. Define the following system variables:
`export WORKSPACE_DIR=/mnt/x/Workspaces/EOS`
`export EOSIO_INSTALL_DIR=${WORKSPACE_DIR}/eos`
`export EOS_PROGRAMS=${EOSIO_INSTALL_DIR}/build/programs`
`export TEMP_DIR=/tmp`<br/>NOTE: make sure to replace `x/Workspaces/EOS` with the appropriate path that matches the workspace location you have chosen on your computer.

2. Save the above system variables to the `~/.bashrc` file:
`echo "export WORKSPACE_DIR=${WORKSPACE_DIR}"  >> ~/.bashrc`
`echo "export EOSIO_INSTALL_DIR=${EOSIO_INSTALL_DIR}"  >> ~/.bashrc`
`echo "export EOS_PROGRAMS=${EOS_PROGRAMS}" >> ~/.bashrc`

3. Install `cmake` and `git`:
`sudo apt install cmake`
`sudo apt install git`

4. Clone the source code from the EOS repository:
`cd ${WORKSPACE_DIR}`
`git clone https://github.com/eosio/eos --recursive`

5. Now you are ready to proceed with the actual compilation of the source code. This step can take several hours, depending on your computer's power, and will require you to intermittently confirm some actions and also to supply the `sudo` password.
`cd ${EOSIO_INSTALL_DIR}`
`./build.sh ubuntu full`<br/>NOTE: As this process requires downloading a lot of files from various sources, it might fail. In this case just try running this step again.

# Run the Executables

If no errors have occurred, you should have the EOS code on your Windows system compiled, resulting with multiple libraries and executables. Executables are placed in the `$EOS_PROGRAMS` folder:

- `eosd` - a server-side blockchain node component,
- `eosc` - a command line interface to interact with the blockchain,
- `eos-walletd` - an EOS wallet,
- `launcher` - an application for network composing and deployment, more information is available [here](https://github.com/EOSIO/eos/blob/master/testnet.md).

At this stage you should be able to run tests described in `eos/README.md`. 

For completeness, let's try if EOS can be started:
`cd ${EOS_PROGRAMS}/eosd && ./eosd`

At this stage it should exit with an error complaining about the `genesis.json` file not being defined. In case it does not exit with this error, you can always close it with `ctrl + C`.

# Produce Blocks

Figure out the path for your `genesis.json` file. In our case it's `/mnt/x/Workspaces/EOS/eos/build/genesis.json`, yours will probably be different, depending on the workspace location you have chosen.

Edit the `config.ini` file (in our case it's located here: `X:\Workspaces\EOS\eos\build\programs\eosd\data-dir\config.ini`) using *WordPad* (or other text editor of your choice), locate the `enable-stale-production` entry and make it `enable-stale-production = true`.

Then append the following content in `config.ini`:
```
genesis-json = /mnt/x/Workspaces/EOS/eos/build/genesis.json

producer-name = inita
producer-name = initb
producer-name = initc
producer-name = initd
producer-name = inite
producer-name = initf
producer-name = initg
producer-name = inith
producer-name = initi
producer-name = initj
producer-name = initk
producer-name = initl
producer-name = initm
producer-name = initn
producer-name = initq
producer-name = initr
producer-name = inits
producer-name = initt
producer-name = initu

plugin = eos::producer_plugin
plugin = eos::chain_api_plugin
plugin = eos::wallet_api_plugin
plugin = eos::account_history_api_plugin
plugin = eos::http_plugin 
```

NOTE: Make sure to set the proper value for the `genesis.json` path - most probably your path will be different than the one quoted above.

At this stage, when you run `eosd` again, it should start block production:
`cd ${EOS_PROGRAMS}/eosd && ./eosd`

This is what you should see in your console if everything works OK:

```
232901ms thread-0   chain_plugin.cpp:80           plugin_initialize    ] initializing chain plugin
232902ms thread-0   producer_plugin.cpp:159       plugin_initialize    ] Public Key: EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV
232903ms thread-0   http_plugin.cpp:132           plugin_initialize    ] host: 127.0.0.1 port: 8888
232905ms thread-0   http_plugin.cpp:135           plugin_initialize    ] configured http to listen on 127.0.0.1:8888
...
232998ms thread-0   producer_plugin.cpp:170       plugin_startup       ] producer plugin:  plugin_startup() begin
232999ms thread-0   producer_plugin.cpp:175       plugin_startup       ] Launching block production for 19 producers.

*******************************
*                             *
*   ------ NEW CHAIN ------   *
*   -   Welcome to EOS!   -   *
*   -----------------------   *
*                             *
*******************************

Your genesis seems to have an old timestamp
Please consider using the --genesis-timestamp option to give your genesis a recent timestamp

233012ms thread-0   producer_plugin.cpp:185       plugin_startup       ] producer plugin:  plugin_startup() end
233012ms thread-0   http_plugin.cpp:147           plugin_startup       ] start processing http thread
...
233059ms thread-0   http_plugin.cpp:224           add_handler          ] add api url: /v1/account_history/get_transaction
233060ms thread-0   http_plugin.cpp:224           add_handler          ] add api url: /v1/account_history/get_transactions
237003ms thread-0   chain_controller.cpp:235      _push_block          ] initq #1 @2017-09-29T16:03:57  | 0 trx, 0 pending, exectime_ms=0
237005ms thread-0   producer_plugin.cpp:233       block_production_loo ] initq generated block #1 @ 2017-09-29T16:03:57 with 0 trxs  0 pending
240003ms thread-0   chain_controller.cpp:235      _push_block          ] initc #2 @2017-09-29T16:04:00  | 0 trx, 0 pending, exectime_ms=0
240004ms thread-0   producer_plugin.cpp:233       block_production_loo ] initc generated block #2 @ 2017-09-29T16:04:00 with 0 trxs  0 pending
243003ms thread-0   chain_controller.cpp:235      _push_block          ] initd #3 @2017-09-29T16:04:03  | 0 trx, 0 pending, exectime_ms=0
```
NOTE: It might happen that `eosd` hangs and fails to produce blocks at the first attempt. In this case just exit the process using `ctrl + C`, then wait a bit and try again.

# Update the Source Code

In order to update the source code from the official repository and recompile it, run the following commands:
```
cd ${EOSIO_INSTALL_DIR}
git pull
rm -r build && mkdir build && cd build
export BOOST_ROOT=${HOME}/opt/boost_1_64_0
cmake -DCMAKE_BUILD_TYPE=Debug \
    -DCMAKE_C_COMPILER=clang-4.0 \
    -DCMAKE_CXX_COMPILER=clang++-4.0 \
    -DWASM_LLVM_CONFIG=${HOME}/opt/wasm/bin/llvm-config \
    -DBINARYEN_BIN=${HOME}/opt/binaryen/bin \
    -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl \
    -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib \
    ../ && make
```
---
Please refer to [the official build guide](https://github.com/EOSIO/eos/blob/master/README.md) and/or [this list](http://eos.tokenika.io/tag_build_guide.html) if you need EOS build guides for operating systems other than Windows (i.e. MacOS and Linux).
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 307 others
πŸ‘Ž  
properties (23)
authortokenika
permlinkinstalling-and-running-eos-on-windows
categoryeos
json_metadata{"tags":["eos","eosdev"],"image":["https://steemitimages.com/DQmZZroqVUJSBshNNTy41vA95zhoCPAoZ6rLehPbAPUodYb/windows10-ubuntu.png"],"links":["https://msdn.microsoft.com/en-us/commandline/wsl/about","https://code.visualstudio.com/","https://docs.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1703","https://www.partition-tool.com/","https://msdn.microsoft.com/en-us/commandline/wsl/install_guide","https://code.visualstudio.com/Download","https://github.com/EOSIO/eos/blob/master/testnet.md","https://github.com/EOSIO/eos/blob/master/README.md","http://eos.tokenika.io/tag_build_guide.html"],"app":"steemit/0.1","format":"markdown"}
created2017-09-29 11:50:00
last_update2017-09-30 20:43:06
depth0
children67
last_payout2017-10-06 11:50:00
cashout_time1969-12-31 23:59:59
total_payout_value246.677 HBD
curator_payout_value21.388 HBD
pending_payout_value0.000 HBD
promoted0.016 HBD
body_length12,251
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id16,270,908
net_rshares96,816,794,970,255
author_curate_reward""
vote details (372)
@adjs20 ·
Wow!! Very informative post.
I think I'll give it a try :)
properties (22)
authoradjs20
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t132752349z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:27:57
last_update2017-09-29 13:27:57
depth1
children0
last_payout2017-10-06 13:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation23,891,816,162,878
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,278,901
net_rshares0
@agentzero ·
Does ubunto is difficult to install ?
properties (22)
authoragentzero
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t103852988z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 10:38:51
last_update2017-09-30 10:38:51
depth1
children1
last_payout2017-10-07 10:38:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation2,656,035,667,454
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,364,660
net_rshares0
@tokenika ·
If you are on Windows 10 and want to take advantage of *Windows Subsystem for Linux*, it's very easy: it takes less than 5 minutes and it's just a matter of running one command in the command-line interface.
properties (22)
authortokenika
permlinkre-agentzero-re-tokenika-installing-and-running-eos-on-windows-20170930t194418735z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 19:44:18
last_update2017-09-30 19:44:18
depth2
children0
last_payout2017-10-07 19:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,406,552
net_rshares0
@ahuruglica ·
$0.95
Very informative, thanks
πŸ‘  , , , , ,
properties (23)
authorahuruglica
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t224517653z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 22:45:18
last_update2017-09-30 22:45:18
depth1
children0
last_payout2017-10-07 22:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.717 HBD
curator_payout_value0.236 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation14,261,615,182,387
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,417,887
net_rshares347,263,361,804
author_curate_reward""
vote details (6)
@amine.tamdy ·
Very good ;)
properties (22)
authoramine.tamdy
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t150209482z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 15:02:09
last_update2017-09-29 15:02:09
depth1
children0
last_payout2017-10-06 15:02:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation207,103,936
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,287,290
net_rshares0
@andrisyahreza ·
Follow me
properties (22)
authorandrisyahreza
permlinkre-tokenika-2017929t22255170z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-29 15:02:57
last_update2017-09-29 15:02:57
depth1
children0
last_payout2017-10-06 15:02:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation-12,735,285,830
root_title"Installing and Running EOS on Windows"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,287,358
net_rshares0
@anforo ·
$0.29
Wow, I thought it would be much easier
πŸ‘  , , , ,
properties (23)
authoranforo
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t054353373z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 05:43:54
last_update2017-09-30 05:43:54
depth1
children0
last_payout2017-10-07 05:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.272 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation2,861,241,802,070
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,345,964
net_rshares103,729,939,289
author_curate_reward""
vote details (5)
@angelsmith ·
my favorite OS is windows cause i think it's very easy to used hehe @tokenika
properties (22)
authorangelsmith
permlinkre-tokenika-installing-and-running-eos-on-windows-20171012t070903314z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-10-12 07:09:03
last_update2017-10-12 07:09:03
depth1
children0
last_payout2017-10-19 07:09:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation4,533,190,043
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,465,626
net_rshares0
@arcange ·
Congratulations @tokenika!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170929) in the following category:

* Pending payout - Ranked 2 with $ 307,71
properties (22)
authorarcange
permlinkre-installing-and-running-eos-on-windows-20170929t173939000z
categoryeos
json_metadata""
created2017-09-30 15:38:06
last_update2017-09-30 15:38:06
depth1
children0
last_payout2017-10-07 15:38:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation1,146,606,601,469,178
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,388,218
net_rshares0
@bakingsoda ·
im thinking about how to install windows if your using ubuntu. thats the hardest part i know for sure.
properties (22)
authorbakingsoda
permlinkre-tokenika-installing-and-running-eos-on-windows-20171001t141209002z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-01 14:12:09
last_update2017-10-01 14:12:09
depth1
children0
last_payout2017-10-08 14:12:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation187,918,290
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,474,962
net_rshares0
@bangmimi ·
How are you friends steemit hopefully still given the security and health.
And hopefully your days are fun, with your latest posts, which give a lot of inspiration and benefit to the loyal readers of Steemit.

@tokenika your many great posts. This is a very interesting and useful post, so it is my heart's intention to read and see in detail the posts you share. I voted and followed you.
properties (22)
authorbangmimi
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t025547278z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-09-30 02:55:51
last_update2017-09-30 02:55:51
depth1
children0
last_payout2017-10-07 02:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length389
author_reputation13,529,540,589,633
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,336,225
net_rshares0
@bax ·
$0.04
Congratulations! Great job.
EOS team should think more about dev community, because the competition doesn't sleep (see NEM road show across Europe to look for developers). The blockchain that attracts more developers and have more applications will become more popular and eventually - will win.
πŸ‘  ,
properties (23)
authorbax
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t203738723z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 20:37:33
last_update2017-09-29 20:37:33
depth1
children1
last_payout2017-10-06 20:37:33
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation950,134,503,690
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,314,199
net_rshares14,185,052,302
author_curate_reward""
vote details (2)
@rufussed ·
I agree. Perhaps they could consider creating a support program or fund to help developers get there apps rolling. Advisor, mentors, funding etc. They have raised enough money to do it.
πŸ‘  ,
properties (23)
authorrufussed
permlinkre-bax-re-tokenika-installing-and-running-eos-on-windows-20171001t064704381z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-01 06:47:06
last_update2017-10-01 06:47:06
depth2
children0
last_payout2017-10-08 06:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation6,482,061,007
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,443,971
net_rshares781,116,867
author_curate_reward""
vote details (2)
@bdk1970 ·
I've always been a fan of operating systems other than windoze.... I have tried many is bootable systems, it's fun to experiment
πŸ‘  
properties (23)
authorbdk1970
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t120124156z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:01:27
last_update2017-09-29 12:01:27
depth1
children0
last_payout2017-10-06 12:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation665,987,929,670
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,271,758
net_rshares353,246,376
author_curate_reward""
vote details (1)
@bitjourney ·
The eosd folder has now been renamed nodeos so instead of running this command: 

cd ${EOS_PROGRAMS}/eosd && ./eosd

If you run this one: cd ${EOS_PROGRAMS}/nodeos && ./nodeos -e -p eosio --plugin eosio::wallet_api_plugin --plugin eosio::chain_api_plugin --plugin eosio::account_history_api_plugin

It will run and create the block producers too.
properties (22)
authorbitjourney
permlinkre-tokenika-installing-and-running-eos-on-windows-20180429t121407295z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-04-29 12:14:06
last_update2018-04-29 12:14:06
depth1
children0
last_payout2018-05-06 12:14:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation0
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,818,000
net_rshares0
@bleujay ·
$0.58
Thank you for posting @tokenika.

It seems information regarding the EOS project is hard to come by....this is very good news.

Appreciate hearing of it at Steemit first.

Welcome to Steemit.
πŸ‘  , , , ,
properties (23)
authorbleujay
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t132321373z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-09-29 13:23:21
last_update2017-09-29 13:23:21
depth1
children1
last_payout2017-10-06 13:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.438 HBD
curator_payout_value0.144 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation207,869,920,511,893
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,278,565
net_rshares211,356,910,227
author_curate_reward""
vote details (5)
@mdgazi ·
Sir upbord in my post also
πŸ‘Ž  
properties (23)
authormdgazi
permlinkre-bleujay-re-tokenika-installing-and-running-eos-on-windows-20170930t035343916z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:54:30
last_update2017-09-29 13:54:30
depth2
children0
last_payout2017-10-06 13:54:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation4,589,373,966
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,281,214
net_rshares-12,358,992,995
author_curate_reward""
vote details (1)
@clixmoney ·
amazing, do you think that EOS is better than linux ?
πŸ‘  ,
properties (23)
authorclixmoney
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t120857804z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:09:12
last_update2017-09-29 12:09:12
depth1
children0
last_payout2017-10-06 12:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation708,028,799,822,335
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,272,306
net_rshares2,071,849,281
author_curate_reward""
vote details (2)
@cmichel ·
$0.16
Wow, this is really nice, thanks. And there I was doing everything in VirtualBox ...
πŸ‘  
properties (23)
authorcmichel
permlinkre-tokenika-installing-and-running-eos-on-windows-20180308t200051540z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-03-08 20:00:51
last_update2018-03-08 20:00:51
depth1
children0
last_payout2018-03-15 20:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.159 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation1,950,560,061,631
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id43,180,587
net_rshares41,787,232,339
author_curate_reward""
vote details (1)
@cryptonewslight ·
Welcome development is there version for android operating system 
πŸ‘  
properties (23)
authorcryptonewslight
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t121830882z
categoryeos
json_metadata{"tags":["eos"],"app":"busy/1.0.0"}
created2017-09-29 12:18:36
last_update2017-09-29 12:18:36
depth1
children0
last_payout2017-10-06 12:18:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation177,708,581,207
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,273,125
net_rshares365,427,286
author_curate_reward""
vote details (1)
@cyclingalone ·
I am a C# developer and MS Visual Studio is my favorite IDE.. I like your posts and helpful too..
properties (22)
authorcyclingalone
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t144103101z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:41:03
last_update2017-09-29 14:41:03
depth1
children0
last_payout2017-10-06 14:41:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation218,764,758,511
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,285,207
net_rshares0
@deaconlee ·
Now I'm wishing that I had followed in my older brothers footsteps and became a professional programmer!
properties (22)
authordeaconlee
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t134352461z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:43:54
last_update2017-09-29 13:43:54
depth1
children0
last_payout2017-10-06 13:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length104
author_reputation7,572,634,918,882
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,280,244
net_rshares0
@deep.gohil ·
Great to see linux powered windows for nobel cause. Thanks @tokenika
properties (22)
authordeep.gohil
permlinkre-tokenika-installing-and-running-eos-on-windows-20171003t074936173z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-10-03 07:49:39
last_update2017-10-03 07:49:39
depth1
children0
last_payout2017-10-10 07:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation0
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,643,342
net_rshares0
@dreamien ·
$0.08
Does ubuntu need to be installed before doing this?
πŸ‘  ,
properties (23)
authordreamien
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t142156262z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:21:54
last_update2017-09-29 14:21:54
depth1
children2
last_payout2017-10-06 14:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation72,292,237,036
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,283,558
net_rshares29,226,848,100
author_curate_reward""
vote details (2)
@tokenika ·
$0.20
Ubuntu VM is part of Windows 10 and both systems share the same resources (e.g. the file system). You access your Ubuntu on Windows via a command prompt, pretty much similar to DOS command prompt.

And to answer your question: you need to activate this feature on Windows and then run a quick installation procedure to set it up  - the whole thing takes less than 5 minutes.
πŸ‘  , ,
properties (23)
authortokenika
permlinkre-dreamien-re-tokenika-installing-and-running-eos-on-windows-20170929t143841427z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:38:39
last_update2017-09-29 14:38:39
depth2
children1
last_payout2017-10-06 14:38:39
cashout_time1969-12-31 23:59:59
total_payout_value0.188 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length374
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,284,985
net_rshares74,392,608,836
author_curate_reward""
vote details (3)
@dreamien ·
$0.04
Thanks very much! Setting this up today! Your post has saved me a bunch of hassle setting up dual booting ubuntu, thank you!!!
πŸ‘  
properties (23)
authordreamien
permlinkre-tokenika-re-dreamien-re-tokenika-installing-and-running-eos-on-windows-20170929t144533705z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:45:33
last_update2017-09-29 14:45:33
depth3
children0
last_payout2017-10-06 14:45:33
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation72,292,237,036
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,285,630
net_rshares14,117,980,288
author_curate_reward""
vote details (1)
@edb ·
$0.30
TIL the Windows Subsystem for Linux is a Linux subsystem for Windows.
πŸ‘  , , , , , , , , , , , , ,
properties (23)
authoredb
permlinkre-tokenika-2017929t14144723z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-29 12:14:51
last_update2017-09-29 12:14:51
depth1
children0
last_payout2017-10-06 12:14:51
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation35,341,759,782,104
root_title"Installing and Running EOS on Windows"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,272,791
net_rshares114,514,269,941
author_curate_reward""
vote details (14)
@elneddy ·
I am glad to heard that only from steemit first...i see the future is here
properties (22)
authorelneddy
permlinkre-tokenika-installing-and-running-eos-on-windows-20171006t201943001z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-06 20:19:45
last_update2017-10-06 20:19:45
depth1
children0
last_payout2017-10-13 20:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation59,633,781,782
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,945,211
net_rshares0
@gamzeuzun ·
Thanks for the great article! @tokenika
properties (22)
authorgamzeuzun
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t151532280z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-09-29 15:15:36
last_update2017-09-29 15:15:36
depth1
children0
last_payout2017-10-06 15:15:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation7,627,187,610
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,288,575
net_rshares0
@goncalves ·
Check this new solution, it works in Visual Studio/Windows, to devellop EOS dapps:
https://steemit.com/eos/@mmcs/building-eos-with-visual-studio-2017-for-windows-10
properties (22)
authorgoncalves
permlinkre-tokenika-installing-and-running-eos-on-windows-20171229t183804059z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@mmcs/building-eos-with-visual-studio-2017-for-windows-10"],"app":"steemit/0.1"}
created2017-12-29 18:40:42
last_update2017-12-29 18:40:42
depth1
children0
last_payout2018-01-05 18:40:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation103,112,212
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,922,787
net_rshares0
@gregwarma22 ·
Great post upvoted by @gregwarma22 :)
properties (22)
authorgregwarma22
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t160215662z
categoryeos
json_metadata{"tags":["eos"],"users":["gregwarma22"],"app":"steemit/0.1"}
created2017-09-29 16:02:15
last_update2017-09-29 16:02:15
depth1
children0
last_payout2017-10-06 16:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation30,655,775,123
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,292,821
net_rshares0
@haika ·
Very good
properties (22)
authorhaika
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t180452660z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 18:05:06
last_update2017-09-30 18:05:06
depth1
children0
last_payout2017-10-07 18:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation80,315,094,531
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,399,507
net_rshares0
@heyam ·
Hey! Thanks for this post! I used the first part of the instruction in order to run EOS software on Windows. Now I want to create an image with the Docker but I can't connect. Any ideas?
properties (22)
authorheyam
permlinkre-tokenika-installing-and-running-eos-on-windows-20180604t080626633z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-06-04 08:06:39
last_update2018-06-04 08:06:39
depth1
children0
last_payout2018-06-11 08:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation3,346,125,295
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,167,406
net_rshares0
@illusiveshakel ·
$0.07
Hi! I am a Shakel. I just upvoted you!
Found your post interesting to read. I cant wait to see your post soon. Good Luck for the upcoming update.This article is really very interesting and effective.
πŸ‘  ,
properties (23)
authorillusiveshakel
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t115726159z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 11:51:57
last_update2017-09-29 11:51:57
depth1
children0
last_payout2017-10-06 11:51:57
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation2,061,699,201
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,271,041
net_rshares24,424,356,024
author_curate_reward""
vote details (2)
@iloegbunamagnes ·
nice post
πŸ‘  
properties (23)
authoriloegbunamagnes
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t120134557z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:01:36
last_update2017-09-29 12:01:36
depth1
children0
last_payout2017-10-06 12:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,457,067,592
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,271,767
net_rshares383,698,650
author_curate_reward""
vote details (1)
@jarzonek ·
$0.03
What is the benefit of this?
πŸ‘  
properties (23)
authorjarzonek
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t211904921z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 21:19:03
last_update2017-09-29 21:19:03
depth1
children2
last_payout2017-10-06 21:19:03
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation1,225,992,174,350
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,317,098
net_rshares12,747,302,590
author_curate_reward""
vote details (1)
@tokenika ·
$0.03
The main benefit is that C++ developers using Windows can participate in EOS development without going into the trouble of switching back and forth between two operating systems.
πŸ‘  
properties (23)
authortokenika
permlinkre-jarzonek-re-tokenika-installing-and-running-eos-on-windows-20170929t214822373z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 21:48:21
last_update2017-09-29 21:48:21
depth2
children1
last_payout2017-10-06 21:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,318,876
net_rshares12,473,167,051
author_curate_reward""
vote details (1)
@jarzonek ·
Thanks
properties (22)
authorjarzonek
permlinkre-tokenika-re-jarzonek-re-tokenika-installing-and-running-eos-on-windows-20170929t215111860z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 21:51:09
last_update2017-09-29 21:51:09
depth3
children0
last_payout2017-10-06 21:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation1,225,992,174,350
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,319,040
net_rshares0
@jiehasand ·
Great post. I'm Following. Please follow me..
properties (22)
authorjiehasand
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t132351340z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:23:51
last_update2017-09-29 13:23:51
depth1
children0
last_payout2017-10-06 13:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation11,078,464,731
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,278,601
net_rshares0
@johnchamberlain ·
Hi tokenika, fantastic post thanks for sharing, will try defiantly try this setup. I've been meaning to try running Ubuntu on Windows 10, since watching  [ this video]( https://www.youtube.com/watch?v=9OLKyf3_WX8) last year.
πŸ‘  
properties (23)
authorjohnchamberlain
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t171859474z
categoryeos
json_metadata{"tags":["eos"],"links":["https://www.youtube.com/watch?v=9OLKyf3_WX8"],"app":"steemit/0.1"}
created2017-09-29 17:19:00
last_update2017-09-29 17:19:00
depth1
children0
last_payout2017-10-06 17:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation368,051,311,646
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,299,655
net_rshares2,842,059,836
author_curate_reward""
vote details (1)
@kcfrau ·
Great news for eos investors.

https://steemit.com/eos/@kcfrau/eos-io-is-now-updated-to-inclue-generate-eos-functions-for-non-metamask-users
πŸ‘  
properties (23)
authorkcfrau
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t212119353z
categoryeos
json_metadata{"tags":["eos"],"links":["https://steemit.com/eos/@kcfrau/eos-io-is-now-updated-to-inclue-generate-eos-functions-for-non-metamask-users"],"app":"steemit/0.1"}
created2017-09-29 21:25:21
last_update2017-09-29 21:25:21
depth1
children0
last_payout2017-10-06 21:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation4,741,799,778
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,317,515
net_rshares0
author_curate_reward""
vote details (1)
@keks ·
$0.11
Excellent work! you deserve appreciation. Very interesting!
πŸ‘  ,
properties (23)
authorkeks
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t165744623z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 18:00:15
last_update2017-09-29 18:00:15
depth1
children0
last_payout2017-10-06 18:00:15
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation3,120,009,340,054
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,303,198
net_rshares42,456,452,138
author_curate_reward""
vote details (2)
@kevteh ·
$0.33
Is there a c# version also? Otherwise time to polish my c++
πŸ‘  , ,
properties (23)
authorkevteh
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t104408323z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 10:44:06
last_update2017-09-30 10:44:06
depth1
children2
last_payout2017-10-07 10:44:06
cashout_time1969-12-31 23:59:59
total_payout_value0.322 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation247,486,524,762
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,365,035
net_rshares119,457,055,414
author_curate_reward""
vote details (3)
@tokenika ·
As far as we know there are no plans to port EOS to C#. 

However if you just want to write smart-contracts, in the future you will be able to do it in C# or Java, as Web Assembly (i.e. EOS virtual machine for smart-contracts) will eventually support those higher-level languages. For now it's just C/C++ and soon Rust.
properties (22)
authortokenika
permlinkre-kevteh-re-tokenika-installing-and-running-eos-on-windows-20170930t195128484z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 19:51:27
last_update2017-09-30 19:51:27
depth2
children1
last_payout2017-10-07 19:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length319
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,407,055
net_rshares0
@kevteh ·
$0.30
Thanks for your help
πŸ‘  
properties (23)
authorkevteh
permlinkre-tokenika-re-kevteh-re-tokenika-installing-and-running-eos-on-windows-20170930t204426004z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 20:44:24
last_update2017-09-30 20:44:24
depth3
children0
last_payout2017-10-07 20:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.303 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation247,486,524,762
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,410,354
net_rshares110,544,734,457
author_curate_reward""
vote details (1)
@kyzitemelos93 ·
When I add the following entry in the right-hand side panel to overwrite the default settings: "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe" it says Code language not supported or defined. 
what do?
πŸ‘  
properties (23)
authorkyzitemelos93
permlinkre-tokenika-installing-and-running-eos-on-windows-20171212t030929272z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-12-12 03:09:30
last_update2017-12-12 03:09:30
depth1
children0
last_payout2017-12-19 03:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation114,306,620
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,186,904
net_rshares1,160,527,575
author_curate_reward""
vote details (1)
@larsvader ·
Thanks for the guide. But at the point when i want to run eosiod it can't produce blocks. Instead i get this error over and over:

3504000ms thread-0   producer_plugin.cpp:227       block_production_loo ] Not producing block because it isn't my turn, its eosio

Any idea how to fix this?
πŸ‘  ,
properties (23)
authorlarsvader
permlinkre-tokenika-installing-and-running-eos-on-windows-20180203t130453393z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-02-03 13:04:57
last_update2018-02-03 13:04:57
depth1
children1
last_payout2018-02-10 13:04:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation37,011,761
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,639,525
net_rshares599,100,919
author_curate_reward""
vote details (2)
@larsvader ·
Got it working. At the time of my writing the master branch was in heavy development and should not be used for experimentation. Changing the branch with

Git checkout dawn-2.x

Before building solved the problem. And also check the correct executable is run. Eosd was renamed to eosiod.
πŸ‘  ,
properties (23)
authorlarsvader
permlinkre-larsvader-re-tokenika-installing-and-running-eos-on-windows-20180204t084047803z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2018-02-04 08:40:51
last_update2018-02-04 08:40:51
depth2
children0
last_payout2018-02-11 08:40:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation37,011,761
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,837,163
net_rshares605,245,544
author_curate_reward""
vote details (2)
@mahbubalam ·
all information needed for us.
πŸ‘Ž  
properties (23)
authormahbubalam
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t192815521z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 19:28:30
last_update2017-09-30 19:28:30
depth1
children0
last_payout2017-10-07 19:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation-21,767,208,011
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,405,531
net_rshares-733,199,034
author_curate_reward""
vote details (1)
@muratbaran ·
awesome
πŸ‘  
properties (23)
authormuratbaran
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t135804680z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:58:06
last_update2017-09-29 13:58:06
depth1
children0
last_payout2017-10-06 13:58:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,669,218,612
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,281,548
net_rshares1,119,974,944
author_curate_reward""
vote details (1)
@murtaziqah ·
$0.07
your efforts to make the world more advanced, you deserve appreciation from the world, thank you for the knowledge and the ease you share hopefully useful for all.
πŸ‘  , , ,
properties (23)
authormurtaziqah
permlinkre-tokenika-2017929t194236989z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-29 12:42:45
last_update2017-09-29 12:42:45
depth1
children0
last_payout2017-10-06 12:42:45
cashout_time1969-12-31 23:59:59
total_payout_value0.065 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation-53,261,170,751
root_title"Installing and Running EOS on Windows"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,275,234
net_rshares27,975,761,076
author_curate_reward""
vote details (4)
@oarman ·
$0.07
Is it fast on windows?
πŸ‘  , ,
properties (23)
authoroarman
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t145106492z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 13:51:06
last_update2017-09-29 13:51:06
depth1
children1
last_payout2017-10-06 13:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation325,310,541,712
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,280,913
net_rshares27,630,084,618
author_curate_reward""
vote details (3)
@tokenika ·
$0.17
It works as smoothly as on Linux.

Please note that it actually runs on a Linux VM which is embedded in Windows 10. The point is you can work with the code (e.g. debug it) as if it was running natively on Windows.
πŸ‘  , ,
properties (23)
authortokenika
permlinkre-oarman-re-tokenika-installing-and-running-eos-on-windows-20170929t143050746z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:30:48
last_update2017-09-29 14:30:48
depth2
children0
last_payout2017-10-06 14:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.143 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation5,007,110,235,602
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,284,310
net_rshares61,842,351,225
author_curate_reward""
vote details (3)
@osos ·
nice tuto :) thanks
πŸ‘  
properties (23)
authorosos
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t120837697z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:08:39
last_update2017-09-29 12:08:39
depth1
children0
last_payout2017-10-06 12:08:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation10,381,606,780
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,272,266
net_rshares341,065,467
author_curate_reward""
vote details (1)
@poroto ·
jajajajaja... this is great!!.. go my vote
properties (22)
authorporoto
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t170404209z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 17:04:03
last_update2017-09-29 17:04:03
depth1
children0
last_payout2017-10-06 17:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation2,307,796,542
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,298,376
net_rshares0
@revealer777 ·
looks like the opposite you can install **Ubuntu** to **windows OS** your tutorial is you can install **Windows 10** into **Ubuntu OS** wow thats great @tokenika great job like it
properties (22)
authorrevealer777
permlinkre-tokenika-installing-and-running-eos-on-windows-20171001t143745225z
categoryeos
json_metadata{"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"}
created2017-10-01 14:37:45
last_update2017-10-01 14:37:45
depth1
children0
last_payout2017-10-08 14:37:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation182,538,314,578
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,477,053
net_rshares0
@roniakbar623 ·
cool ..
properties (22)
authorroniakbar623
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t224118383z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 22:41:18
last_update2017-09-29 22:41:18
depth1
children0
last_payout2017-10-06 22:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation899,122,163
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,321,938
net_rshares0
@santigs ·
Awesome tutorial.
Thank you for sharing, now is time to do the homework :)
properties (22)
authorsantigs
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t124941438z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:49:36
last_update2017-09-29 12:49:36
depth1
children0
last_payout2017-10-06 12:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation140,188,596,902,353
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,275,764
net_rshares0
@setapart ·
This article is really inetesting. Will look into it right away.
properties (22)
authorsetapart
permlinkre-tokenika-2017929t22562698z
categoryeos
json_metadata{"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-29 21:56:12
last_update2017-09-29 21:56:12
depth1
children0
last_payout2017-10-06 21:56:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation1,270,483,929,617
root_title"Installing and Running EOS on Windows"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,319,328
net_rshares0
@shahriyar ·
It is new experience for the steemit.i appreciate  you.
properties (22)
authorshahriyar
permlinkre-tokenika-installing-and-running-eos-on-windows-20170930t071446586z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-30 07:14:54
last_update2017-09-30 07:14:54
depth1
children0
last_payout2017-10-07 07:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation49,922,736,609
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,351,437
net_rshares0
@smartgeek ·
This is just awesome.
Thanks for sharing such an informative post.
It was really helpful.
πŸ‘  
properties (23)
authorsmartgeek
permlinkre-tokenika-installing-and-running-eos-on-windows-20171013t062057766z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-10-13 06:20:45
last_update2017-10-13 06:20:45
depth1
children0
last_payout2017-10-20 06:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation303,476,072,740
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,557,405
net_rshares643,851,889
author_curate_reward""
vote details (1)
@stakuza ·
i got bann friend i dont know why :((
πŸ‘Ž  
properties (23)
authorstakuza
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t183909735z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 18:39:09
last_update2017-09-29 18:39:09
depth1
children0
last_payout2017-10-06 18:39:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation22,826,072,371
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,306,157
net_rshares-725,389,111
author_curate_reward""
vote details (1)
@statsmonkey ·
comment
Congratulations, your post received one of the top 10 most powerful upvotes in the last 12 hours. You received an upvote from @dan valued at 230.01 SBD, based on the pending payout at the time the data was extracted.

If you do not wish to receive these messages in future, reply with the word "stop".
properties (22)
authorstatsmonkey
permlinkre-installing-and-running-eos-on-windows-20170929t182849
categoryeos
json_metadata""
created2017-09-29 18:28:51
last_update2017-09-29 18:28:51
depth1
children0
last_payout2017-10-06 18:28:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation503,392,294,628
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,305,374
net_rshares0
@steemitboard ·
Congratulations @tokenika! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@tokenika) Award for the number of upvotes received

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-tokenika-20170929t143208000z
categoryeos
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-09-29 14:32:09
last_update2017-09-29 14:32:09
depth1
children0
last_payout2017-10-06 14:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length695
author_reputation38,975,615,169,260
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,284,434
net_rshares0
@tony-duke ·
This all seemed to me like latin because am not so into programming,,,but it certainly looks good,,, keep the good work up
πŸ‘  
properties (23)
authortony-duke
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t121834442z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 12:18:39
last_update2017-09-29 12:18:39
depth1
children0
last_payout2017-10-06 12:18:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation46,553,960,067,658
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,273,137
net_rshares334,975,012
author_curate_reward""
vote details (1)
@tutorialtest ·
Muy buena aportaciΓ³n sobre linux
properties (22)
authortutorialtest
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t204156834z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 20:41:57
last_update2017-09-29 20:41:57
depth1
children0
last_payout2017-10-06 20:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation486,743,069,753
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,314,489
net_rshares0
@zhouyagen ·
this great
properties (22)
authorzhouyagen
permlinkre-tokenika-installing-and-running-eos-on-windows-20170929t143204087z
categoryeos
json_metadata{"tags":["eos"],"app":"steemit/0.1"}
created2017-09-29 14:32:15
last_update2017-09-29 14:32:15
depth1
children0
last_payout2017-10-06 14:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation347,793,124,400
root_title"Installing and Running EOS on Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,284,441
net_rshares0