its more serious than that. The File sterlincoind is not in the src folder! Here are my full instructions. Can you tell me if I have missed a step? I will post my full guide for the community once I get it working
Installing Sterlingcoin on Rasperry Pi
This guide assumes you have already installed Reddcoin wallet and it is staking
Install dependencies
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb++-dev
sudo apt-get install libboost-all-dev
sudo apt-get install libqrencode-dev
Download Sterlingcoin
git clone
https://github.com/Sterlingcoin/Sterlingcoin-1.6.0.1-Release.gitcd Sterlingcoin-1.6.0.1-Release
cd src
make -f makefile.unix
Create the config
mkdir ~/.Sterlingcoin
nano ~/.SterlingcoinSterlingcoin.conf
copy and paste
Rpcuser=<username>
rpcpassword= <password>
Download the latest sterlingcoin bootstrap to your PC, unzip and upload via SSH (I used Filezilla) to ./Sterlingcoin
Latest bootstrap as of 01/09/2017
http://sterlingcoin.org/SterlingcoinBootstrap796871.zipCreate a Sterlingcoin service
sudo nanoetc/systemd/system/Sterlingcoin.service
Copy and paste
[Unit]
Description=Sterlingcoin
[Service]
User=pi
ExecStart=/home/pi/Sterlingcoin-1.6.0.1-Release/src/sterlingcoind
WorkingDirectory=/home/pi/Sterlingcoin-1.6.0.1-Release/src/
Restart=always
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo systemctl enable Sterlingcoin.service
sudo systemctl start Sterlingcoin.service
check status
sudo systemctl status Sterlingcoin.service