Could somebody tell me the commands to get blackcoin installed over the terminal?
Asked
Active
Viewed 604 times
1 Answers
3
You may need to slightly modify the following steps for your needs:
- ssh or log into the machine
Make sure that git is installed.
sudo apt-get install git
Clone the github repo
git clone https://github.com/rat4/blackcoin.git
Follow the instructions from the installation documentation which are:
Install the dependencies.
sudo apt-get install build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev
Run the makefile which will compile the program from the source we just downloaded.
cd blackcoin/src make -f makefile.unix
Run the newly created binary.
./blackcoind
There is also a #blackcoin irc channel on freenode where there are friendly blackcoiners happy to walk you through installation.
Zamicol
- 295
- 1
- 2
- 10