From 9de48a1b111c7b69e3dc42b33281b0ca8a5202c2 Mon Sep 17 00:00:00 2001 From: kapitainsky Date: Fri, 8 Aug 2025 19:02:52 +0200 Subject: [PATCH] Raspberry Pi OS `apt update && apt upgrade` failing Raspberry Pi OS `apt update && apt upgrade` failing https://github.com/wofferl/proxmox-backup-arm64/issues/60 --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 88e231b..172113e 100644 --- a/README.md +++ b/README.md @@ -162,3 +162,15 @@ sudo service dphys-swapfile restart The Raspberry Pi 5 uses a kernel with 16k page-size, which is incompatible with Proxmox Backup Server (jemalloc/Rust). So you need to a 4k kernel on the RPi5 for Proxmox Backup Server to work. + +### Raspberry Pi OS `apt update && apt upgrade` failing (https://github.com/wofferl/proxmox-backup-arm64/issues/60) + +As Proxmos source repository does not work for ARM architecture anyway in order to keep underlying Raspberry Pi OS +up to date by running `apt update && apt upgrade` it is required to comment it out from apt sources. + +``` +sudo sed -i '' 's/^\([^#]\)/#\1/g' /etc/apt/sources.list.d/pbs-enterprise.list + +cat /etc/apt/sources.list.d/pbs-enterprise.list +# deb https://enterprise.proxmox.com/debian/pbs bookworm pbs-enterprise +```