web-dev-qa-db-ja.com

Ubuntu 12.04にCinnamonをインストールし、次のエラーを排除するにはどうすればよいですか。

$ 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.

このPPAを追加しました。

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

次に、次のコマンドを実行しました。

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

最新のCinnamonデスクトップをインストールするにはどうすればよいですか?このエラーを修正するにはどうすればよいですか?

4
jaorizabal

このPPAには、Cinnamonの最新バージョンは含まれていません。開発のペースが速いため、比較的古いものであり、メンテナーはこのPPAを(まだ)更新していません。

そのため、このQ&Aに従ってPPAを削除し、最新バージョンをインストールすることをお勧めします。

方法

Ppa-purgeをインストールする

Sudo apt-get install ppa-purge

PPAをパージします。

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

これは奇妙な問題です。通常、apt-getは、パッケージに必要なすべての依存関係を自動的にインストールします。 Sudo apt-get install cinnamon cinnamon-settings cinnamon-theme libmuffin0 gir1.2-muffin-3.0 libcogl5を実行してCinnamonをインストールする必要があります。

1
Aaron Hill

これはパッケージの依存関係の問題です。

これらをターミナルに入力します。

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

再起動してからCinnamonをインストールします。

それでもCinnamonをインストールできない場合は、GNOME 3をインストールすることをお勧めします。これは役に立たないかもしれませんが、GNOME 3をインストールした後、Cinnamonは動作しました(同じ問題がありました)。

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

次に、Cinnamonを再度インストールします。

1
Emerson Hsieh