From 7bd6b5a1084669316f04ce974c5a2b49edf656c5 Mon Sep 17 00:00:00 2001 From: urza Date: Fri, 21 May 2021 13:51:11 +0200 Subject: [PATCH] readme: fix ubuntu installation instructions I have verified that this results in working bitcoin core and c-lightning on fresh Ubuntu 20.04 server installation. This is also consistent with instructions in doc/INSTALL.md Fixes: #4538 Reported-By: @urza Changelog-None: readme change only --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42d38f755..9818ef691 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,10 @@ For the impatient here's the gist of it for Ubuntu: ```bash sudo apt-get install -y software-properties-common -sudo add-apt-repository -u ppa:bitcoin/bitcoin sudo add-apt-repository -u ppa:lightningnetwork/ppa -sudo apt-get install bitcoind lightningd +sudo apt-get install lightningd snapd +sudo snap install bitcoin-core +sudo ln -s /snap/bitcoin-core/current/bin/bitcoin{d,-cli} /usr/local/bin/ ``` ### Starting `lightningd`