Easy install Steemd in Ubuntu Server 16.04 LTS
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y git build-essential cmake libssl-dev libboost-all-dev autoconf autotools-dev doxygen libncurses5-dev libreadline-dev libtool screen libicu-dev libbz2-dev graphviz
cd /home/ubuntu
git clone https://github.com/steemit/steem.git
cd steem
git submodule update --init --recursive
cmake .
make
cd /programs/steemd
screen -dmS steemd ./steemd
screen -r steemd
ctrl+A+D to exit screen
Note: If memory is to low to compile.
cmake -DENABLE_CONTENT_PATCHING=OFF -DLOW_MEMORY_NODE=ON CMakeLists.txt
can just be
git clone --recursive https://github.com/steemit/steem.gitThanks for the guide!
You're missing a space in
screen -r steemd.wow. thanx
I think you meant
cd ./programs/steemdNope
So when you run
makeit creates aprogramsdirectory in your root directory? Not within thesteemdirectory? ... Definitely doesn't happen over here. After fixing that glitch it worked great for me. Thanks for the article btw!/home/ubuntu/steem/programs/steemd./steemd
Yes. And you would be in
/home/ubuntu/steem... so./programs/steemddefinitely exists from that location./programs/steemdwould imply(root_dir)/programs/steemdTherefor, yes, you meant
./programs/steemdor
cd programsthencd steemdor
cd /home/ubuntu/steem/programs/steemd(not ideal for your snippet however since people are likely installing from a more secure user directory, but that's a moot point)But he was not starting instance to be ./something, he was entering directory with cd /programs so he did nothing wrong :)
got into this on debian jesse https://steemit.com/steem/@ceo-of-internet/cannot-install-on-linux
on raspberry pi 2 doesn't have enought memory even with last option, now trying ubuntu...
This guide is not for RPI
but works even there -i presume- since i got raspbian on it, just too low memory.
there might be some RPI virtual stuff u can compile on
Does this still work?