Por que o "indicator-datetime" quebrou as dependências e como posso corrigi-lo?

1

Acabei de atualizar para o Ubuntu 11.10 de 11.04 e relógio / calendário não aparece na barra. Então eu descobri que indicator-datetime não foi instalado. Quando tentei instalá-lo o seguinte erro aparece:

xxx@yyy:/$ sudo apt-get install indicator-datetime
Reading package lists... Done
Building dependency tree       
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:
 indicator-datetime : Depends: libecal1.2-10 (>= 3.2.1) but 3.2.0-0ubuntu1 is to be installed
                      Depends: libedataserver1.2-15 (>= 3.2.1) but 3.2.0-0ubuntu1 is to be installed
                      Depends: libedataserverui-3.0-1 (>= 3.2.1) but 3.2.0-0ubuntu1 is to be installed
E: Unable to correct problems, you have held broken packages.

Eu não sei como resolver isso.

    
por rayo hauno 12.03.2012 / 13:54

2 respostas

1

Esse problema ocorre quando você atualiza alguns pacotes, mas (no momento) certas dependências ainda não foram construídas e estão disponíveis no repositório.

Para resolvê-lo, atualize suas fontes ( sudo apt-get update ) e instale novamente o pacote indicator-datetime .

    
por RolandiXor 12.03.2012 / 15:01
0

Você perdeu pacotes. Execute sudo apt-get install libecal1.2-10 libedataserver1.2-15 libedataserverui-3.0-1 e, em seguida, execute sudo apt-get install indicator-datetime novamente. Deve instalar com sucesso desta vez.

    
por yossile 12.03.2012 / 14:16