I've installed Bitcoin Core on Ubuntu 18.04 (CLI). Now, the version 0.20 of Bitcoin Core is released and I want to upgrade my server to it, but it seems the new version is not included in PPA yet. May you help me to upgrade my Bitcoin Core server to 0.20 in a safe and correct way please?
Asked
Active
Viewed 1,019 times
1 Answers
2
This is how I usually do it. Check the wget links in https://bitcoincore.org/bin
# Download Bitcoin Core packages for Ubuntu
wget https://bitcoincore.org/bin/bitcoin-core-0.20.0/bitcoin-0.20.0-x86_64-linux-gnu.tar.gz
# check the checksum and fingerprint //optional
wget https://bitcoincore.org/bin/bitcoin-core-0.20.0/SHA256SUMS.asc
wget https://bitcoin.org/laanwj-releases.asc
sha256sum --check SHA256SUMS.asc --ignore-missing
>expected: xxx.tar.gz: OK
gpg --import ./laanwj-releases.asc
gpg --refresh-keys
gpg --verify SHA256SUMS.asc
>expected: Good signature from "Wladimir J. van der Laan ..."
# extract, install and check versions of the binaries
tar -xvf bitcoin-0.20.0-x86_64-linux-gnu.tar.gz
sudo install -m 0755 -o root -t /usr/local/bin bitcoin-0.20.0/bin/*
bitcoind --version
>expected: Bitcoin Core version x0.20.0

Tony Sanak
- 1,689
- 5
- 22
sha256sum --check SHA256SUMS.asc --ignore-missing
I receivebitcoin-0.20.0-x86_64-linux-gnu.tar.gz: OK
andsha256sum: WARNING: 20 lines are improperly formatted
– Mohammad Saberi Jun 06 '20 at 10:09gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner.
,gpg: no ultimately trusted keys found
– Mohammad Saberi Jun 07 '20 at 17:16