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 update | |
sudo apt-get -y upgrade | |
sudo apt install -y build-essential | |
sudo apt install -y cmake | |
#upgrade cmake (ubuntu 18) | |
wget http://www.cmake.org/files/v3.12/cmake-3.12.1.tar.gz | |
tar -xvzf cmake-3.12.1.tar.gz | |
cd cmake-3.12.1/ |
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
Basic Linux install/setup for Cruzbit wallet/client and Go: | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz | |
sudo tar -xvf go1.12.6.linux-amd64.tar.gz | |
sudo chown -R root:root ./go | |
sudo mv go /usr/local | |
sudo nano ~/.profile |