LibreOffice removido (e desinstalável) após a atualização do snapshot do Ubuntu 14.04.4

1

Após ter aceitado as atualizações mais recentes para o Ubuntu 14.04 LTS, um "snapshot" (não sei o que era isso) foi instalado. Após a reinicialização recomendada, o sistema é reiniciado sem o LibreOffice.

A reinstalação após o caminho oficialmente recomendado não funcionou. O código está aqui:

a@a-Aspire:~$ sudo apt-get install libreoffice
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:
 libreoffice : Depends: libreoffice-base but it is not going to be installed
               Depends: libreoffice-calc but it is not going to be installed
               Depends: libreoffice-core (= 1:4.4.2-0ubuntu1~ubuntu14.04.1~c42.ppa1) but it is not going to be installed
               Depends: libreoffice-draw but it is not going to be installed
               Depends: libreoffice-impress but it is not going to be installed
               Depends: libreoffice-math but it is not going to be installed
               Depends: libreoffice-report-builder-bin but it is not going to be installed
               Depends: libreoffice-writer but it is not going to be installed
               Depends: libreoffice-avmedia-backend-gstreamer but it is not going to be installed
               Depends: libreoffice-java-common (>= 1:4.4.2~) but it is not going to be installed
               Depends: python3-uno (>= 4.4.0~beta2) but it is not going to be installed
               Recommends: libreoffice-gnome but it is not going to be installed or
                           libreoffice-kde but it is not going to be installed
E: Unable to  correct problems, you have held broken packages.

Por favor ajude-me a reinstalar o LibreOffice. Obrigado :)

    
por alex 29.02.2016 / 17:57

1 resposta

1

Parece que você segurou / quebrou pacotes que sudo apt-get -f install corrigiu

Agora você pode atualizar o sistema abrindo a unidade e executando

update-manager

(atualizador de software do Ubuntu)

Ou você pode correr

sudo apt-get update && sudo apt-get upgrade

Em um terminal. Depois de atualizar, limpe o seu sistema usando

sudo apt-get autoremove 

E você está pronto para instalar o escritório com:

sudo apt-get install libreoffice
    
por DnrDevil 29.02.2016 / 18:19