Been working with this issue when trying to run a program.
What I did:
Updated my system using the following commands:
sudo apt-get update sudo apt-get upgrade
Installed the necessary dependencies using the following commands:
sudo apt-get install build-essential libssl-dev libdb-dev \ libdb++-dev libboost-all-dev git libssl1.0.0-dbg sudo apt-get install libdb-dev libdb++-dev libboost-all-dev \ libminiupnpc-dev libminiupnpc-dev libevent-dev libcrypto++-dev libgmp3-dev
Extracted the tar file using the following command:
wget gemstone.life/gemcoin-daemon-linux.tar.gz tar -xzvf gemcoin-daemon-linux.tar.gz
Installed the daemon:
chmod +x gemstoned sudo mv gemstoned /usr/bin/
Create the config file:
mkdir $HOME/.gemstone nano $HOME/.gemstone/gemstone.conf
Pasted the following lines in yourcoin.conf:
rpcuser= (left blank for the forum) rpcpassword= (left blank for the forum) rpcallowip=127.0.0.1 listen=1 server=1 txindex=1 daemon=1
Tried starting the node with the following command.
The error I am getting is
error while loading shared libraries: libboost_system.so.1.54.0: cannot open shared object file: No such file or directory
I have used Google, I have researched and read and read about issue and have tried uninstalling, purging, and reinstalling liboost among other things. I am using Ubuntu 16.04. Any help would be appreciated.
Thanks!