web-dev-qa-db-ja.com

シナプスタッチパッドドライバーの依存関係が満たされていない

Lenovo S21e-20にUbuntu 14.04.2をインストールしています。入力中に2本指でスクロールしたり、タッチパッドをサスペンドしたりするために、xserver-xorg-input-synapticsをインストールしたかったのですが、壊れたパッケージが保持されているために2つの依存関係が満たされてインストールに失敗しました(以下のコマンド出力)。これらのパッケージはすべてデフォルトですでにインストールされているはずです(私のインストールは新鮮です。これは、wi-fiドライバーのインストール後にこのシステムで最初に行うことです)。

Sudo apt-get install xserver-xorg-input-synapticsの出力:

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.
 xserver-xorg-input-synaptics : Depends: xorg-input-abi-20
                                Depends: xserver-xorg-core (>= 2:1.14.99.902)
E: Unable to correct problems, you have held broken packages.

Sudo apt-get install xorg-input-abi-20の出力:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'xserver-xorg-core' instead of 'xorg-input-abi-20'
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.
 libcheese-gtk23 : Depends: libclutter-gtk-1.0-0 (>= 0.91.8) but it is  not going to be installed
               Depends: libcogl15 (>= 1.15.8) but it is not going to be installed
 libcheese7 : Depends: libclutter-gst-2.0-0 (>= 0.10.0) but it is not going to be installed
              Depends: gstreamer1.0-clutter but it is not going to be installed
 libclutter-1.0-0 : Depends: libcogl-pango15 (>= 1.15.8) but it is not going to be installed
                    Depends: libcogl15 (>= 1.15.8) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

xserver-xorg-coreをインストールしようとすると、同様の問題、つまり、満たされていない同じ依存関係で中断します。

Sudo apt-get cleanSudo apt-get updateSudo dpkg --configure -a、およびSudo apt-get -f installを試しましたが、これらはすべて問題を解決しませんでした。保留パッケージは表示されません。

xserver-xorg-coreのunment依存関係を直接インストールしようとすると、既にインストールされていることがわかります。

どうすれば解決できますか?

6
Till B

これらの問題を解決する良い方法は、aptitudeを使用することです。

Sudo apt-get install aptitude
Sudo aptitude update
Sudo aptitude install xserver-xorg-input-synaptics

問題を解決するいくつかの方法がaptitudeによって提案されます:

最小限のパケットをアンインストールするソリューションを選択してください。削除されたパッケージを書き留めます。必要に応じて、パッケージを再度インストールします。

1
A.B.