Wenn ich ein brandneues LXC CT mit Ubuntu 21.04 installiere, kann ich software-properties-common
das dafür erforderliche Programm nicht installieren apt-add-repository
.
Bei einer brandneuen Instanz melde ich mich als Root an, führe und aus apt update
und erhalte apt upgrade
dann apt install software-properties-common
diese Ausgabe:
root@kubernetes:~# apt install software-properties-common
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
software-properties-common : Depends: packagekit but it is not installable
E: Unable to correct problems, you have held broken packages.
root@kubernetes:~# apt install packagekit
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libglib2.0-bin : Depends: libglib2.0-0 (= 2.68.1-1~ubuntu21.04.1) but 2.68.0-1 is to be installed
E: Unable to correct problems, you have held broken packages.
Irgendeine Idee, warum ich das nicht auf einer brandneuen Instanz installieren kann? Scheint irgendwie durcheinander zu sein.
Antwort1
Nun, für alle anderen, die dieses Problem haben, bestand die Lösung darin, es zu bearbeiten /etc/apt/sources.list
und Folgendes einzugeben alsnurElement (alles andere auskommentieren):
deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed main
Führen Sie es dann apt update
noch apt upgrade
einmal aus, um das Paket libglib2.0-0 zu reparieren, stellen Sie es dann sources.list
wieder auf den vorherigen Stand zurück (lassen Sie jedoch die vorgeschlagene Zeile stehen), und beim erneuten Installationsversuch funktioniert es software-properties-common
.
Warum Sie dies für eine Standardinstallation tun müssen, ist wirklich verwirrend und eine schreckliche Benutzererfahrung.