From c5ae47def314463f82b8dd30e9cadae5e0c9a963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Haf?= Date: Wed, 30 Apr 2025 10:39:53 +0200 Subject: [PATCH] add apt repo --- README.md | 1 + page/apt.md | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 page/apt.md 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