web-dev-qa-db-ja.com

16.04.2でのlibinputのインストールの問題

私はDell XPS 13 9350でUbuntuをセットアップしようとするベテランのlinuxの男です。これまで、問題なくArchを起動して実行することができましたが、Ubuntuにパッケージをインストールするのに苦労しています。

パッケージはxserver-xorg-input-libinputで指定されたlibinputです。 aptでイ​​ンストールしようとすると応答します

The following packages have unmet dependencies.
xserver-xorg-input-libinput : Depends: xserver-xorg-core (>= 2:1.17.99.902)

xserver-xorg-coreをインストールしようとすると、多数のパッケージが削除されることを警告します。 redditの誰かが、パッケージの名前が変更されたため、インストールできないことを指摘しました。これを回避する方法はありますか?

編集:apt-cache policy xserver-xorg-core xserver-xorg-input-libinputの出力

xserver-xorg-core:
  Installed: (none)
  Candidate: 2:1.18.4-0ubuntu0.2
  Version table:
     2:1.18.4-0ubuntu0.2 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial-updates/main AMD64 Packages
     2:1.18.3-1ubuntu2 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/main AMD64 Packages
xserver-xorg-input-libinput:
  Installed: (none)
  Candidate: 0.18.0-1
  Version table:
     0.18.0-1 500
        500 http://gb.archive.ubuntu.com/ubuntu xenial/universe AMD64 
Packages
6
Ed R

だから私はバグレポートを提出し、応答はこれでした:

You're not supposed to have xserver-xorg-input-libinput installable, that's not possible 
because it's bound to the server input ABI

install xserver-xorg-input-libinput-hwe-16.04 instead

名前を変更したパッケージのインストールは機能しました。これらは最近改名されたようで、混乱の元となっています。

5
Ed R