Last active
May 26, 2018 22:16
-
-
Save cryptomeow/ba9c54b3d3870e08f6151dd638a9ab70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils | |
sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository ppa:bitcoin/bitcoin | |
sudo apt-get update | |
sudo apt-get install libdb4.8-dev libdb4.8++-dev | |
git clone https://github.com/bitcoin-cored/bitcoin-cored.git | |
cd bitcoin-cored | |
./autogen.sh | |
./configure --without-gui | |
make | |
make install # optional | |
# RUNNING | |
./src/clashicd -printtoconsole | |
# or if `make install`ed | |
clashicd -printconsole | |
# or as a deamon | |
clashicd -daemon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment