EDIT: I did a fresh install and I'm unable to reproduce this.
Hi, this is a brand new install of Proxmox 8.1 from the ISO image. Fwupd BIOS updates should work on Proxmox as per documentation, but I haven't been able to get them to work out of the box. As per fwupd devs' response to this issue in fwupd GitHub, apparently it's a packaging issue on the Proxmox side. The Proxmox installer sets the OS ID in /etc/os-release to "proxmox" instead of "debian", while fwupd is expecting "debian" because it comes from the standard debian bookworm package, as per installed default /etc/apt/sources.list
As a workaround, I have temporarily changed the OS ID back to debian in order to perform the update:
[.. perform the update, reboot, and pray ..]
Hi, this is a brand new install of Proxmox 8.1 from the ISO image. Fwupd BIOS updates should work on Proxmox as per documentation, but I haven't been able to get them to work out of the box. As per fwupd devs' response to this issue in fwupd GitHub, apparently it's a packaging issue on the Proxmox side. The Proxmox installer sets the OS ID in /etc/os-release to "proxmox" instead of "debian", while fwupd is expecting "debian" because it comes from the standard debian bookworm package, as per installed default /etc/apt/sources.list
As a workaround, I have temporarily changed the OS ID back to debian in order to perform the update:
Code:
sed -i "s/ID=proxmox/ID=debian/" /etc/os-release
Code:
sed -i "s/ID=debian/ID=proxmox/" /etc/os-release
Last edited: