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.  # 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).
author | tokenika |
---|---|
permlink | installing-and-running-eos-on-windows |
category | eos |
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"} |
created | 2017-09-29 11:50:00 |
last_update | 2017-09-30 20:43:06 |
depth | 0 |
children | 67 |
last_payout | 2017-10-06 11:50:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 246.677 HBD |
curator_payout_value | 21.388 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.016 HBD |
body_length | 12,251 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 16,270,908 |
net_rshares | 96,816,794,970,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -34,794,905,083 | -100% | ||
dan | 0 | 79,518,485,500,633 | 100% | ||
bue-witness | 0 | 60,539,855 | 100% | ||
fminer05 | 0 | 7,591,226,051 | 100% | ||
bue | 0 | 13,640,089,717 | 100% | ||
moon | 0 | 50,610,246 | 100% | ||
benjojo | 0 | 671,901,981,393 | 25% | ||
healthcare | 0 | 59,337,482 | 100% | ||
tuck-fheman | 0 | 196,518,909,579 | 100% | ||
unosuke | 0 | 20,483,940,313 | 100% | ||
chryspano | 0 | 1,244,064,961,158 | 100% | ||
sandwich | 0 | 0 | 100% | ||
mod-tamichh | 0 | 53,587,684,434 | 100% | ||
max-infeld | 0 | 12,032,430,634 | 100% | ||
bdnoble | 0 | 7,108,105,993 | 100% | ||
ashe-oro | 0 | 5,711,943,227 | 100% | ||
zajac | 0 | 3,294,118,567 | 100% | ||
innuendo | 0 | 2,077,444,114,158 | 100% | ||
michaelx | 0 | 168,184,451,666 | 100% | ||
knopki | 0 | 70,700,484 | 10% | ||
geoffrey | 0 | 1,389,647,776,159 | 77% | ||
superfreek | 0 | 4,473,219,719 | 100% | ||
fyrstikken | 0 | 1,960,290,962 | 0.5% | ||
catchfire | 0 | 55,855,428,186 | 31% | ||
matt-a | 0 | 196,562,372,101 | 5% | ||
slowwalker | 0 | 1,579,860,188,582 | 15% | ||
gikitiki | 0 | 25,641,117,294 | 100% | ||
johnchamberlain | 0 | 2,773,676,147 | 100% | ||
fiveboringgames | 0 | 556,573,219,384 | 100% | ||
ubg | 0 | 267,015,453 | 1% | ||
ace108 | 0 | 38,442,670,502 | 2% | ||
lsc9999 | 0 | 119,914,734,359 | 100% | ||
veerprit | 0 | 6,374,771,425 | 100% | ||
borran | 0 | 47,242,394,819 | 100% | ||
ashwim | 0 | 2,328,680,546 | 100% | ||
runridefly | 0 | 29,733,806,411 | 7% | ||
obivankenobi | 0 | 14,810,592,683 | 100% | ||
team101 | 0 | 26,869,481,649 | 100% | ||
kjartan | 0 | 43,593,475,045 | 100% | ||
demions | 0 | 343,547,936 | 100% | ||
titusfrost | 0 | 30,400,329,002 | 10% | ||
the-ego-is-you | 0 | 14,666,251,368 | 100% | ||
cybernatic | 0 | 217,234,849 | 100% | ||
mjhomb | 0 | 127,428,715,959 | 100% | ||
allyouneedtoknow | 0 | 85,178,419,825 | 100% | ||
prucha | 0 | 0 | 100% | ||
whoib | 0 | 266,282,091 | 100% | ||
natord | 0 | 9,405,619,620 | 100% | ||
anasz | 0 | 9,006,849,212 | 100% | ||
vutran7 | 0 | 457,861,716 | 100% | ||
bleujay | 0 | 1,184,223,638,485 | 100% | ||
rishi556 | 0 | 3,484,817,424 | 100% | ||
tomino | 0 | 0 | 1% | ||
curiesea | 0 | 6,411,661,835 | 100% | ||
daverex | 0 | 1,784,999,749 | 100% | ||
amat | 0 | 4,251,164,298 | 100% | ||
judasp | 0 | 58,739,858,510 | 100% | ||
jmehta | 0 | 3,018,033,264 | 100% | ||
yangrisa | 0 | 41,251,895,037 | 100% | ||
streetartgallery | 0 | 4,134,607,596 | 100% | ||
johnrenald | 0 | 2,539,292,977 | 100% | ||
kchiny | 0 | 0 | 100% | ||
qeysolutions | 0 | 13,730,922,400 | 100% | ||
wooklym | 0 | 273,517,467,512 | 100% | ||
v4vapid | 0 | 2,198,046,459,851 | 15% | ||
saeryn | 0 | 6,653,452,961 | 100% | ||
brandybb | 0 | 2,047,862,572 | 100% | ||
deaconlee | 0 | 2,620,349,426 | 100% | ||
kotturinn | 0 | 19,996,158,567 | 15% | ||
headsink | 0 | 1,874,712,226 | 100% | ||
makedonsk | 0 | 3,339,377,691 | 100% | ||
blockchained | 0 | 103,151,574,644 | 100% | ||
ejemai | 0 | 12,246,702,193 | 44% | ||
steemitboard | 0 | 171,675,620 | 1% | ||
th0mas | 0 | 1,101,778,538 | 100% | ||
amri | 0 | 3,698,582,660 | 100% | ||
faizelrazi | 0 | 7,146,714,851 | 100% | ||
arsenal49 | 0 | 9,992,773,275 | 13% | ||
silverbald | 0 | 0 | 100% | ||
trafalgar | 0 | 2,139,203,994,183 | 10% | ||
dailydogger | 0 | 116,236,059,158 | 100% | ||
kkugel2 | 0 | 183,988,269 | 100% | ||
abhi3700 | 0 | 0 | 100% | ||
jamhuery | 0 | 9,745,993,639 | 30% | ||
herfie | 0 | 582,389,984 | 100% | ||
ryn | 0 | 0 | 100% | ||
practicaleric | 0 | 1,980,193,993 | 100% | ||
aarkay | 0 | 448,299,576 | 100% | ||
clodoweg | 0 | 4,658,444,729 | 100% | ||
belleontherocks | 0 | 16,324,631,959 | 100% | ||
drpuffnstuff | 0 | 58,573,241,088 | 42% | ||
forykw | 0 | 94,567,134,485 | 100% | ||
natxlaw | 0 | 0 | 100% | ||
stackin | 0 | 15,700,011,270 | 1% | ||
beordo | 0 | 7,343,088,753 | 100% | ||
yasein | 0 | 0 | 100% | ||
cptnsolo | 0 | 1,280,509,609 | 100% | ||
mys | 0 | 51,653,698,477 | 100% | ||
todstikles | 0 | 519,303,000 | 100% | ||
ikegass33 | 0 | 77,631,793,774 | 100% | ||
inuk | 0 | 20,960,861,935 | 13% | ||
shikika | 0 | 3,058,518,558 | 100% | ||
satx210 | 0 | 7,967,319,065 | 100% | ||
gyanibilli | 0 | 697,359,566 | 2% | ||
ikhlaq | 0 | 0 | 100% | ||
arsar | 0 | 477,666,341 | 100% | ||
streett | 0 | 621,422,711 | 100% | ||
yunus | 0 | 13,801,986,422 | 100% | ||
romualdo | 0 | 0 | 100% | ||
saylor | 0 | 1,176,143,386 | 100% | ||
sonki999 | 0 | 10,142,129,952 | 46% | ||
devildat | 0 | 1,547,753,250 | 100% | ||
slavix | 0 | 2,307,524,352 | 100% | ||
augustyn | 0 | 49,074,995,569 | 100% | ||
anyway | 0 | 668,482,735 | 100% | ||
kuldeepkaul | 0 | 241,612,800 | 100% | ||
dreamien | 0 | 12,380,123,072 | 100% | ||
tech-trends | 0 | 30,694,745,672 | 100% | ||
shote.said | 0 | 12,713,479,422 | 100% | ||
novale | 0 | 19,544,547,770 | 100% | ||
ericrumor | 0 | 5,484,578,512 | 100% | ||
adamantine | 0 | 2,625,228,559 | 100% | ||
greene0 | 0 | 885,496,031,877 | 100% | ||
javer04 | 0 | 3,883,695,525 | 100% | ||
binkyprod | 0 | 8,211,103,470 | 100% | ||
lefactuoscope | 0 | 5,935,437,559 | 100% | ||
trave160 | 0 | 3,945,739,391 | 100% | ||
alextracy | 0 | 629,056,922 | 100% | ||
zararina | 0 | 2,419,002,104 | 100% | ||
boucaron | 0 | 1,123,499,464 | 100% | ||
innoserv | 0 | 2,189,933,984 | 100% | ||
bentleycapital | 0 | 40,859,113,902 | 100% | ||
pastbastard | 0 | 2,530,700,351 | 100% | ||
devilcat | 0 | 445,465,274 | 100% | ||
yogevm | 0 | 19,503,534,802 | 100% | ||
naturalsoda | 0 | 318,934,563,416 | 100% | ||
andre-verbrick | 0 | 15,337,399,506 | 100% | ||
xepicx | 0 | 251,757,108 | 100% | ||
zero2one | 0 | 660,932,264 | 100% | ||
cosmicboy123 | 0 | 0 | 100% | ||
darreng | 0 | 551,372,800 | 100% | ||
javierjmc | 0 | 0 | 100% | ||
nickl | 0 | 6,628,305,560 | 100% | ||
nickwalshblog | 0 | 1,855,851,069 | 100% | ||
scientistnik | 0 | 0 | 100% | ||
ooowebdesign | 0 | 758,783,725 | 100% | ||
buy-bitcoin | 0 | 771,729,167 | 100% | ||
djnoel | 0 | 816,279,563 | 100% | ||
dickystar | 0 | 0 | 100% | ||
siyulaters | 0 | 405,785,600 | 100% | ||
sreepyeldarb | 0 | 4,004,011,805 | 100% | ||
eltomos | 0 | 619,520,000 | 100% | ||
creativeamsle | 0 | 820,036,201 | 100% | ||
munawir91 | 0 | 2,325,919,912 | 100% | ||
matrix69 | 0 | 412,579,425 | 100% | ||
tolkatore | 0 | 1,169,554,394 | 100% | ||
adjs20 | 0 | 29,630,596,495 | 100% | ||
duekie | 0 | 245,656,174 | 100% | ||
daneftaly | 0 | 978,194,955 | 100% | ||
techtek | 0 | 5,436,411,215 | 100% | ||
jonpopa | 0 | 0 | 100% | ||
bilqis07 | 0 | 686,565,430 | 100% | ||
pearlumie | 0 | 1,745,164,584 | 100% | ||
silc | 0 | 0 | 100% | ||
jbbasics | 0 | 3,645,480,134 | 100% | ||
tom74 | 0 | 2,493,184,909 | 100% | ||
hansenlin | 0 | 7,647,431,577 | 100% | ||
nonongfaizah | 0 | 424,863,215 | 100% | ||
santigs | 0 | 729,286,841 | 100% | ||
hardeepsinh | 0 | 607,129,600 | 100% | ||
bakingsoda | 0 | 508,818,790 | 100% | ||
abdlhakim | 0 | 661,739,089 | 100% | ||
mohammad32 | 0 | 8,360,990,339 | 100% | ||
sivachaitanya | 0 | 0 | 100% | ||
aadarshpahilani | 0 | 227,146,763 | 100% | ||
mmcs | 0 | 619,520,000 | 100% | ||
fiftyshadesofhey | 0 | 716,452,112 | 100% | ||
ferralt | 0 | 0 | 100% | ||
pixomanic | 0 | 859,290,464 | 100% | ||
mrbgz | 0 | 0 | 100% | ||
artoraly | 0 | 0 | 100% | ||
hayat | 0 | 0 | 100% | ||
adi.pisces | 0 | 666,842,050 | 100% | ||
braini | 0 | 5,212,084,911 | 100% | ||
magh | 0 | 694,784,240 | 100% | ||
miyata1987 | 0 | 57,801,877 | 100% | ||
majidawan | 0 | 2,025,782,263 | 100% | ||
sebboo4 | 0 | 662,890,789 | 100% | ||
mrnastykilla | 0 | 117,301,693 | 100% | ||
carlospresley | 0 | 733,887,628 | 100% | ||
faustino | 0 | 1,003,594,703 | 100% | ||
rizwankhan | 0 | 1,196,519,602 | 100% | ||
acactus1013 | 0 | 2,304,107,644 | 100% | ||
zaiageist | 0 | 9,884,471,273 | 100% | ||
veliton77 | 0 | 1,664,202,305 | 100% | ||
kypy24 | 0 | 985,831,749 | 100% | ||
tokenika | 0 | 36,207,441,886 | 100% | ||
deep.gohil | 0 | 1,137,425,259 | 100% | ||
bappask | 0 | 1,083,749,905 | 100% | ||
axorve | 0 | 1,700,125,958 | 100% | ||
primetimesports | 0 | 127,634,395 | 0.02% | ||
kizzbonez | 0 | 179,898,451 | 100% | ||
askim | 0 | 1,050,649,747 | 100% | ||
aprilllicious | 0 | 808,715,946 | 100% | ||
ridaazhar | 0 | 992,377,547 | 100% | ||
airwavez | 0 | 75,612,808 | 25% | ||
i-steem | 0 | 200,622,301 | 100% | ||
filzaart | 0 | 78,412,002 | 100% | ||
suffragator | 0 | 1,010,002,606 | 100% | ||
albanna | 0 | 592,912,778 | 100% | ||
gorex | 0 | 3,301,116,562 | 100% | ||
valikos | 0 | 31,775,072,420 | 100% | ||
hafidg | 0 | 1,004,384,213 | 100% | ||
dimensional-drop | 0 | 290,647,766 | 100% | ||
swatcat | 0 | 311,879,267 | 100% | ||
oluwasegun | 0 | 315,306,330 | 100% | ||
pitwi | 0 | 2,374,425,645 | 100% | ||
arzt | 0 | 1,009,779,980 | 100% | ||
eastrider | 0 | 0 | 100% | ||
cyclingalone | 0 | 832,359,520 | 100% | ||
seriousownsya | 0 | 1,160,664,345 | 100% | ||
wurstcase | 0 | 911,186,162 | 100% | ||
troywilliams | 0 | 0 | 100% | ||
wikifacts | 0 | 954,065,180 | 100% | ||
dealfinder2010 | 0 | 1,141,379,546 | 100% | ||
nikkawesome | 0 | 649,948,712 | 100% | ||
shane1969 | 0 | 1,143,212,911 | 100% | ||
speakingfreely | 0 | 935,830,625 | 100% | ||
redeyeuk | 0 | 1,978,377,425 | 100% | ||
tutorialtest | 0 | 1,294,010,738 | 100% | ||
amine.tamdy | 0 | 986,528,494 | 100% | ||
fakriadi | 0 | 696,397,258 | 100% | ||
koinbot | 0 | 6,188,940,177 | 20% | ||
theheralds | 0 | 914,606,171 | 100% | ||
afukichi | 0 | 524,839,720 | 100% | ||
domcrypto | 0 | 19,526,153,448 | 100% | ||
bdk1970 | 0 | 550,088,179 | 100% | ||
reja | 0 | 934,594,627 | 100% | ||
sweetass | 0 | 400,300,306 | 100% | ||
litovets | 0 | 0 | 100% | ||
alfa-good | 0 | 901,517,067 | 100% | ||
medracen | 0 | 76,213,715 | 100% | ||
zulfanzar | 0 | 1,096,781,469 | 100% | ||
movieperminute | 0 | 6,897,389,199 | 100% | ||
gypsyfortune | 0 | 992,325,322 | 100% | ||
diaehamzawi | 0 | 617,484,945 | 100% | ||
cryptogainer | 0 | 15,755,040,281 | 100% | ||
gregwarma22 | 0 | 1,152,333,929 | 100% | ||
pierlave | 0 | 5,523,768,021 | 100% | ||
kabrony | 0 | 0 | 100% | ||
iloegbunamagnes | 0 | 548,409,585 | 100% | ||
qu3kl0rd | 0 | 483,944,242 | 100% | ||
bax | 0 | 1,160,608,713 | 100% | ||
gamzeuzun | 0 | 133,612,072 | 100% | ||
vandadream | 0 | 358,509,721 | 100% | ||
sparta117 | 0 | 586,107,330 | 100% | ||
vchar | 0 | 0 | 100% | ||
muneerbasha | 0 | 191,500,394 | 100% | ||
cgf117 | 0 | 63,209,121 | 100% | ||
acaele | 0 | 1,143,199,177 | 100% | ||
patelchirag | 0 | 992,320,097 | 100% | ||
cryptonewslight | 0 | 1,361,268,987 | 100% | ||
charlesmore143 | 0 | 1,073,562,460 | 100% | ||
haika | 0 | 121,863,837 | 100% | ||
tagig | 0 | 307,746,625 | 100% | ||
tonioni | 0 | 992,318,814 | 100% | ||
jazielcarballo | 0 | 1,044,879,774 | 100% | ||
druidcruize | 0 | 1,204,269,377 | 100% | ||
betelgeuse28 | 0 | 935,041,742 | 100% | ||
klevn | 0 | 455,164,153 | 100% | ||
dpastramas | 0 | 801,215,886 | 100% | ||
kabukiman | 0 | 1,366,800,609 | 100% | ||
jeeandmee | 0 | 709,095,047 | 100% | ||
dunatos | 0 | 1,085,975,028 | 100% | ||
originalskarn | 0 | 1,160,605,317 | 100% | ||
james.glen | 0 | 1,080,111,601 | 100% | ||
muhammadbadawi | 0 | 993,053,640 | 100% | ||
bangmimi | 0 | 396,389,399 | 100% | ||
apricoet | 0 | 914,815,090 | 100% | ||
shahriyar | 0 | 1,133,572,995 | 100% | ||
murtaziqah | 0 | 395,879,560 | 100% | ||
xoni | 0 | 1,333,713,945 | 100% | ||
habitimprovewise | 0 | 848,140,182 | 100% | ||
riskiaff | 0 | 1,096,767,216 | 100% | ||
adwas33 | 0 | 795,123,981 | 100% | ||
hafidzizou | 0 | 0 | 0% | ||
revealer777 | 0 | 586,993,461 | 100% | ||
ashokpaleti | 0 | 168,286,831 | 100% | ||
faiber | 0 | 318,287,379 | 100% | ||
jhonnyaggo | 0 | 841,433,342 | 100% | ||
lanag | 0 | 1,347,067,757 | 100% | ||
cryptotim | 0 | 81,362,850 | 100% | ||
yavuzgul | 0 | 272,740,262 | 100% | ||
furko18 | 0 | 748,584,945 | 100% | ||
nomangtx | 0 | 1,038,807,799 | 100% | ||
sergey999 | 0 | 203,133,194 | 100% | ||
yusra1 | 0 | 1,056,142,387 | 100% | ||
hasim5164 | 0 | 301,851,264 | 100% | ||
katamori | 0 | 307,710,646 | 100% | ||
sfeemit | 0 | 986,506,400 | 100% | ||
tnydmr | 0 | 725,372,325 | 100% | ||
world-designer | 0 | 1,143,227,338 | 100% | ||
mahimeena | 0 | 1,160,595,663 | 100% | ||
kayleecheyennex | 0 | 1,032,929,986 | 100% | ||
hirakb | 0 | 156,680,278 | 100% | ||
vronalesbg | 0 | 1,050,337,645 | 100% | ||
poroto | 0 | 1,125,775,680 | 100% | ||
jarzonek | 0 | 899,459,919 | 100% | ||
jheyson | 0 | 1,073,548,936 | 100% | ||
tt-dogg | 0 | 13,552,219,818 | 100% | ||
aricyk | 0 | 324,966,156 | 100% | ||
max1994 | 0 | 853,036,158 | 100% | ||
roniakbar623 | 0 | 208,906,812 | 100% | ||
osos | 0 | 800,809,371 | 100% | ||
rahat097 | 0 | 504,857,961 | 100% | ||
spurss | 0 | 1,027,124,688 | 100% | ||
andrekweku | 0 | 220,512,639 | 100% | ||
dollypor | 0 | 1,143,183,836 | 100% | ||
bromedya | 0 | 893,656,321 | 100% | ||
parvaz62 | 0 | 748,582,195 | 100% | ||
darpanhongal | 0 | 1,160,592,483 | 100% | ||
devosdevosi | 0 | 0 | 100% | ||
chase8399 | 0 | 2,061,060,590 | 100% | ||
crypticname | 0 | 835,626,423 | 100% | ||
needcashnow | 0 | 986,503,348 | 100% | ||
zeropointman | 0 | 1,295,030,398 | 100% | ||
markara17 | 0 | 998,109,142 | 100% | ||
khirman | 0 | 150,876,940 | 100% | ||
ryanbreavens | 0 | 963,290,964 | 100% | ||
emraan361 | 0 | 382,995,128 | 100% | ||
mdgazi | 0 | 1,160,591,195 | 100% | ||
jiehasand | 0 | 719,566,411 | 100% | ||
illusiveshakel | 0 | 290,147,711 | 100% | ||
more.please.more | 0 | 74,127,028 | 100% | ||
ru-nner | 0 | 870,443,045 | 100% | ||
tsx92 | 0 | 1,160,590,105 | 100% | ||
dainava | 0 | 847,230,522 | 100% | ||
snxamdf | 0 | 1,160,589,578 | 100% | ||
whiteangels | 0 | 934,274,416 | 100% | ||
abidhussain | 0 | 76,921,308 | 100% | ||
sandeep1411 | 0 | 412,008,014 | 100% | ||
kardinapuu | 0 | 92,846,824 | 100% | ||
powertothepeople | 0 | 905,254,638 | 100% | ||
bobinson | 0 | 0 | 100% | ||
shuvomrz | 0 | 0 | 100% | ||
uni-li-rocks | 0 | 0 | 100% | ||
bindubobinson | 0 | 0 | 100% | ||
angelsmith | 0 | 0 | 100% | ||
aneilpatel | 0 | 0 | 100% | ||
happic | 0 | 0 | 100% | ||
cmichel | 0 | 0 | 1% | ||
ohicklin | 0 | 0 | 100% | ||
nghiacuhanh | 0 | 0 | 100% | ||
giovannicic | 0 | 0 | 100% | ||
kyzitemelos93 | 0 | 0 | 100% | ||
zpzn | 0 | 0 | 100% | ||
sschechter | 0 | 0 | 100% | ||
stefan6969 | 0 | 0 | 100% | ||
salah15 | 0 | 0 | 100% | ||
eslavathram | 0 | 0 | 100% | ||
destalonica | 0 | 0 | 100% | ||
elva123 | 0 | 0 | 100% | ||
lifetoday | 0 | 0 | 100% | ||
chris-c | 0 | 0 | 100% | ||
larsvader | 0 | 0 | 100% | ||
jungch98 | 0 | 0 | 100% | ||
mrmage | 0 | 0 | 100% | ||
philosup | 0 | 0 | 100% | ||
eoline | 0 | 0 | 100% | ||
cbn | 0 | 0 | 100% | ||
rjkz | 0 | 0 | 100% | ||
azarmadr3 | 0 | 0 | 100% |
Wow!! Very informative post. I think I'll give it a try :)
author | adjs20 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t132752349z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:27:57 |
last_update | 2017-09-29 13:27:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 13:27: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 | 58 |
author_reputation | 23,891,816,162,878 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,278,901 |
net_rshares | 0 |
Does ubunto is difficult to install ?
author | agentzero |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t103852988z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 10:38:51 |
last_update | 2017-09-30 10:38:51 |
depth | 1 |
children | 1 |
last_payout | 2017-10-07 10:38:51 |
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 | 37 |
author_reputation | 2,656,035,667,454 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,364,660 |
net_rshares | 0 |
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.
author | tokenika |
---|---|
permlink | re-agentzero-re-tokenika-installing-and-running-eos-on-windows-20170930t194418735z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 19:44:18 |
last_update | 2017-09-30 19:44:18 |
depth | 2 |
children | 0 |
last_payout | 2017-10-07 19:44: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 | 207 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,406,552 |
net_rshares | 0 |
Very informative, thanks
author | ahuruglica |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t224517653z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 22:45:18 |
last_update | 2017-09-30 22:45:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 22:45:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.717 HBD |
curator_payout_value | 0.236 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 14,261,615,182,387 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,417,887 |
net_rshares | 347,263,361,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ikegass33 | 0 | 24,956,851,942 | 35% | ||
ctyptouniverse | 0 | 314,663,466,856 | 100% | ||
ahuruglica | 0 | 7,161,354,871 | 100% | ||
zeropointman | 0 | 481,688,135 | 100% | ||
angelsmith | 0 | 0 | 100% | ||
lispre | 0 | 0 | 100% |
Very good ;)
author | amine.tamdy |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t150209482z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 15:02:09 |
last_update | 2017-09-29 15:02:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 15:02: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 | 12 |
author_reputation | 207,103,936 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,287,290 |
net_rshares | 0 |
Follow me
author | andrisyahreza | ||||||
---|---|---|---|---|---|---|---|
permlink | re-tokenika-2017929t22255170z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-29 15:02:57 | ||||||
last_update | 2017-09-29 15:02:57 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-06 15:02: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 | 9 | ||||||
author_reputation | -12,735,285,830 | ||||||
root_title | "Installing and Running EOS on Windows" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,287,358 | ||||||
net_rshares | 0 |
Wow, I thought it would be much easier
author | anforo |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t054353373z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 05:43:54 |
last_update | 2017-09-30 05:43:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 05:43:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.272 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 2,861,241,802,070 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,345,964 |
net_rshares | 103,729,939,289 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
daverex | 0 | 1,748,756,100 | 100% | ||
anforo | 0 | 101,981,183,189 | 100% | ||
angelsmith | 0 | 0 | 100% | ||
xxd9980 | 0 | 0 | 100% | ||
shellinspector | 0 | 0 | 100% |
my favorite OS is windows cause i think it's very easy to used hehe @tokenika
author | angelsmith |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171012t070903314z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-10-12 07:09:03 |
last_update | 2017-10-12 07:09:03 |
depth | 1 |
children | 0 |
last_payout | 2017-10-19 07:09: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 | 77 |
author_reputation | 4,533,190,043 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,465,626 |
net_rshares | 0 |
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
author | arcange |
---|---|
permlink | re-installing-and-running-eos-on-windows-20170929t173939000z |
category | eos |
json_metadata | "" |
created | 2017-09-30 15:38:06 |
last_update | 2017-09-30 15:38:06 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 15:38:06 |
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 | 208 |
author_reputation | 1,146,606,601,469,178 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,388,218 |
net_rshares | 0 |
im thinking about how to install windows if your using ubuntu. thats the hardest part i know for sure.
author | bakingsoda |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171001t141209002z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-01 14:12:09 |
last_update | 2017-10-01 14:12:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-08 14:12: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 | 102 |
author_reputation | 187,918,290 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,474,962 |
net_rshares | 0 |
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.
author | bangmimi |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t025547278z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-09-30 02:55:51 |
last_update | 2017-09-30 02:55:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 02:55:51 |
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 | 389 |
author_reputation | 13,529,540,589,633 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,336,225 |
net_rshares | 0 |
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.
author | bax |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t203738723z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 20:37:33 |
last_update | 2017-09-29 20:37:33 |
depth | 1 |
children | 1 |
last_payout | 2017-10-06 20:37:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 295 |
author_reputation | 950,134,503,690 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,314,199 |
net_rshares | 14,185,052,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 13,021,438,130 | 100% | ||
rufussed | 0 | 1,163,614,172 | 100% |
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.
author | rufussed |
---|---|
permlink | re-bax-re-tokenika-installing-and-running-eos-on-windows-20171001t064704381z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-01 06:47:06 |
last_update | 2017-10-01 06:47:06 |
depth | 2 |
children | 0 |
last_payout | 2017-10-08 06:47:06 |
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 | 6,482,061,007 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,443,971 |
net_rshares | 781,116,867 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theboogie | 0 | 781,116,867 | 100% | ||
simoncase | 0 | 0 | 100% |
I've always been a fan of operating systems other than windoze.... I have tried many is bootable systems, it's fun to experiment
author | bdk1970 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t120124156z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:01:27 |
last_update | 2017-09-29 12:01:27 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:01: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 | 128 |
author_reputation | 665,987,929,670 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,271,758 |
net_rshares | 353,246,376 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
murtaziqah | 0 | 353,246,376 | 100% |
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.
author | bitjourney |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20180429t121407295z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2018-04-29 12:14:06 |
last_update | 2018-04-29 12:14:06 |
depth | 1 |
children | 0 |
last_payout | 2018-05-06 12:14:06 |
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 | 346 |
author_reputation | 0 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 52,818,000 |
net_rshares | 0 |
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.
author | bleujay |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t132321373z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-09-29 13:23:21 |
last_update | 2017-09-29 13:23:21 |
depth | 1 |
children | 1 |
last_payout | 2017-10-06 13:23:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.438 HBD |
curator_payout_value | 0.144 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 207,869,920,511,893 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,278,565 |
net_rshares | 211,356,910,227 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 103,042,912,608 | 0.25% | ||
englishtchrivy | 0 | 81,077,375,078 | 25% | ||
the-ego-is-you | 0 | 0 | 0% | ||
augustyn | 0 | 27,236,622,541 | 59% | ||
angelsmith | 0 | 0 | 100% |
Sir upbord in my post also
author | mdgazi |
---|---|
permlink | re-bleujay-re-tokenika-installing-and-running-eos-on-windows-20170930t035343916z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:54:30 |
last_update | 2017-09-29 13:54:30 |
depth | 2 |
children | 0 |
last_payout | 2017-10-06 13:54:30 |
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 | 26 |
author_reputation | 4,589,373,966 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,281,214 |
net_rshares | -12,358,992,995 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bleujay | 0 | -12,358,992,995 | -1% |
amazing, do you think that EOS is better than linux ?
author | clixmoney |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t120857804z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:09:12 |
last_update | 2017-09-29 12:09:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:09: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 | 53 |
author_reputation | 708,028,799,822,335 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,272,306 |
net_rshares | 2,071,849,281 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
daverex | 0 | 1,712,512,450 | 100% | ||
murtaziqah | 0 | 359,336,831 | 100% |
Wow, this is really nice, thanks. And there I was doing everything in VirtualBox ...
author | cmichel |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20180308t200051540z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2018-03-08 20:00:51 |
last_update | 2018-03-08 20:00:51 |
depth | 1 |
children | 0 |
last_payout | 2018-03-15 20:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.159 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 1,950,560,061,631 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 43,180,587 |
net_rshares | 41,787,232,339 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cmichel | 0 | 41,787,232,339 | 100% |
Welcome development is there version for android operating system
author | cryptonewslight |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t121830882z |
category | eos |
json_metadata | {"tags":["eos"],"app":"busy/1.0.0"} |
created | 2017-09-29 12:18:36 |
last_update | 2017-09-29 12:18:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:18:36 |
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 | 177,708,581,207 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,273,125 |
net_rshares | 365,427,286 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
murtaziqah | 0 | 365,427,286 | 100% |
I am a C# developer and MS Visual Studio is my favorite IDE.. I like your posts and helpful too..
author | cyclingalone |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t144103101z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:41:03 |
last_update | 2017-09-29 14:41:03 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 14:41: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 | 97 |
author_reputation | 218,764,758,511 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,285,207 |
net_rshares | 0 |
Now I'm wishing that I had followed in my older brothers footsteps and became a professional programmer!
author | deaconlee |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t134352461z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:43:54 |
last_update | 2017-09-29 13:43:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 13:43: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 | 104 |
author_reputation | 7,572,634,918,882 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,280,244 |
net_rshares | 0 |
Great to see linux powered windows for nobel cause. Thanks @tokenika
author | deep.gohil |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171003t074936173z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-10-03 07:49:39 |
last_update | 2017-10-03 07:49:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 07:49: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 | 68 |
author_reputation | 0 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,643,342 |
net_rshares | 0 |
Does ubuntu need to be installed before doing this?
author | dreamien |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t142156262z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:21:54 |
last_update | 2017-09-29 14:21:54 |
depth | 1 |
children | 2 |
last_payout | 2017-10-06 14:21:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 72,292,237,036 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,283,558 |
net_rshares | 29,226,848,100 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 13,295,573,670 | 100% | ||
tokenika | 0 | 15,931,274,430 | 44% |
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.
author | tokenika |
---|---|
permlink | re-dreamien-re-tokenika-installing-and-running-eos-on-windows-20170929t143841427z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:38:39 |
last_update | 2017-09-29 14:38:39 |
depth | 2 |
children | 1 |
last_payout | 2017-10-06 14:38:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.188 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 374 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,284,985 |
net_rshares | 74,392,608,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 14,392,115,828 | 100% | ||
augustyn | 0 | 48,093,495,658 | 100% | ||
dreamien | 0 | 11,906,997,350 | 100% |
Thanks very much! Setting this up today! Your post has saved me a bunch of hassle setting up dual booting ubuntu, thank you!!!
author | dreamien |
---|---|
permlink | re-tokenika-re-dreamien-re-tokenika-installing-and-running-eos-on-windows-20170929t144533705z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:45:33 |
last_update | 2017-09-29 14:45:33 |
depth | 3 |
children | 0 |
last_payout | 2017-10-06 14:45:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 72,292,237,036 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,285,630 |
net_rshares | 14,117,980,288 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 14,117,980,288 | 100% |
TIL the Windows Subsystem for Linux is a Linux subsystem for Windows.
author | edb | ||||||
---|---|---|---|---|---|---|---|
permlink | re-tokenika-2017929t14144723z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-29 12:14:51 | ||||||
last_update | 2017-09-29 12:14:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-06 12:14:51 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.290 HBD | ||||||
curator_payout_value | 0.009 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 69 | ||||||
author_reputation | 35,341,759,782,104 | ||||||
root_title | "Installing and Running EOS on Windows" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,272,791 | ||||||
net_rshares | 114,514,269,941 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 100,307,446,403 | 0.5% | ||
bitcoiner | 0 | 3,896,264,743 | 0.5% | ||
mysteem | 0 | 168,220,135 | 1% | ||
demo | 0 | 162,295,936 | 1% | ||
feruz | 0 | 1,521,508,815 | 1% | ||
esteemapp | 0 | 5,138,673,839 | 1% | ||
meysam | 0 | 751,483,785 | 0.25% | ||
bounties | 0 | 344,949,311 | 1% | ||
steempoll | 0 | 334,842,013 | 1% | ||
tipping | 0 | 304,305,968 | 1% | ||
hicmaster | 0 | 56,939,081 | 0.5% | ||
druidcruize | 0 | 1,180,183,990 | 100% | ||
murtaziqah | 0 | 347,155,922 | 100% | ||
angelsmith | 0 | 0 | 100% |
I am glad to heard that only from steemit first...i see the future is here
author | elneddy |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171006t201943001z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-06 20:19:45 |
last_update | 2017-10-06 20:19:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-13 20:19:45 |
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 | 74 |
author_reputation | 59,633,781,782 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,945,211 |
net_rshares | 0 |
Thanks for the great article! @tokenika
author | gamzeuzun |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t151532280z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-09-29 15:15:36 |
last_update | 2017-09-29 15:15:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 15:15:36 |
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 | 39 |
author_reputation | 7,627,187,610 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,288,575 |
net_rshares | 0 |
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
author | goncalves |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171229t183804059z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://steemit.com/eos/@mmcs/building-eos-with-visual-studio-2017-for-windows-10"],"app":"steemit/0.1"} |
created | 2017-12-29 18:40:42 |
last_update | 2017-12-29 18:40:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-05 18:40: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 | 164 |
author_reputation | 103,112,212 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 25,922,787 |
net_rshares | 0 |
Great post upvoted by @gregwarma22 :)
author | gregwarma22 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t160215662z |
category | eos |
json_metadata | {"tags":["eos"],"users":["gregwarma22"],"app":"steemit/0.1"} |
created | 2017-09-29 16:02:15 |
last_update | 2017-09-29 16:02:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 16:02:15 |
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 | 37 |
author_reputation | 30,655,775,123 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,292,821 |
net_rshares | 0 |
Very good
author | haika |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t180452660z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 18:05:06 |
last_update | 2017-09-30 18:05:06 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 18:05:06 |
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 | 9 |
author_reputation | 80,315,094,531 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,399,507 |
net_rshares | 0 |
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?
author | heyam |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20180604t080626633z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2018-06-04 08:06:39 |
last_update | 2018-06-04 08:06:39 |
depth | 1 |
children | 0 |
last_payout | 2018-06-11 08:06: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 | 186 |
author_reputation | 3,346,125,295 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 59,167,406 |
net_rshares | 0 |
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.
author | illusiveshakel |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t115726159z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 11:51:57 |
last_update | 2017-09-29 11:51:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 11:51:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.051 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 199 |
author_reputation | 2,061,699,201 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,271,041 |
net_rshares | 24,424,356,024 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
augustyn | 0 | 24,046,747,829 | 50% | ||
murtaziqah | 0 | 377,608,195 | 100% |
nice post
author | iloegbunamagnes |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t120134557z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:01:36 |
last_update | 2017-09-29 12:01:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12: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 | 9 |
author_reputation | 1,457,067,592 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,271,767 |
net_rshares | 383,698,650 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
murtaziqah | 0 | 383,698,650 | 100% |
What is the benefit of this?
author | jarzonek |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t211904921z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 21:19:03 |
last_update | 2017-09-29 21:19:03 |
depth | 1 |
children | 2 |
last_payout | 2017-10-06 21:19:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 1,225,992,174,350 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,317,098 |
net_rshares | 12,747,302,590 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 12,747,302,590 | 100% |
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.
author | tokenika |
---|---|
permlink | re-jarzonek-re-tokenika-installing-and-running-eos-on-windows-20170929t214822373z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 21:48:21 |
last_update | 2017-09-29 21:48:21 |
depth | 2 |
children | 1 |
last_payout | 2017-10-06 21:48:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,318,876 |
net_rshares | 12,473,167,051 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 12,473,167,051 | 100% |
Thanks
author | jarzonek |
---|---|
permlink | re-tokenika-re-jarzonek-re-tokenika-installing-and-running-eos-on-windows-20170929t215111860z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 21:51:09 |
last_update | 2017-09-29 21:51:09 |
depth | 3 |
children | 0 |
last_payout | 2017-10-06 21:51: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 | 6 |
author_reputation | 1,225,992,174,350 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,319,040 |
net_rshares | 0 |
Great post. I'm Following. Please follow me..
author | jiehasand |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t132351340z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:23:51 |
last_update | 2017-09-29 13:23:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 13:23:51 |
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 | 11,078,464,731 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,278,601 |
net_rshares | 0 |
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.
author | johnchamberlain |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t171859474z |
category | eos |
json_metadata | {"tags":["eos"],"links":["https://www.youtube.com/watch?v=9OLKyf3_WX8"],"app":"steemit/0.1"} |
created | 2017-09-29 17:19:00 |
last_update | 2017-09-29 17:19:00 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 17:19: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 | 224 |
author_reputation | 368,051,311,646 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,299,655 |
net_rshares | 2,842,059,836 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnchamberlain | 0 | 2,842,059,836 | 100% |
Great news for eos investors. https://steemit.com/eos/@kcfrau/eos-io-is-now-updated-to-inclue-generate-eos-functions-for-non-metamask-users
author | kcfrau |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t212119353z |
category | eos |
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"} |
created | 2017-09-29 21:25:21 |
last_update | 2017-09-29 21:25:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 21:25: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 | 140 |
author_reputation | 4,741,799,778 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,317,515 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kcfrau | 0 | 0 | 100% |
author | keks |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t165744623z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 18:00:15 |
last_update | 2017-09-29 18:00:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 18:00:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.103 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 3,120,009,340,054 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,303,198 |
net_rshares | 42,456,452,138 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
augustyn | 0 | 28,954,247,386 | 59% | ||
keks | 0 | 13,502,204,752 | 100% |
Is there a c# version also? Otherwise time to polish my c++
author | kevteh |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t104408323z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 10:44:06 |
last_update | 2017-09-30 10:44:06 |
depth | 1 |
children | 2 |
last_payout | 2017-10-07 10:44:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.322 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 247,486,524,762 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,365,035 |
net_rshares | 119,457,055,414 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevteh | 0 | 118,983,263,805 | 100% | ||
zeropointman | 0 | 473,791,609 | 100% | ||
angelsmith | 0 | 0 | 100% |
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.
author | tokenika |
---|---|
permlink | re-kevteh-re-tokenika-installing-and-running-eos-on-windows-20170930t195128484z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 19:51:27 |
last_update | 2017-09-30 19:51:27 |
depth | 2 |
children | 1 |
last_payout | 2017-10-07 19:51: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 | 319 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,407,055 |
net_rshares | 0 |
Thanks for your help
author | kevteh |
---|---|
permlink | re-tokenika-re-kevteh-re-tokenika-installing-and-running-eos-on-windows-20170930t204426004z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 20:44:24 |
last_update | 2017-09-30 20:44:24 |
depth | 3 |
children | 0 |
last_payout | 2017-10-07 20:44:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.303 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 247,486,524,762 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,410,354 |
net_rshares | 110,544,734,457 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevteh | 0 | 110,544,734,457 | 100% |
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?
author | kyzitemelos93 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171212t030929272z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-12-12 03:09:30 |
last_update | 2017-12-12 03:09:30 |
depth | 1 |
children | 0 |
last_payout | 2017-12-19 03:09:30 |
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 | 224 |
author_reputation | 114,306,620 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,186,904 |
net_rshares | 1,160,527,575 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kyzitemelos93 | 0 | 1,160,527,575 | 100% |
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?
author | larsvader |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20180203t130453393z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2018-02-03 13:04:57 |
last_update | 2018-02-03 13:04:57 |
depth | 1 |
children | 1 |
last_payout | 2018-02-10 13: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 | 287 |
author_reputation | 37,011,761 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,639,525 |
net_rshares | 599,100,919 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
songzhou | 0 | 0 | 100% | ||
larsvader | 0 | 599,100,919 | 100% |
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.
author | larsvader |
---|---|
permlink | re-larsvader-re-tokenika-installing-and-running-eos-on-windows-20180204t084047803z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2018-02-04 08:40:51 |
last_update | 2018-02-04 08:40:51 |
depth | 2 |
children | 0 |
last_payout | 2018-02-11 08:40:51 |
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 | 287 |
author_reputation | 37,011,761 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,837,163 |
net_rshares | 605,245,544 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
songzhou | 0 | 0 | 100% | ||
larsvader | 0 | 605,245,544 | 100% |
all information needed for us.
author | mahbubalam |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t192815521z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 19:28:30 |
last_update | 2017-09-30 19:28:30 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 19:28:30 |
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 | 30 |
author_reputation | -21,767,208,011 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,405,531 |
net_rshares | -733,199,034 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -733,199,034 | -1% |
awesome
author | muratbaran |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t135804680z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:58:06 |
last_update | 2017-09-29 13:58:06 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 13:58:06 |
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 | 7 |
author_reputation | 1,669,218,612 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,281,548 |
net_rshares | 1,119,974,944 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
muratbaran | 0 | 1,119,974,944 | 100% |
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.
author | murtaziqah | ||||||
---|---|---|---|---|---|---|---|
permlink | re-tokenika-2017929t194236989z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-29 12:42:45 | ||||||
last_update | 2017-09-29 12:42:45 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-06 12:42:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.065 HBD | ||||||
curator_payout_value | 0.008 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 163 | ||||||
author_reputation | -53,261,170,751 | ||||||
root_title | "Installing and Running EOS on Windows" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,275,234 | ||||||
net_rshares | 27,975,761,076 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ashwim | 0 | 2,284,324,726 | 100% | ||
cptnsolo | 0 | 1,254,899,416 | 100% | ||
augustyn | 0 | 24,046,747,829 | 50% | ||
murtaziqah | 0 | 389,789,105 | 100% |
Is it fast on windows?
author | oarman |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t145106492z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 13:51:06 |
last_update | 2017-09-29 13:51:06 |
depth | 1 |
children | 1 |
last_payout | 2017-10-06 13:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.068 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 325,310,541,712 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,280,913 |
net_rshares | 27,630,084,618 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 13,843,844,749 | 100% | ||
oarman | 0 | 9,079,272,424 | 100% | ||
tokenika | 0 | 4,706,967,445 | 13% |
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.
author | tokenika |
---|---|
permlink | re-oarman-re-tokenika-installing-and-running-eos-on-windows-20170929t143050746z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:30:48 |
last_update | 2017-09-29 14:30:48 |
depth | 2 |
children | 0 |
last_payout | 2017-10-06 14:30:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.143 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 213 |
author_reputation | 5,007,110,235,602 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,284,310 |
net_rshares | 61,842,351,225 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 13,569,709,209 | 100% | ||
augustyn | 0 | 47,111,995,747 | 100% | ||
marvirafael | 0 | 1,160,646,269 | 100% |
nice tuto :) thanks
author | osos |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t120837697z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:08:39 |
last_update | 2017-09-29 12:08:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:08: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 | 19 |
author_reputation | 10,381,606,780 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,272,266 |
net_rshares | 341,065,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
murtaziqah | 0 | 341,065,467 | 100% |
jajajajaja... this is great!!.. go my vote
author | poroto |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t170404209z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 17:04:03 |
last_update | 2017-09-29 17:04:03 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 17:04: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 | 42 |
author_reputation | 2,307,796,542 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,298,376 |
net_rshares | 0 |
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
author | revealer777 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171001t143745225z |
category | eos |
json_metadata | {"tags":["eos"],"users":["tokenika"],"app":"steemit/0.1"} |
created | 2017-10-01 14:37:45 |
last_update | 2017-10-01 14:37:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-08 14:37:45 |
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 | 179 |
author_reputation | 182,538,314,578 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,477,053 |
net_rshares | 0 |
cool ..
author | roniakbar623 |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t224118383z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 22:41:18 |
last_update | 2017-09-29 22:41:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 22:41: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 | 7 |
author_reputation | 899,122,163 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,321,938 |
net_rshares | 0 |
Awesome tutorial. Thank you for sharing, now is time to do the homework :)
author | santigs |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t124941438z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:49:36 |
last_update | 2017-09-29 12:49:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:49:36 |
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 | 74 |
author_reputation | 140,188,596,902,353 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,275,764 |
net_rshares | 0 |
This article is really inetesting. Will look into it right away.
author | setapart | ||||||
---|---|---|---|---|---|---|---|
permlink | re-tokenika-2017929t22562698z | ||||||
category | eos | ||||||
json_metadata | {"tags":"eos","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-09-29 21:56:12 | ||||||
last_update | 2017-09-29 21:56:12 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-06 21:56: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 | 64 | ||||||
author_reputation | 1,270,483,929,617 | ||||||
root_title | "Installing and Running EOS on Windows" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,319,328 | ||||||
net_rshares | 0 |
It is new experience for the steemit.i appreciate you.
author | shahriyar |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170930t071446586z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-30 07:14:54 |
last_update | 2017-09-30 07:14:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 07:14: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 | 55 |
author_reputation | 49,922,736,609 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,351,437 |
net_rshares | 0 |
This is just awesome. Thanks for sharing such an informative post. It was really helpful.
author | smartgeek |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20171013t062057766z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-10-13 06:20:45 |
last_update | 2017-10-13 06:20:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 06:20:45 |
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 | 89 |
author_reputation | 303,476,072,740 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,557,405 |
net_rshares | 643,851,889 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smartgeek | 0 | 643,851,889 | 100% |
i got bann friend i dont know why :((
author | stakuza |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t183909735z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 18:39:09 |
last_update | 2017-09-29 18:39:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 18:39: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 | 37 |
author_reputation | 22,826,072,371 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,306,157 |
net_rshares | -725,389,111 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -725,389,111 | -1% |
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".
author | statsmonkey |
---|---|
permlink | re-installing-and-running-eos-on-windows-20170929t182849 |
category | eos |
json_metadata | "" |
created | 2017-09-29 18:28:51 |
last_update | 2017-09-29 18:28:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 18:28:51 |
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 | 302 |
author_reputation | 503,392,294,628 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,305,374 |
net_rshares | 0 |
Congratulations @tokenika! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](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)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-tokenika-20170929t143208000z |
category | eos |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-09-29 14:32:09 |
last_update | 2017-09-29 14:32:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 14:32: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 | 695 |
author_reputation | 38,975,615,169,260 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,284,434 |
net_rshares | 0 |
This all seemed to me like latin because am not so into programming,,,but it certainly looks good,,, keep the good work up
author | tony-duke |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t121834442z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 12:18:39 |
last_update | 2017-09-29 12:18:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 12:18: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 | 122 |
author_reputation | 46,553,960,067,658 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,273,137 |
net_rshares | 334,975,012 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
murtaziqah | 0 | 334,975,012 | 100% |
Muy buena aportaciΓ³n sobre linux
author | tutorialtest |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t204156834z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 20:41:57 |
last_update | 2017-09-29 20:41:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 20:41: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 | 32 |
author_reputation | 486,743,069,753 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,314,489 |
net_rshares | 0 |
this great
author | zhouyagen |
---|---|
permlink | re-tokenika-installing-and-running-eos-on-windows-20170929t143204087z |
category | eos |
json_metadata | {"tags":["eos"],"app":"steemit/0.1"} |
created | 2017-09-29 14:32:15 |
last_update | 2017-09-29 14:32:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 14:32:15 |
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 | 347,793,124,400 |
root_title | "Installing and Running EOS on Windows" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,284,441 |
net_rshares | 0 |