Skip to content

Instantly share code, notes, and snippets.

@zahirsolak
Last active November 24, 2018 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zahirsolak/0d22c77b3496d9d7da7c2fd583cef44e to your computer and use it in GitHub Desktop.
Save zahirsolak/0d22c77b3496d9d7da7c2fd583cef44e to your computer and use it in GitHub Desktop.
sudo apt-get update
sudo apt-get install make gcc git build-essential ufw curl -y
curl -O https://storage.googleapis.com/golang/go1.10.5.linux-amd64.tar.gz
tar -xvf go1.10.5.linux-amd64.tar.gz
sudo mv go /usr/local
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common -y
sudo apt-key fingerprint 0EBFCD88
git clone -b master https://github.com/EthereumCommonwealth/go-callisto.git
cd go-callisto
make geth
sudo cp build/bin/geth /usr/local/bin/
sudo ufw enable
sudo ufw allow 22
sudo ufw allow 8545
sudo ufw allow 30303
sudo ufw status verbose
geth console --etherbase 0x4E862732B120B41fDAF361B249390d2f97Cefc66 --mine --minerthreads 1 --rpc --rpcaddr "0.0.0.0" --rpccorsdomain "*" --rpcvhosts "*" --identity zehirwallet --dashboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment