Created
September 16, 2024 07:14
-
-
Save GregTonoski/9cd2551cbd3937b86f7ffeb4106786a2 to your computer and use it in GitHub Desktop.
Install Bitcoin Knots 27.1 on Debian Linux
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
#!/bin/sh | |
# root privileges may be needed to install software packages on a system. In such case prepand the script with the command sudo | |
# If the dependedencies are not pre-installed on a system, run initially: sudo apt-get install libevent-pthreads-2.1-7 libminiupnpc17 libnatpmp1 | |
wget -q "https://launchpad.net/~luke-jr/+archive/ubuntu/bitcoinknots/+files/bitcoind_27.1.knots20240801-jammy1_amd64.deb" "https://launchpad.net/~bitcoin/+archive/ubuntu/bitcoin/+files/libdb4.8++_4.8.30-trusty1_amd64.deb" && dpkg -i libdb4.8++_4.8.30-trusty1_amd64.deb && dpkg -i bitcoind_27.1.knots20240801-jammy1_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment