Upgrade 9.0.6 auf 9.1.1

PsyGanja

Member
Jun 20, 2022
18
2
6
Wie kann ich ein Upgrade durchführen? Leider wird es mir per
Code:
apt dist-upgrade
nicht angeboten. Meine debian.sources sieht so aus
Code:
cat /etc/apt/sources.list.d/debian.sources
Types: deb deb-src
URIs: http://deb.debian.org/debian/
Suites: trixie trixie-updates
Components: main non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

Types: deb deb-src
URIs: http://security.debian.org/debian-security/
Suites: trixie-security
Components: main non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

Braucht Ihr noch irgendwelche Infos?
 
Sorry aber da werde ich nicht schlau drauß. Kann mir jemand auf die Sprünge helfen wie ich das anstelle? Oder was ich genau machen muss?
 
Nun, in deinem Schnippsel sind nur die Debian-Sources aufgeführt. Es fehlen die Proxmox spezifischen Elemente.

Schau hier: https://pve.proxmox.com/pve-docs/pve-admin-guide.html#sysadmin_no_subscription_repo

"/etc/apt/sources.list.d/proxmox.sources" fehlt dir möglicherweise. Man kann diese Datei manuell anlegen. Man kann sie aber auch im Web-Gui einfach per Klick hinzufügen: Datacenter --> deinNode --> Updates --> Repositories --> Button "Add" --> Repository "No-subscription".

Und: vor dem "apt dist-upgrade" muss zwingend ein "apt update" laufen, damit die Listen der verfügbaren Pakete aktualisiert wird.

Falls das nicht zum Ziel führt, poste die vollständige Ausgabe von apt update && apt -d -y full-upgrade
 
  • Like
Reactions: Johannes S
Code:
apt update && apt -d -y full-upgrade
Hit:1 http://security.debian.org/debian-security trixie-security InRelease
Hit:2 http://deb.debian.org/debian trixie InRelease                                                                             
Hit:3 http://deb.debian.org/debian trixie-updates InRelease                                                                     
Hit:4 http://download.proxmox.com/debian/ceph-squid trixie InRelease                           
Err:4 http://download.proxmox.com/debian/ceph-squid trixie InRelease
  Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 24B30F06ECC1836A4E5EFECBA7BCD1420BFE778E, which is needed to verify signature.
Hit:5 https://download.docker.com/linux/debian bookworm InRelease
Get:6 http://download.proxmox.com/debian/pve trixie InRelease [2,771 B]
Err:6 http://download.proxmox.com/debian/pve trixie InRelease
  Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 24B30F06ECC1836A4E5EFECBA7BCD1420BFE778E, which is needed to verify signature.
Warning: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: http://download.proxmox.com/debian/ceph-squid trixie InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 24B30F06ECC1836A4E5EFECBA7BCD1420BFE778E, which is needed to verify signature.
Warning: OpenPGP signature verification failed: http://download.proxmox.com/debian/pve trixie InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Missing key 24B30F06ECC1836A4E5EFECBA7BCD1420BFE778E, which is needed to verify signature.
Error: The repository 'http://download.proxmox.com/debian/pve trixie InRelease' is not signed.
Notice: Updating from such a repository can't be done securely, and is therefore disabled by default.
Notice: See apt-secure(8) manpage for repository creation and user configuration details.

Da stimmt wohl etwas mit den Keys nicht.

habe es jetzt hinbekommen mit
Code:
curl -fsSL https://enterprise.proxmox.com/debian/proxmox-release-trixie.gpg \
  -o /usr/share/keyrings/proxmox-archive-keyring.gpg
 
Last edited:
  • Like
Reactions: Bu66as and UdoB