Last active
September 21, 2024 18:27
-
-
Save reisenmachtfreude/2f8be2f7a7584341539ae95909e95809 to your computer and use it in GitHub Desktop.
Install geth on Debian 11 bullseye using ubuntu ppa
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice