Skip to content

Instantly share code, notes, and snippets.

@myneworder
Created February 9, 2019 22:50
Show Gist options
  • Save myneworder/5d212e8aa0355f4e6a829b81e8c64e18 to your computer and use it in GitHub Desktop.
Save myneworder/5d212e8aa0355f4e6a829b81e8c64e18 to your computer and use it in GitHub Desktop.
###
### 1. Download the software to build for Ubuntu Linux x64 using git:
###
# update your system and install ntp
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install ntp
sudo dpkg-reconfigure tzdata # to set your time zone
# Install the build tools
sudo apt-get install gcc g++ cmake make libbz2-dev libdb++-dev libdb-dev
libssl-dev openssl libreadline-dev autoconf libtool git libncurses-dev
build-essential kernel-package libncurses-dev doxygen libboost-all-dev
autotools-dev automake
# you may have to run this on a fresh install and reboot
#sudo dpkg --configure -a
#sudo reboot
# download the P2P node software
git clone https://github.com/bitshares/bitshares-2.git
# build the P2P node software
cd bitshares-2
git checkout bitshares
git describe --tags
git submodule update --init --recursive
cmake -D CMAKE_BUILD_TYPE=Release .
make witness_node cli_wallet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment