Skip to content

Instantly share code, notes, and snippets.

@reisenmachtfreude
Last active August 19, 2023 21:34
Show Gist options
  • Save reisenmachtfreude/2f8be2f7a7584341539ae95909e95809 to your computer and use it in GitHub Desktop.
Save reisenmachtfreude/2f8be2f7a7584341539ae95909e95809 to your computer and use it in GitHub Desktop.
Install geth on Debian 11 bullseye using ubuntu ppa
su # Run the following commands as root
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
apt-get install ethereum
# Taken from https://linuxconfig.org/ethereum-mining-on-ubuntu-18-04-and-debian
# GETH Manual does not explicitly mention Debian and Ubuntu method is failing https://geth.ethereum.org/docs/install-and-build/installing-geth
# Question abount failing add-apt-repository https://superuser.com/questions/1721918/debian-11-add-apt-repository-warning-apt-key-is-deprecated-no-valid-openpgp
# Start light node
geth --syncmode light
@nengkya
Copy link

nengkya commented Aug 19, 2023

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment