Skip to content

Instantly share code, notes, and snippets.

@makevoid
Last active April 12, 2019 13:57
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 makevoid/07d51492fa1254cda129d4d0332cf77b to your computer and use it in GitHub Desktop.
Save makevoid/07d51492fa1254cda129d4d0332cf77b to your computer and use it in GitHub Desktop.
Instal geth via PPA on Debian
set -xe
apt-get update -y
apt install -y dirmngr
#apt-get install software-properties-common
#add-apt-repository -y ppa:ethereum/ethereum
echo "deb http://ppa.launchpad.net/ethereum/ethereum/ubuntu bionic main
deb-src http://ppa.launchpad.net/ethereum/ethereum/ubuntu bionic main" > /etc/apt/sources.list.d/ethereum-bioinc.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2A518C819BE37D2C2031944D1C52189C923F6CA9
apt-get update -y
apt-get install ethereum -y
# bash <(curl -s https://gist.githubusercontent.com/makevoid/07d51492fa1254cda129d4d0332cf77b/raw/d80349235a9ec10ae8fccffb94ce8ea4f974530a/install-geth.sh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment