👉 Bitcoin Core 27.0 released
Steps to Upgrade Your Bitcoin Core Node to v27.0 on Linux:
- Check your bitcoin version
bitcoin-cli --version
- Go to your downloads directory
cd ~/Downloads
- Download the release for your platform and wait for the file to finish downloading (Linux in my case)
wget https://bitcoincore.org/bin/bitcoin-core-27.0/bitcoin-27.0-x86_64-linux-gnu.tar.gz
- Download the list of cryptographic checksums: SHA256SUMS
wget https://bitcoincore.org/bin/bitcoin-core-27.0/SHA256SUMS
- Download the signatures attesting to validity of the checksums: SHA256SUMS.asc
wget https://bitcoincore.org/bin/bitcoin-core-27.0/SHA256SUMS.asc
- Verify that the checksum of the release file is listed in the checksums file
sha256sum --ignore-missing --check SHA256SUMS
- Verify that the checksums file is PGP signed by a sufficient amount of keys you trust and have imported into your keychain
gpg --verify SHA256SUMS.asc
- Extract the contents
tar xvzf bitcoin-27.0-x86_64-linux-gnu.tar.gz
- Stop bitcoind service and wait until it has completely shut down (which might take a few minutes in some cases)
sudo systemctl stop bitcoind
- Install the contents of the extracted bin subdirectory into the /usr/local/bin directory using the the install command
sudo install -m 0755 -o root -g root -t /usr/local/bin bitcoin-27.0/bin/*
- Start Bitcoind service
sudo systemctl start bitcoind
- Check your bitcoin version
bitcoin-cli --version
“Bitcoin Core 27.0 is a maintenance release of the network’s predominant full node implementation. Its release notes describe several bug fixes.” - Bitcoin Core v27.0 release notes
Sources:
https://bitcoincore.org/en/releases/27.0/
https://bitcoin.org/en/full-node#linux-instructions
https://github.com/bitcoin/bitcoin/releases/tag/v27.0
https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-27.0.md