create account

EOS Build Guide on Ubuntu (Updated) by clayop

View this thread on: hive.blogpeakd.comecency.com
· @clayop · (edited)
$155.58
EOS Build Guide on Ubuntu (Updated)
![eos.jpeg](https://steemitimages.com/DQmbV9dDJg3EKs6iq1G4gmB4gfkg7EdCPsJFEuHfzVf29iU/eos.jpeg)

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)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 131 others
properties (23)
authorclayop
permlinkeos-build-guide-on-ubunbu
categoryeoskorea
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"}
created2017-07-26 18:05:33
last_update2017-08-01 17:12:00
depth0
children30
last_payout2017-08-02 18:05:33
cashout_time1969-12-31 23:59:59
total_payout_value122.894 HBD
curator_payout_value32.690 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,837
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,822,751
net_rshares43,397,718,044,685
author_curate_reward""
vote details (195)
@activedaily ·
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?
properties (22)
authoractivedaily
permlinkre-clayop-eos-build-guide-on-ubunbu-20170803t082659902z
categoryeoskorea
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"}
created2017-08-03 08:27:09
last_update2017-08-03 08:27:09
depth1
children0
last_payout2017-08-10 08:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation0
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,618,999
net_rshares0
@alexpmorris · (edited)
$0.06
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
👍  ,
properties (23)
authoralexpmorris
permlinkre-clayop-eos-build-guide-on-ubunbu-20170730t165426273z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"links":["https://github.com/EOSIO/eos/blob/master/Docker/Dockerfile"],"app":"steemit/0.1"}
created2017-07-30 16:54:27
last_update2017-07-30 16:55:12
depth1
children0
last_payout2017-08-06 16:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length571
author_reputation32,063,874,290,523
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,236,238
net_rshares14,953,967,690
author_curate_reward""
vote details (2)
@apple64 ·
Hope I can test it oneday, but now it seems complicated to me!
properties (22)
authorapple64
permlinkre-clayop-2017727t175244606z
categoryeoskorea
json_metadata{"tags":"eoskorea","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-27 10:52:48
last_update2017-07-27 10:52:48
depth1
children0
last_payout2017-08-03 10:52:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation-134,873,855,056
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,897,905
net_rshares0
@bycz ·
thanks a lot! installation in progress ....
properties (22)
authorbycz
permlinkre-clayop-eos-build-guide-on-ubunbu-20170729t000023032z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-29 00:00:21
last_update2017-07-29 00:00:21
depth1
children0
last_payout2017-08-05 00:00:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation5,674,465,420,480
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,069,329
net_rshares0
@codydeeds ·
So what all can you do with EOS in its current state?
👍  
properties (23)
authorcodydeeds
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t192720926z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 19:27:18
last_update2017-07-26 19:27:18
depth1
children1
last_payout2017-08-02 19:27:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation38,090,771,215,071
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,830,373
net_rshares522,299,963
author_curate_reward""
vote details (1)
@jubz420 ·
i believe fuck all lol someone tell me im wrong
properties (22)
authorjubz420
permlinkre-codydeeds-re-clayop-eos-build-guide-on-ubunbu-20170728t141711042z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-28 14:17:18
last_update2017-07-28 14:17:18
depth2
children0
last_payout2017-08-04 14:17:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation-140,782,202,484
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,023,962
net_rshares0
@cyberspace ·
## 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
👍  
properties (23)
authorcyberspace
permlinkre-clayop-eos-build-guide-on-ubunbu-20170727t230132542z
categoryeoskorea
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"}
created2017-07-27 23:01:45
last_update2017-07-27 23:01:45
depth1
children0
last_payout2017-08-03 23:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length410
author_reputation780,337,768,524
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,960,548
net_rshares510,693,297
author_curate_reward""
vote details (1)
@educatedwarrior ·
Thanks for sharing Clayop.  Your instructions are easy to follow.
properties (22)
authoreducatedwarrior
permlinkre-clayop-eos-build-guide-on-ubunbu-20170728t113632163z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-28 11:36:33
last_update2017-07-28 11:36:33
depth1
children0
last_payout2017-08-04 11:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation394,962,153,250
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,010,568
net_rshares0
@ericfish ·
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 :)
properties (22)
authorericfish
permlinkre-clayop-eos-build-guide-on-ubunbu-20170728t023207560z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-28 02:32:09
last_update2017-07-28 02:32:09
depth1
children1
last_payout2017-08-04 02:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation28,163,344,093
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,974,051
net_rshares0
@clayop ·
It seems dual core + 12G memory is enough for now but it may grow very fast in the real testnet.
👍  
properties (23)
authorclayop
permlinkre-ericfish-re-clayop-eos-build-guide-on-ubunbu-20170728t032036478z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-28 03:20:36
last_update2017-07-28 03:20:36
depth2
children0
last_payout2017-08-04 03:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,977,265
net_rshares1,114,264,994
author_curate_reward""
vote details (1)
@fiveboringgames ·
Really need a way to save posts, as this comment is purely so I can find it later
👍  
properties (23)
authorfiveboringgames
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t181505846z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:15:06
last_update2017-07-26 18:15:06
depth1
children1
last_payout2017-08-02 18:15:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation73,849,148,682,162
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,823,707
net_rshares0
author_curate_reward""
vote details (1)
@clayop ·
Haha manual bookmark... cool :)
properties (22)
authorclayop
permlinkre-fiveboringgames-re-clayop-eos-build-guide-on-ubunbu-20170726t185636598z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:56:36
last_update2017-07-26 18:56:36
depth2
children0
last_payout2017-08-02 18:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,827,607
net_rshares0
@gikitiki ·
I may have to spin up a Linux box to play with this!!!
properties (22)
authorgikitiki
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t184909543z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:48:48
last_update2017-07-26 18:48:48
depth1
children2
last_payout2017-08-02 18:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation16,572,681,158,525
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,826,897
net_rshares0
@benzomatic ·
love me linux box :)
properties (22)
authorbenzomatic
permlinkre-gikitiki-re-clayop-eos-build-guide-on-ubunbu-20170726t222035849z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 22:20:36
last_update2017-07-26 22:20:36
depth2
children0
last_payout2017-08-02 22:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation31,632,631,280
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,844,979
net_rshares0
@clayop ·
You should! It's really lot of fun!
properties (22)
authorclayop
permlinkre-gikitiki-re-clayop-eos-build-guide-on-ubunbu-20170726t185658070z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:56:57
last_update2017-07-26 18:56:57
depth2
children0
last_payout2017-08-02 18:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,827,643
net_rshares0
@heidi-dream · (edited)
Great ~ Thanks 
I will try it later on Ubuntu
properties (22)
authorheidi-dream
permlinkre-clayop-eos-build-guide-on-ubunbu-20170730t034702308z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-30 03:47:03
last_update2017-07-30 03:52:45
depth1
children0
last_payout2017-08-06 03:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation79,485,003,523
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,182,184
net_rshares0
@jakkk ·
that's a nice post, you have discussed things in details
properties (22)
authorjakkk
permlinkre-clayop-eos-build-guide-on-ubunbu-20170727t104432718z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-27 10:44:24
last_update2017-07-27 10:44:24
depth1
children0
last_payout2017-08-03 10:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation35,758,354,932
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,897,272
net_rshares0
@kview ·
Preparation 에서 부터 한단락씩 진행되는건가요???? 위 →아래로 내려오면서 따라하면되는거죠??
properties (22)
authorkview
permlinkre-clayop-eos-build-guide-on-ubunbu-20170730t151056598z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-30 15:10:57
last_update2017-07-30 15:10:57
depth1
children3
last_payout2017-08-06 15:10:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation2,735,222,676,007
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,227,655
net_rshares0
@clayop ·
그렇습니다
properties (22)
authorclayop
permlinkre-kview-re-clayop-eos-build-guide-on-ubunbu-20170730t233036278z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-30 23:30:36
last_update2017-07-30 23:30:36
depth2
children2
last_payout2017-08-06 23:30:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,264,983
net_rshares0
@kview · (edited)
실행을 하니 다음과 같은 문구가 뜨네요. 한줄씩 실행 했습니다.
VMWARE  12  프리버전을 통해서 설치하였습니다. 
![eos결과.jpg](https://steemitimages.com/DQmWxEt2hbMUGWaFt589qUVA6dGbomsqCCGNWucaA63pn2C/eos%EA%B2%B0%EA%B3%BC.jpg)

아 그리고 ..Modify config.ini 부분은 무슨 말인지 이해가 잘안되서요.   
한글로설명좀 부탁드릴게요...ㅜㅜ
properties (22)
authorkview
permlinkre-clayop-re-kview-re-clayop-eos-build-guide-on-ubunbu-20170805t140140555z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"image":["https://steemitimages.com/DQmWxEt2hbMUGWaFt589qUVA6dGbomsqCCGNWucaA63pn2C/eos%EA%B2%B0%EA%B3%BC.jpg"],"app":"steemit/0.1"}
created2017-08-05 14:01:39
last_update2017-08-05 14:06:12
depth3
children1
last_payout2017-08-12 14:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length252
author_reputation2,735,222,676,007
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,852,795
net_rshares0
@malekalmsaddi ·
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 🤔
properties (22)
authormalekalmsaddi
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t224211307z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 22:42:12
last_update2017-07-26 22:42:12
depth1
children0
last_payout2017-08-02 22:42:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation2,690,897,839,449
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,846,632
net_rshares0
@marcinsteem ·
Great guide. I will give it a go.
properties (22)
authormarcinsteem
permlinkre-clayop-eos-build-guide-on-ubunbu-20170729t195459263z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-29 19:55:00
last_update2017-07-29 19:55:00
depth1
children0
last_payout2017-08-05 19:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation4,209,744,950
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,148,520
net_rshares0
@nitinaryan ·
thank you so much..for information..eos i chek it fastaly.....
properties (22)
authornitinaryan
permlinkre-clayop-eos-build-guide-on-ubunbu-20170729t090618593z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-29 09:06:27
last_update2017-07-29 09:06:27
depth1
children0
last_payout2017-08-05 09:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation409,639,062,085
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,100,553
net_rshares0
@prameshtyagi ·
$0.02
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.
👍  
properties (23)
authorprameshtyagi
permlinkre-clayop-eos-build-guide-on-ubunbu-20170729t102536636z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"users":["clayop"],"links":["http://apt.llvm.org/xenial/"],"app":"steemit/0.1"}
created2017-07-29 10:25:45
last_update2017-07-29 10:25:45
depth1
children1
last_payout2017-08-05 10:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length474
author_reputation133,698,299,152,872
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,105,344
net_rshares5,586,960,631
author_curate_reward""
vote details (1)
@cayce · (edited)
$9.26
# 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 ~`
👍  
properties (23)
authorcayce
permlinkre-prameshtyagi-re-clayop-eos-build-guide-on-ubunbu-20170731t055407791z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-31 05:54:12
last_update2017-07-31 06:21:27
depth2
children0
last_payout2017-08-07 05:54:12
cashout_time1969-12-31 23:59:59
total_payout_value6.943 HBD
curator_payout_value2.314 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length770
author_reputation188,364,865,985
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,288,274
net_rshares2,286,077,026,519
author_curate_reward""
vote details (1)
@rondonson ·
Good guide bro.
👍  
properties (23)
authorrondonson
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t212211341z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 21:22:12
last_update2017-07-26 21:22:12
depth1
children0
last_payout2017-08-02 21:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation36,885,057,220,662
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,840,300
net_rshares0
author_curate_reward""
vote details (1)
@zeryius ·
Très bon article.  Merci j'apprends des choses avec vous j'adore votre style d'écriture. 

Cordialement
👍  
properties (23)
authorzeryius
permlinkre-clayop-eos-build-guide-on-ubunbu-20170726t181314085z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:13:24
last_update2017-07-26 18:13:24
depth1
children2
last_payout2017-08-02 18:13:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation424,359,122,739
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,823,532
net_rshares1,160,697,234
author_curate_reward""
vote details (1)
@clayop ·
Merci!
properties (22)
authorclayop
permlinkre-zeryius-re-clayop-eos-build-guide-on-ubunbu-20170726t185615728z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 18:56:15
last_update2017-07-26 18:56:15
depth2
children1
last_payout2017-08-02 18:56:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation270,845,899,918,618
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,827,570
net_rshares0
@zeryius ·
De rien
properties (22)
authorzeryius
permlinkre-clayop-re-zeryius-re-clayop-eos-build-guide-on-ubunbu-20170726t210221094z
categoryeoskorea
json_metadata{"tags":["eoskorea"],"app":"steemit/0.1"}
created2017-07-26 21:02:24
last_update2017-07-26 21:02:24
depth3
children0
last_payout2017-08-02 21:02:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation424,359,122,739
root_title"EOS Build Guide on Ubuntu (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,838,699
net_rshares0