Last active
January 1, 2019 00:49
-
-
Save pcdinh/24ac375dfcfe8c52076a98f03fb8845e 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 install -y gcc make perl git | |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
sudo apt update -y | |
sudo apt install -y g++-7 libboost-all-dev libssl-dev -y | |
sudo apt -y autoremove | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 --slave /usr/bin/g++ g++ /usr/bin/g++-7 | |
sudo update-alternatives --config gcc | |
sudo wget "https://cmake.org/files/v3.12/cmake-3.12.0-Linux-x86_64.sh" | |
sudo sh cmake-3.12.0-Linux-x86_64.sh --skip-license --prefix=/usr | |
wget https://github.com/BeamMW/beam/archive/testnet4_release.tar.gz | |
tar -xzf testnet4_release.tar.gz | |
cd beam-testnet4_release | |
cmake -DBEAM_NO_QT_UI_WALLET=On -DCMAKE_BUILD_TYPE=Release . | |
make -j4 . | |
# mkdir beam | |
# cd beam | |
# wget https://builds.beam.mw/testnet4/2018.12.28/Release/linux/beam-wallet-cli-1.0.3860.tar.gz | |
# tar -xzf beam-wallet-cli-1.0.3860.tar.gz | |
# rm -f beam-wallet-cli-1.0.3860.tar.gz | |
# beam-wallet | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment