Ubuntu Quebrado 12.10

0

Eu tinha o ubuntu 12.10 instalado e funcionando. Mas de alguma forma eu consegui estragar tudo. Agora, não recebo a tela de login. Ele continua recebendo uma tela preta e o cursor pisca em algo como "verificação de saúde de Júpiter".

Pressionando chaves aleatórias, eu poderia chegar ao terminal.

Eu tentei isso:

 sudo apt-get install ubuntu-desktop

A saída foi:

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:
 ubuntu-desktop : Depends: nautilus but it is not going to be installed
                  Depends: nautilus-sendto but it is not going to be installed
                  Recommends: brasero but it is not going to be installed
                  Recommends: nautilus-share but it is not going to be installed
                  Recommends: transmission-gtk but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Como faço para ir em frente?

    
por Tatsat 01.12.2012 / 14:24

1 resposta

0

Parece que você tem alguns repositórios desativados. Primeiro de tudo, vamos reativá-los com este comando:

 sudo software-properties-gtk -e universe multiverse restricted

Depois disso, instale o ubuntu-desktop :

 sudo apt-get update && sudo apt-get install ubuntu-desktop

OBSERVAÇÃO

Se você não tiver o software-properties-gtk instalado, instale-o com:
sudo apt-get install software-properties-gtk
comando.

    
por Frantique 01.12.2012 / 15:07