O Gnome Shell foi removido após a atualização do Ubuntu 12.04

1

Agora, quando eu tento instalá-lo ... ele mostra o seguinte erro

sudo apt-get install gnome-shell
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:
 gnome-shell : Depends: libgcr-3-1 (>= 3.4.0) but 3.2.2-2ubuntu4 is to be installed
               Depends: gir1.2-gcr-3 but it is not installable
               Recommends: gnome-contacts but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Como posso instalar o GNOME-Shell?

    
por CMG 02.06.2012 / 08:33

2 respostas

1

sudo apt-get update
sudo apt-get install python-software-properties
sudo apt-add-repository ppa:gnome3-team/gnome3
sudo apt-get update
sudo apt-get install gnome-shell

Eu tive o mesmo problema antes. Esse problema ocorreu depois que eu permiti a "atualização parcial" no gerenciador de atualização, o que causou a remoção do shell do gnome. Eu tento os comandos acima, e então o gnome-shell pode ser instalado.

    
por Che-Hsun Liu 06.06.2012 / 05:42
0

Basta pressionar Ctrl + Alt + T no seu teclado para abrir o Terminal. Quando se abre, execute os comandos abaixo.

sudo apt-get autoremove

sudo apt-get clean

sudo apt-get update

Depois de fazer isso, você pode executar: sudo apt-get install gnome-shell

    
por Mitch 02.06.2012 / 11:10