web-dev-qa-db-fra.com

Comment puis-je installer Cinnamon sur Ubuntu 12.04 et éliminer les erreurs suivantes:

$ Sudo apt-get install cinnamon cinnamon-session cinnamon-settings
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'cinnamon' instead of 'cinnamon-session'
Note, selecting 'cinnamon' instead of 'cinnamon-settings'
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 resolve the situation:

The following packages have unmet dependencies:
 cinnamon : Depends: gir1.2-muffin-3.0 but it is not going to be installed
            Depends: libcogl5 (>= 1.7.4) but it is not installable
            Depends: libmuffin0 (>= 1.0.0-0ubuntu1~precise) but it is not going to be installed
            Recommends: gnome-themes-standard but it is not going to be installed
            Recommends: gnome-session-fallback but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

J'ai ajouté ce PPA:

Sudo add-apt-repository ppa:merlwiz79/cinnamon-ppa

Puis a lancé la commande suivante:

Sudo apt-get update && Sudo apt-get install cinnamon cinnamon-session cinnamon-settings

Comment puis-je installer le dernier ordinateur de bureau Cinnamon? Comment puis-je réparer cette erreur?

4
jaorizabal

Ce PPA ne contient pas la dernière version de Cinnamon. Il est relativement ancien étant donné le rythme de développement rapide et le mainteneur n'a pas (encore) mis à jour ce PPA.

En tant que tel, je vous recommanderais de purger le PPA et d'installer la dernière version conformément à ce Q & A:

comment

Installer ppa-purge

Sudo apt-get install ppa-purge

La purge le ppa:

Sudo apt-get -f install
Sudo ppa-purge ppa:ppa:merlwiz79/cinnamon-ppa
Sudo apt-get update
3
fossfreedom

C'est un problème étrange. Habituellement, apt-get installe automatiquement toutes les dépendances nécessaires pour un paquet. Vous devez exécuter Sudo apt-get installer cannelle cannelle-paramètres cannelle-thème libmuffin0 gir1.2-muffin-3.0 libcogl5 pour installer Cinnamon.

1
Aaron Hill

C'est un problème de dépendance des paquets.

Tapez ceux-ci dans le terminal:

Sudo apt-get install gir1.2-muffin-3.0 libcogl5 libmuffin0

et redémarrez puis installez Cinnamon.

Si vous ne parvenez toujours pas à installer Cinnamon, je vous recommande d’installer GNOME 3. Cela n’aide peut-être pas, mais après avoir installé GNOME 3 Cinnamon, j’ai fonctionné (j’ai également eu le même problème).

Sudo add-apt-repository ppa:gnome3-team/gnome3
Sudo apt-get update
Sudo apt-get install gnome-Shell

Puis réinstallez Cinnamon.

1
Emerson Hsieh