web-dev-qa-db-ja.com

ubuntu 18.04 Wine 5.0のさまざまな回避策が機能しませんでした

私はこのコマンドをもう一度追加するよりも、WineHQガイドに従ってきました。

Sudo apt-get install libgnutls30:i386 libldap-2.4-2:i386 libgpg-error0:i386 libxml2:i386 libasound2-plugins:i386 libsdl2-2.0-0:i386 libfreetype6:i386 libdbus-1-3:i386 libsqlite3-0:i386

this へのリプレイの後、再び

(そして、他のたくさんのもの、私はプロセスを投稿しようとしましたが、それはスパムフィルターに巻き込まれ続けました)。

$ apt list --upgradable
Listing... Done
wine-devel-AMD64/eoan 5.9~eoan AMD64 [upgradable from: 5.9~bionic]
wine-devel-dbg/eoan 5.9~eoan AMD64 [upgradable from: 5.9~bionic]
wine-devel-dev/eoan 5.9~eoan i386 [upgradable from: 5.9~bionic]
wine-devel-i386/eoan 5.9~eoan i386 [upgradable from: 5.9~bionic]
wine-stable-AMD64/eoan 5.0.0~eoan AMD64 [upgradable from: 4.0.4~bionic]
wine-staging-i386/eoan 5.9~eoan i386 [upgradable from: 5.9~bionic]

私はそれらを強制的にアップグレード/インストールしようとしましたが、9からここにリストされている6に降りてきます。

$ Sudo apt install --install-recommends winehq-stable
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:
 winehq-stable : Depends: wine-stable (= 5.0.0~eoan)
E: Unable to correct problems, you have held broken packages.

私は文字通りubuntuがどのように機能するのか分かりません、誰かがこれを説明してくれるなら、事前に感謝します

-編集

$ apt-cache policy winehq-stable wine-stable wine
winehq-stable:
  Installed: (none)
  Candidate: 5.0.0~eoan
  Version table:
     5.0.0~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
     4.0.4~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
     4.0.4~bionic 500
        500 https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04 ./ Packages
     4.0.3~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
wine-stable:
  Installed: (none)
  Candidate: 5.0.0~eoan
  Version table:
     5.0.0~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
     4.0.4~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
     4.0.4~bionic 500
        500 https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04 ./ Packages
     4.0.3~eoan 500
        500 https://dl.winehq.org/wine-builds/ubuntu eoan/main AMD64 Packages
     3.0-1ubuntu1 500
        500 http://archive.ubuntu.com/ubuntu bionic/universe AMD64 Packages
        500 http://archive.ubuntu.com/ubuntu bionic/universe i386 Packages
wine:
  Installed: 4.0.4-0ubuntu1~18.04~ricotz0
  Candidate: 4.0.4-0ubuntu1~18.04~ricotz0
  Version table:
 *** 4.0.4-0ubuntu1~18.04~ricotz0 500
        500 http://ppa.launchpad.net/ricotz/unstable/ubuntu bionic/main AMD64 Packages
        500 http://ppa.launchpad.net/ricotz/unstable/ubuntu bionic/main i386 Packages
        100 /var/lib/dpkg/status
2
killmenowplease

リポジトリがめちゃくちゃです。

間違ったものを削除するには:

Sudo apt-add-repository -r 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main' 

Sudo apt-get install ppa-purge
Sudo ppa-purge ppa:ricotz/unstable

そしてそれは修正されます。

1
N0rbert