web-dev-qa-db-ja.com

Wine:保持されている壊れたパッケージを修正する方法は?

WineHQ Wiki に従ってWINEをインストールしたので、次のすべての行を入力しました。

Sudo dpkg --add-architecture i386 
wget -nc https://dl.winehq.org/wine-builds/winehq.key
Sudo apt-key add winehq.key
Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ cosmic main' 
Sudo apt update

そして次にタイプすると:

Sudo apt install --install-recommends winehq-stable

image packages

Stable branchのパッケージを取得するため。次の出力がありました。

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 (= 4.0~trusty)
E: Unable to correct problems, you have held broken packages.

どういう意味ですか?

編集:私はすでに実行しようとしました

Sudo apt-get update

しかし、それは機能しません。

EDIT:追加されたソフトウェアソース:
Software sources

4
Ced

あなたの問題はBionicでCosmicソースを使用しようとしていることです: https://wiki.ubuntu.com/Releases

実行:

Sudo apt-add-repository --remove 'deb https://dl.winehq.org/wine-builds/ubuntu/ cosmic main'
Sudo apt update
Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
Sudo apt update
Sudo apt install --install-recommends winehq-stable

また、ワインの使用経験がある長年のワインユーザーとして、最高のワインエクスペリエンスは、他のプログラムに構成して使用してもらうことから得られます。 Steam および Lutris 。どちらも特にゲームアプリを実行するために使用することを目的としていますが、ゲーム以外のアプリでも正常に使用できました。あなたはおそらく見てみる必要があります。

3
tatsu