diff --git a/README.md b/README.md index c235744..fa2d265 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Bitcoin Knots - [datacarrier](page/datacarrier.md) - [Migration Core -> Knots on umbrel](/page/migrationumbrel.md) +- [APT repo for Debian 12](/page/apt.md) DATUM --- diff --git a/page/apt.md b/page/apt.md new file mode 100644 index 0000000..25dee19 --- /dev/null +++ b/page/apt.md @@ -0,0 +1,19 @@ +This steps work on Debian 12. + +1. Get Léo Haf's key and add it to the apt key list: + +``` +wget --quiet -O - https://apt.orangepill.ovh/gpg-pubkey.asc | sudo tee /etc/apt/keyrings/leohaf.asc +``` + +2. Add the repository to your apt repository list and indicate the GPG key to use: + +``` +echo "deb [signed-by=/etc/apt/keyrings/leohaf.asc arch=$(dpkg --print-architecture)] https://apt.orangepill.ovh bookworm main" | sudo tee /etc/apt/sources.list.d/bitcoin-knots.list +``` + +3. Update apt and install Bitcoin Knots: + +``` +sudo apt update && sudo apt install bitcoin-knots +``` \ No newline at end of file