Quando lanço um LXC CT totalmente novo com Ubuntu 21.04, não consigo instalar software-properties-common
o que é necessário para o apt-add-repository
.
Em uma instância totalmente nova, faço login como root e executo apt update
and apt upgrade
, apt install software-properties-common
mas obtenho esta saída:
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.
Alguma ideia de por que não consigo instalar isso em uma instância totalmente nova? Parece meio confuso.
Responder1
Bem, para qualquer outra pessoa que esteja tendo esse problema, a solução foi editar /etc/apt/sources.list
e o seguinte como oapenasitem (comente todo o resto):
deb http://archive.ubuntu.com/ubuntu/ hirsute-proposed main
Em seguida, execute apt update
e apt upgrade
novamente para corrigir o pacote libglib2.0-0 e, em seguida, restaure sources.list
para antes (mas deixe a linha proposta) e funcionará ao tentar instalar software-properties-common
novamente.
Por que você precisa fazer isso para uma instalação padrão é realmente confuso e uma experiência terrível para o usuário.