 Update: Added GMP installation This is a brief guide of building EOS on Ubuntu 16.04 LTS (Google Compute Engine). I haven't tested on other versions yet. If you verify this instruction works in other versions, please comment. Reporting missing parts and wrong commands is really appreciated too. 우분투 16.04 LTS 버전에서 EOS를 빌드하는 법을 정리해봤습니다. 구글 컴퓨트 엔진 기반으로 테스트했는데, 혹시 다른 버전에서도 동작하는 것을 확인하시면 댓글로 남겨주시면 감사하겠습니다. ## Preparation ~~~ screen -S compile # Optional sudo -i # Enter root ~~~ ## Install Dependencies ~~~ DEBIAN_FRONTEND=noninteractive apt-get install -y sudo wget net-tools ca-certificates unzip echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main" >> /etc/apt/sources.list.d/llvm.list wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - apt-get update DEBIAN_FRONTEND=noninteractive apt-get install -y git-core automake autoconf libtool build-essential pkg-config libtool \ mpi-default-dev libicu-dev python-dev python3-dev libbz2-dev zlib1g-dev libssl-dev \ clang-4.0 lldb-4.0 lld-4.0 rm -rf /var/lib/apt/lists/* update-alternatives --install /usr/bin/clang clang /usr/lib/llvm-4.0/bin/clang 400 update-alternatives --install /usr/bin/clang++ clang++ /usr/lib/llvm-4.0/bin/clang++ 400 ~~~ ## Install cmake 3.9 ~~~ cd /tmp wget https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.sh mkdir /opt/cmake && chmod +x /tmp/cmake-3.9.0-Linux-x86_64.sh sh /tmp/cmake-3.9.0-Linux-x86_64.sh --prefix=/opt/cmake --skip-license ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake ~~~ ## Install boost 1.64 ~~~ cd /tmp && wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz tar zxf boost_1_64_0.tar.gz cd boost_1_64_0 ./bootstrap.sh --with-toolset=clang ./b2 -a -j$(nproc) stage release -sHAVE_ICU=1 --sICU_PATH=/usr ./b2 install --prefix=/usr rm -rf /tmp/boost_1_64_0* ~~~ ## Install secp256k1-zkp from cryptonomex repo ~~~ cd /tmp git clone https://github.com/cryptonomex/secp256k1-zkp.git cd secp256k1-zkp ./autogen.sh ./configure make make install ldconfig rm -rf /tmp/secp256k1-zkp* ~~~ ## Install WASM compiler ~~~ cd /tmp && mkdir wasm-compiler && cd wasm-compiler git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/llvm.git cd llvm/tools && git clone --depth 1 --single-branch --branch release_40 https://github.com/llvm-mirror/clang.git cd .. && mkdir build && cd build cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/opt/wasm -DLLVM_TARGETS_TO_BUILD= \-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly -DCMAKE_BUILD_TYPE=Release ../ make -j$(nproc) install rm -rf /tmp/wasm-compiler ~~~ ### Install GMP ~~~ cd /tmp wget https://gmplib.org/download/gmp/gmp-6.1.2.tar.bz2 tar -xvf gmp-6.1.2.tar.bz2 && cd gmp-6.1.2 ./configure && make && sudo make install make check rm -rf /tmp/gmp-6.1.2 ~~~ ## Exit root ~~~ exit ~~~ ## Install EOS software ~~~ cd ~/ git clone https://github.com/EOSIO/eos.git --recursive cd eos && mkdir build && cd build WASM_LLVM_CONFIG=/opt/wasm/bin/llvm-config cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_INSTALL_PREFIX=/opt/eos .. make -j$(nproc) sudo make install sudo cp ./programs/eosd/eosd /usr/bin/eosd # Optional sudo cp ./programs/eosc/eosc /usr/bin/eosc # Optional cp ../genesis.json ~/ # Move genesis.json to your home directory ~~~ ## Modify config.ini ~~~ cd ~/ eosd # Ctrl+C after run to create config file nano ./data-dir/config.ini ~~~ The following elements should be modified or added ~~~ # Modify genesis-json = "/home/YOURACC/genesis.json" # Uncomment and make sure your home directory is correct enable-stale-production = true # From false to true # Add 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 = inito producer-name = initp producer-name = initq producer-name = initr producer-name = inits producer-name = initt producer-name = initu plugin = eos::producer_plugin plugin = eos::chain_api_plugin # To run eosc ~~~ ## Run eosd ~~~ screen -S eosd eosd ~~~ ## Run eosc ~~~ eosc info ~~~ ## See these documents for details of eosc https://eosio.github.io/eos/group__eosc.html https://github.com/EOSIO/eos/issues/97 *Note*: Example contracts are located in `~/eos/contracts`, for instance, ~~~ eosc setcode currency ./eos/contracts/currency/currency.wast ./eos/contracts/currency/currency.abi ~~~ You can see my yesterday's post about executing example contracts [Here](https://steemit.com/eoskorea/@clayop/i-successfully-executed-eos-smart-contract)
author | clayop |
---|---|
permlink | eos-build-guide-on-ubunbu |
category | eoskorea |
json_metadata | {"tags":["eoskorea","eosdev","eos","coinkorea"],"image":["https://steemitimages.com/DQmbV9dDJg3EKs6iq1G4gmB4gfkg7EdCPsJFEuHfzVf29iU/eos.jpeg"],"links":["https://eosio.github.io/eos/group__eosc.html","https://github.com/EOSIO/eos/issues/97","https://steemit.com/eoskorea/@clayop/i-successfully-executed-eos-smart-contract"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-26 18:05:33 |
last_update | 2017-08-01 17:12:00 |
depth | 0 |
children | 30 |
last_payout | 2017-08-02 18:05:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 122.894 HBD |
curator_payout_value | 32.690 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,837 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,822,751 |
net_rshares | 43,397,718,044,685 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 6,889,916,767,543 | 4% | ||
wackou | 0 | 3,883,599,488,756 | 30% | ||
xeldal | 0 | 345,449,137,612 | 4% | ||
enki | 0 | 1,505,672,201,019 | 20% | ||
sandra | 0 | 19,114,424,161 | 9% | ||
ihashfury | 0 | 2,128,013,367 | 3.24% | ||
boy | 0 | 993,001,073 | 100% | ||
bue-witness | 0 | 1,210,797,114 | 100% | ||
bunny | 0 | 164,305,010 | 100% | ||
ajvest | 0 | 270,142,240,249 | 100% | ||
bue | 0 | 27,009,096,831 | 100% | ||
mini | 0 | 530,742,591 | 100% | ||
moon | 0 | 67,480,328 | 100% | ||
jason | 0 | 15,617,619,295 | 6.21% | ||
taconator | 0 | 158,398,158,270 | 100% | ||
proctologic | 0 | 1,899,793,600 | 2% | ||
healthcare | 0 | 197,791,609 | 100% | ||
daniel.pan | 0 | 312,910,963 | 100% | ||
malcolmjmr | 0 | 9,548,294,874 | 100% | ||
fusan | 0 | 11,890,959,672 | 18% | ||
chitty | 0 | 62,750,193,639 | 10% | ||
helen.tan | 0 | 63,423,488 | 100% | ||
mod-tamichh | 0 | 88,552,691,319 | 100% | ||
educatedwarrior | 0 | 2,609,564,031 | 100% | ||
ratel | 0 | 11,579,789,393 | 65% | ||
peter-parker | 0 | 75,802,793,017 | 100% | ||
omarb | 0 | 351,611,522,476 | 100% | ||
proglobyte | 0 | 12,184,780,852 | 100% | ||
albertogm | 0 | 33,327,559,112 | 100% | ||
lukestokes | 0 | 1,411,884,538,251 | 100% | ||
isteemit | 0 | 17,280,423,894 | 10% | ||
robrigo | 0 | 483,381,367,746 | 100% | ||
strangerarray | 0 | 3,157,392,492 | 10% | ||
ausbitbank | 0 | 803,481,296,134 | 10% | ||
livingfree | 0 | 870,532,265,399 | 56% | ||
gikitiki | 0 | 4,659,134,708 | 25% | ||
bycz | 0 | 65,093,365,536 | 100% | ||
fiveboringgames | 0 | 226,787,386,368 | 100% | ||
ubg | 0 | 408,390,103 | 100% | ||
animus | 0 | 332,865,268 | 1% | ||
azurejasper | 0 | 23,732,640,254 | 27% | ||
celebr1ty | 0 | 42,970,183,547 | 16% | ||
youngkim | 0 | 20,050,617,896 | 80% | ||
proglobyte-m1 | 0 | 8,686,564,114 | 100% | ||
craigslist | 0 | 133,835,214 | 100% | ||
theprophet0 | 0 | 6,350,132,733,499 | 100% | ||
theprophet | 0 | 5,739,413,192 | 100% | ||
tingaling | 0 | 8,280,729,595 | 100% | ||
timcliff | 0 | 446,376,584,593 | 40% | ||
kview | 0 | 271,624,173,143 | 100% | ||
kurtbeil | 0 | 629,942,592,716 | 100% | ||
mr-meteorologist | 0 | 17,908,279,011 | 100% | ||
zentat | 0 | 24,918,897,964 | 100% | ||
solarguy | 0 | 37,128,500,173 | 23% | ||
jyp | 0 | 298,289,940,766 | 20% | ||
dajohns1420 | 0 | 6,555,598,571 | 20% | ||
krnel | 0 | 312,793,251,747 | 25% | ||
darkflame | 0 | 701,883,152 | 1% | ||
edges | 0 | 8,057,763,610 | 100% | ||
funkywanderer | 0 | 3,554,848,080 | 100% | ||
allyouneedtoknow | 0 | 1,430,179,785 | 4% | ||
ibringawareness | 0 | 73,429,827,674 | 100% | ||
bitcoinparadise | 0 | 3,443,392,407 | 12.5% | ||
szoftfst | 0 | 706,985,911 | 30% | ||
hql2016 | 0 | 16,786,118,409 | 100% | ||
steemitawards | 0 | 8,150,135,127 | 100% | ||
steemint | 0 | 23,705,424,418 | 100% | ||
siniceku | 0 | 3,292,668,407 | 100% | ||
slider2990 | 0 | 8,145,618,950 | 10% | ||
black-eye | 0 | 277,386,211 | 100% | ||
koreanguy | 0 | 186,456,210,871 | 100% | ||
xochicotta | 0 | 834,508,257 | 100% | ||
hansikhouse | 0 | 1,423,131,657,681 | 100% | ||
jxwonah | 0 | 229,995,579,828 | 100% | ||
serhanni | 0 | 685,832,787 | 100% | ||
wooklym | 0 | 17,395,680,103 | 100% | ||
v4vapid | 0 | 3,202,600,341,050 | 22% | ||
cryptofreedom | 0 | 56,502,790,521 | 100% | ||
codydeeds | 0 | 207,115,972,440 | 100% | ||
manna | 0 | 4,446,571,381 | 100% | ||
kotturinn | 0 | 31,214,403,354 | 25% | ||
free2play | 0 | 3,041,512,741 | 100% | ||
corvuscoraxx | 0 | 425,917,674 | 19.71% | ||
ejemai | 0 | 1,050,567,339 | 100% | ||
neogia | 0 | 36,258,625,368 | 50% | ||
ramengirl | 0 | 612,291,166,351 | 100% | ||
cljg918 | 0 | 488,711,439,451 | 14% | ||
maximdraws | 0 | 4,192,062,963 | 8% | ||
flyingcam | 0 | 3,384,655,920 | 100% | ||
anwarabdullah | 0 | 1,362,591,987 | 100% | ||
kyoubrian | 0 | 1,231,263,590 | 100% | ||
andilorenzo | 0 | 2,702,306,400 | 100% | ||
yoon | 0 | 1,088,616,169,348 | 100% | ||
daniel.dalo | 0 | 15,282,589,029 | 100% | ||
gogumacat | 0 | 4,352,014,632,578 | 100% | ||
aismor | 0 | 354,238,700 | 100% | ||
the50 | 0 | 22,230,229,759 | 100% | ||
sirryg | 0 | 624,240,228 | 100% | ||
ludorum | 0 | 1,915,930,013,995 | 100% | ||
aarkay | 0 | 236,602,554 | 100% | ||
toru | 0 | 2,126,363,199 | 100% | ||
marcusxman | 0 | 499,361,903 | 1% | ||
sv67216721 | 0 | 3,339,488,870 | 5% | ||
texas-steemem | 0 | 6,566,999,166 | 100% | ||
steemlancer | 0 | 6,588,236,375 | 100% | ||
mandagoi | 0 | 9,404,487,925 | 10% | ||
indepthstory | 0 | 10,082,373,000 | 100% | ||
headliner | 0 | 1,710,910,720 | 100% | ||
woosungchoi | 0 | 3,233,037,201 | 4% | ||
jiahn | 0 | 792,176,180,364 | 100% | ||
shellyduncan | 0 | 1,278,243,412 | 1% | ||
leomichael | 0 | 107,784,438,439 | 13% | ||
jegatx | 0 | 746,998,996 | 100% | ||
tj4real | 0 | 317,071,072 | 1% | ||
lukestokes.mhth | 0 | 48,302,450,187 | 100% | ||
nowherehomestead | 0 | 10,956,358,708 | 100% | ||
teemujvi | 0 | 2,322,900,218 | 100% | ||
spydee97 | 0 | 0 | 100% | ||
poppy.poppers | 0 | 3,812,229,000 | 100% | ||
jamie1128 | 0 | 545,203,029 | 100% | ||
cryptodc | 0 | 0 | 100% | ||
berlinmoonlight | 0 | 10,065,118,929 | 100% | ||
leesongyi | 0 | 947,706,354,533 | 100% | ||
yguhan | 0 | 109,579,001,781 | 100% | ||
flauwy | 0 | 1,214,935,919 | 3% | ||
jackjohanneshemp | 0 | 0 | 100% | ||
benniebanana | 0 | 621,684,279 | 25% | ||
yoons | 0 | 948,456,541,290 | 100% | ||
xornjini | 0 | 3,297,084,757 | 100% | ||
kouloumos | 0 | 9,321,428,307 | 100% | ||
johnlue | 0 | 9,244,602,205 | 85% | ||
mahdiyari | 0 | 160,782,082 | 0.1% | ||
kwakumax | 0 | 312,236,071 | 1% | ||
ideagenerator | 0 | 4,536,150,370 | 100% | ||
mhangami | 0 | 0 | 100% | ||
conexus | 0 | 13,661,115,207 | 100% | ||
krisosa | 0 | 3,063,682,861 | 100% | ||
zeryius | 0 | 325,354,491 | 100% | ||
aurora-0 | 0 | 1,664,733,752 | 100% | ||
winan | 0 | 1,154,898,424 | 100% | ||
sversus | 0 | 281,301,913 | 20.68% | ||
cayce | 0 | 1,546,954,745 | 100% | ||
bilal7 | 0 | 90,982,534 | 100% | ||
shareme | 0 | 1,120,072,831 | 100% | ||
steppingout23 | 0 | 14,808,551,984 | 3% | ||
genemk | 0 | 1,056,234,231 | 100% | ||
boucaron | 0 | 958,699,673 | 100% | ||
ikenna | 0 | 723,997,278 | 100% | ||
tenihil | 0 | 870,798,626 | 100% | ||
jeonghunkim | 0 | 3,300,766,497 | 100% | ||
ericfish | 0 | 1,149,085,775 | 100% | ||
heidi-dream | 0 | 520,562,664 | 100% | ||
pozitronw | 0 | 907,510,876 | 100% | ||
savana | 0 | 702,141,898 | 100% | ||
zero2one | 0 | 1,027,610,914 | 100% | ||
cryptooracle | 0 | 1,142,093,125 | 100% | ||
anaman | 0 | 1,541,268,784 | 100% | ||
misrori | 0 | 12,715,809,653 | 100% | ||
greatness96 | 0 | 67,580,968 | 100% | ||
jakkk | 0 | 970,618,149 | 100% | ||
mukstar | 0 | 10,849,508,770 | 30% | ||
marcinsteem | 0 | 1,160,682,312 | 100% | ||
beatblue | 0 | 3,242,746,633 | 100% | ||
jackidi | 0 | 882,116,946 | 100% | ||
aka.chilala | 0 | 1,160,679,999 | 100% | ||
isabelpena | 0 | 1,063,755,970 | 100% | ||
pandorasbox | 0 | 413,071,108 | 100% | ||
chantha | 0 | 200,921,576 | 100% | ||
kchantha | 0 | 394,926,130 | 100% | ||
prc | 0 | 4,688,915,915 | 100% | ||
aaronaugustine | 0 | 94,923,088 | 100% | ||
dirtyjoe | 0 | 1,162,291,385 | 100% | ||
apple64 | 0 | 554,300,104 | 100% | ||
iliketoast | 0 | 71,240,273 | 10% | ||
beulahlandeu | 0 | 0 | 100% | ||
mae09 | 0 | 494,240,278 | 100% | ||
davidalexander | 0 | 277,280,758 | 100% | ||
cyberspace | 0 | 1,143,870,022 | 100% | ||
jubz420 | 0 | 533,906,629 | 100% | ||
guilhermp | 0 | 1,160,666,337 | 100% | ||
raoji | 0 | 1,160,666,046 | 100% | ||
itman | 0 | 799,175,006 | 100% | ||
ngaakudzwe | 0 | 1,125,843,277 | 100% | ||
stonecone | 0 | 1,137,449,150 | 100% | ||
malekalmsaddi | 0 | 754,430,471 | 100% | ||
genma | 0 | 1,294,660,627 | 100% | ||
sourav | 0 | 789,249,352 | 100% | ||
arifulla | 0 | 934,331,443 | 100% | ||
froiland | 0 | 1,160,659,213 | 100% | ||
eosint | 0 | 306,713,914 | 100% | ||
angelasmith | 0 | 412,032,246 | 100% | ||
arrkiin | 0 | 0 | 100% | ||
iamsubbu | 0 | 0 | 100% | ||
nicholas111 | 0 | 0 | 100% | ||
mnayak | 0 | 0 | 100% |
Hi, the same instructions are here https://github.com/EOSIO/eos/blob/master/Docker/Dockerfile could you optimize this, why we need packages from apt.llvm.org and https://github.com/llvm-mirror/llvm.git and https://github.com/llvm-mirror/clang.git at the same time why not just from github?
author | activedaily |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170803t082659902z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"links":["https://github.com/EOSIO/eos/blob/master/Docker/Dockerfile","https://github.com/llvm-mirror/llvm.git"],"app":"steemit/0.1"} |
created | 2017-08-03 08:27:09 |
last_update | 2017-08-03 08:27:09 |
depth | 1 |
children | 0 |
last_payout | 2017-08-10 08:27: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 | 291 |
author_reputation | 0 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,618,999 |
net_rshares | 0 |
not sure quite what happened in my case, but I tried copy/pasting that first part into root bash shell and it literally wiped out most of my /etc directory, including passwd files, /apt dir, etc - I think some of this was designed more specifically for the docker build (via the Dockerfile template), which is how I've been trying to rebuild EOS after recreating the VM. So far that's been working well. Probably safer though to execute one line at a time, and make sure each one does what it's supposed to... https://github.com/EOSIO/eos/blob/master/Docker/Dockerfile
author | alexpmorris |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170730t165426273z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"links":["https://github.com/EOSIO/eos/blob/master/Docker/Dockerfile"],"app":"steemit/0.1"} |
created | 2017-07-30 16:54:27 |
last_update | 2017-07-30 16:55:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-06 16:54:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 571 |
author_reputation | 32,063,874,290,523 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,236,238 |
net_rshares | 14,953,967,690 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alexpmorris | 0 | 14,953,967,690 | 14% | ||
blockchain-nz | 0 | 0 | 100% |
Hope I can test it oneday, but now it seems complicated to me!
author | apple64 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-clayop-2017727t175244606z | ||||||
category | eoskorea | ||||||
json_metadata | {"tags":"eoskorea","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-07-27 10:52:48 | ||||||
last_update | 2017-07-27 10:52:48 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-03 10:52:48 | ||||||
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 | 62 | ||||||
author_reputation | -134,873,855,056 | ||||||
root_title | "EOS Build Guide on Ubuntu (Updated)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 9,897,905 | ||||||
net_rshares | 0 |
thanks a lot! installation in progress ....
author | bycz |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170729t000023032z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-29 00:00:21 |
last_update | 2017-07-29 00:00:21 |
depth | 1 |
children | 0 |
last_payout | 2017-08-05 00:00: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 | 43 |
author_reputation | 5,674,465,420,480 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,069,329 |
net_rshares | 0 |
So what all can you do with EOS in its current state?
author | codydeeds |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t192720926z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 19:27:18 |
last_update | 2017-07-26 19:27:18 |
depth | 1 |
children | 1 |
last_payout | 2017-08-02 19:27: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 | 53 |
author_reputation | 38,090,771,215,071 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,830,373 |
net_rshares | 522,299,963 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jubz420 | 0 | 522,299,963 | 100% |
i believe fuck all lol someone tell me im wrong
author | jubz420 |
---|---|
permlink | re-codydeeds-re-clayop-eos-build-guide-on-ubunbu-20170728t141711042z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-28 14:17:18 |
last_update | 2017-07-28 14:17:18 |
depth | 2 |
children | 0 |
last_payout | 2017-08-04 14:17: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 | 47 |
author_reputation | -140,782,202,484 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,023,962 |
net_rshares | 0 |
## Just posted this article that talks about EOS as the 4th generation blockchain challenge for Steem. ## https://steemitimages.com/DQmRj5vsX2buwAg5p1SSanzfZQ71NoH4LPKTVvAr5QQKWeK/gold-bar-1.jpg # Analysis of Steem's Economy - A Social Scientist's First Impressions - Part 3/4 in the series. # https://steemit.com/steemit/@cyberspace/analysis-of-steem-s-economy-a-social-scientist-s-first-impressions-part-3-4
author | cyberspace |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170727t230132542z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"image":["https://steemitimages.com/DQmRj5vsX2buwAg5p1SSanzfZQ71NoH4LPKTVvAr5QQKWeK/gold-bar-1.jpg"],"links":["https://steemit.com/steemit/@cyberspace/analysis-of-steem-s-economy-a-social-scientist-s-first-impressions-part-3-4"],"app":"steemit/0.1"} |
created | 2017-07-27 23:01:45 |
last_update | 2017-07-27 23:01:45 |
depth | 1 |
children | 0 |
last_payout | 2017-08-03 23:01: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 | 410 |
author_reputation | 780,337,768,524 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,960,548 |
net_rshares | 510,693,297 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jubz420 | 0 | 510,693,297 | 100% |
Thanks for sharing Clayop. Your instructions are easy to follow.
author | educatedwarrior |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170728t113632163z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-28 11:36:33 |
last_update | 2017-07-28 11:36:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-04 11:36:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 394,962,153,250 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,010,568 |
net_rshares | 0 |
Thanks for the guide. Is there any hardware requirements for the ubuntu server to install EOS? like memery, and cpu? Much appreciated if you can share this as well :)
author | ericfish |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170728t023207560z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-28 02:32:09 |
last_update | 2017-07-28 02:32:09 |
depth | 1 |
children | 1 |
last_payout | 2017-08-04 02: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 | 166 |
author_reputation | 28,163,344,093 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,974,051 |
net_rshares | 0 |
It seems dual core + 12G memory is enough for now but it may grow very fast in the real testnet.
author | clayop |
---|---|
permlink | re-ericfish-re-clayop-eos-build-guide-on-ubunbu-20170728t032036478z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-28 03:20:36 |
last_update | 2017-07-28 03:20:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-04 03:20: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 | 96 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,977,265 |
net_rshares | 1,114,264,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ericfish | 0 | 1,114,264,994 | 100% |
Really need a way to save posts, as this comment is purely so I can find it later
author | fiveboringgames |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t181505846z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:15:06 |
last_update | 2017-07-26 18:15:06 |
depth | 1 |
children | 1 |
last_payout | 2017-08-02 18:15: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 | 81 |
author_reputation | 73,849,148,682,162 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,823,707 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paullintilhac | 0 | 0 | 100% |
Haha manual bookmark... cool :)
author | clayop |
---|---|
permlink | re-fiveboringgames-re-clayop-eos-build-guide-on-ubunbu-20170726t185636598z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:56:36 |
last_update | 2017-07-26 18:56:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-02 18:56: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 | 31 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,827,607 |
net_rshares | 0 |
I may have to spin up a Linux box to play with this!!!
author | gikitiki |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t184909543z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:48:48 |
last_update | 2017-07-26 18:48:48 |
depth | 1 |
children | 2 |
last_payout | 2017-08-02 18:48:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 16,572,681,158,525 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,826,897 |
net_rshares | 0 |
love me linux box :)
author | benzomatic |
---|---|
permlink | re-gikitiki-re-clayop-eos-build-guide-on-ubunbu-20170726t222035849z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 22:20:36 |
last_update | 2017-07-26 22:20:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-02 22:20: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 | 20 |
author_reputation | 31,632,631,280 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,844,979 |
net_rshares | 0 |
You should! It's really lot of fun!
author | clayop |
---|---|
permlink | re-gikitiki-re-clayop-eos-build-guide-on-ubunbu-20170726t185658070z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:56:57 |
last_update | 2017-07-26 18:56:57 |
depth | 2 |
children | 0 |
last_payout | 2017-08-02 18:56: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 | 35 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,827,643 |
net_rshares | 0 |
Great ~ Thanks I will try it later on Ubuntu
author | heidi-dream |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170730t034702308z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-30 03:47:03 |
last_update | 2017-07-30 03:52:45 |
depth | 1 |
children | 0 |
last_payout | 2017-08-06 03:47: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 | 45 |
author_reputation | 79,485,003,523 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,182,184 |
net_rshares | 0 |
that's a nice post, you have discussed things in details
author | jakkk |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170727t104432718z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-27 10:44:24 |
last_update | 2017-07-27 10:44:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-03 10:44:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 35,758,354,932 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,897,272 |
net_rshares | 0 |
Preparation 에서 부터 한단락씩 진행되는건가요???? 위 →아래로 내려오면서 따라하면되는거죠??
author | kview |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170730t151056598z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-30 15:10:57 |
last_update | 2017-07-30 15:10:57 |
depth | 1 |
children | 3 |
last_payout | 2017-08-06 15:10: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 | 2,735,222,676,007 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,227,655 |
net_rshares | 0 |
그렇습니다
author | clayop |
---|---|
permlink | re-kview-re-clayop-eos-build-guide-on-ubunbu-20170730t233036278z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-30 23:30:36 |
last_update | 2017-07-30 23:30:36 |
depth | 2 |
children | 2 |
last_payout | 2017-08-06 23:30: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 | 5 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,264,983 |
net_rshares | 0 |
실행을 하니 다음과 같은 문구가 뜨네요. 한줄씩 실행 했습니다. VMWARE 12 프리버전을 통해서 설치하였습니다.  아 그리고 ..Modify config.ini 부분은 무슨 말인지 이해가 잘안되서요. 한글로설명좀 부탁드릴게요...ㅜㅜ
author | kview |
---|---|
permlink | re-clayop-re-kview-re-clayop-eos-build-guide-on-ubunbu-20170805t140140555z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"image":["https://steemitimages.com/DQmWxEt2hbMUGWaFt589qUVA6dGbomsqCCGNWucaA63pn2C/eos%EA%B2%B0%EA%B3%BC.jpg"],"app":"steemit/0.1"} |
created | 2017-08-05 14:01:39 |
last_update | 2017-08-05 14:06:12 |
depth | 3 |
children | 1 |
last_payout | 2017-08-12 14: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 | 252 |
author_reputation | 2,735,222,676,007 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,852,795 |
net_rshares | 0 |
All of this makes no sense to me but i am no expert.. however since i passed here i found this kinda interating Which is why i am going to try to understand it 🤔
author | malekalmsaddi |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t224211307z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 22:42:12 |
last_update | 2017-07-26 22:42:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-02 22:42: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 | 162 |
author_reputation | 2,690,897,839,449 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,846,632 |
net_rshares | 0 |
Great guide. I will give it a go.
author | marcinsteem |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170729t195459263z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-29 19:55:00 |
last_update | 2017-07-29 19:55:00 |
depth | 1 |
children | 0 |
last_payout | 2017-08-05 19:55: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 | 33 |
author_reputation | 4,209,744,950 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,148,520 |
net_rshares | 0 |
thank you so much..for information..eos i chek it fastaly.....
author | nitinaryan |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170729t090618593z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-29 09:06:27 |
last_update | 2017-07-29 09:06:27 |
depth | 1 |
children | 0 |
last_payout | 2017-08-05 09:06: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 | 62 |
author_reputation | 409,639,062,085 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,100,553 |
net_rshares | 0 |
hello @clayop, I am building it on amazon linux machine. I can run easily upto below command DEBIAN_FRONTEND=noninteractive yum install -y sudo wget net-tools ca-certificates unzip (and note I have to use yum) but next command - echo "deb http://apt.llvm.org/xenial/ llvm-toolchain-xenial-4.0 main" >> /etc/apt/sources.list.d/llvm.list gives following error -bash: /etc/apt/sources.list.d/llvm.list: No such file or directory what to do?? yr help is much appreciated.
author | prameshtyagi |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170729t102536636z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"users":["clayop"],"links":["http://apt.llvm.org/xenial/"],"app":"steemit/0.1"} |
created | 2017-07-29 10:25:45 |
last_update | 2017-07-29 10:25:45 |
depth | 1 |
children | 1 |
last_payout | 2017-08-05 10:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 474 |
author_reputation | 133,698,299,152,872 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,105,344 |
net_rshares | 5,586,960,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
prameshtyagi | 0 | 5,586,960,631 | 1% |
# If Amazon/EC2 is still based on CentOS/Fedora, maybe you could try something like this: # `$ echo 'HOME_DIR=/home/$(whoami)' >> .bashrc; source .bashrc ; curl -O http://releases.llvm.org/4.0.1/clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25.tar.xz; tar xvf clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25.tar.xz; echo 'export PATH=$HOME_DIR/clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25:$PATH' >> .bashrc; source .bashrc; cd ~` OR `$ echo 'HOME_DIR=/home/$(whoami)' >> .bashrc` `$ source .bashrc ` `$ curl -O http://releases.llvm.org/4.0.1/clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25.tar.xz` `$ tar xvf clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25.tar.xz` `$ echo 'export PATH=$HOME_DIR/clang+llvm-4.0.1-x86_64-linux-gnu-Fedora-25:$PATH' >> .bashrc` `$ source .bashrc` `$ cd ~`
author | cayce |
---|---|
permlink | re-prameshtyagi-re-clayop-eos-build-guide-on-ubunbu-20170731t055407791z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-31 05:54:12 |
last_update | 2017-07-31 06:21:27 |
depth | 2 |
children | 0 |
last_payout | 2017-08-07 05:54:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.943 HBD |
curator_payout_value | 2.314 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 770 |
author_reputation | 188,364,865,985 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,288,274 |
net_rshares | 2,286,077,026,519 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clayop | 0 | 2,286,077,026,519 | 100% |
Good guide bro.
author | rondonson |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t212211341z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 21:22:12 |
last_update | 2017-07-26 21:22:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-02 21:22:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 36,885,057,220,662 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,840,300 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nicholas111 | 0 | 0 | 100% |
Très bon article. Merci j'apprends des choses avec vous j'adore votre style d'écriture. Cordialement
author | zeryius |
---|---|
permlink | re-clayop-eos-build-guide-on-ubunbu-20170726t181314085z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:13:24 |
last_update | 2017-07-26 18:13:24 |
depth | 1 |
children | 2 |
last_payout | 2017-08-02 18:13:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 424,359,122,739 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,823,532 |
net_rshares | 1,160,697,234 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shareme | 0 | 1,160,697,234 | 100% |
Merci!
author | clayop |
---|---|
permlink | re-zeryius-re-clayop-eos-build-guide-on-ubunbu-20170726t185615728z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 18:56:15 |
last_update | 2017-07-26 18:56:15 |
depth | 2 |
children | 1 |
last_payout | 2017-08-02 18:56: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 | 6 |
author_reputation | 270,845,899,918,618 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,827,570 |
net_rshares | 0 |
De rien
author | zeryius |
---|---|
permlink | re-clayop-re-zeryius-re-clayop-eos-build-guide-on-ubunbu-20170726t210221094z |
category | eoskorea |
json_metadata | {"tags":["eoskorea"],"app":"steemit/0.1"} |
created | 2017-07-26 21:02:24 |
last_update | 2017-07-26 21:02:24 |
depth | 3 |
children | 0 |
last_payout | 2017-08-02 21:02:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 424,359,122,739 |
root_title | "EOS Build Guide on Ubuntu (Updated)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 9,838,699 |
net_rshares | 0 |