web-dev-qa-db-ja.com

Ubuntu 15.10にWineをインストールする方法

ここにリストされている手順を実行しようとしました https://www.linux.com/blog/wine-1735-released-how-install-ubuntudebianlinux-mint

PPAを追加してapt-get updateを実行した後、次を使用してwineをインストールしようとすると:

Sudo apt-get install -y wine1.7

私はこの出力を取得します:

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:
wine1.7 : Depends: wine1.7-AMD64 (= 1:1.7.44-0ubuntu1)
          Depends: wine1.7-i386 (= 1:1.7.44-0ubuntu1)
E: Unable to correct problems, you have held broken packages.

私もこれを読みました: buntu 15.10にWineをインストールする 、しかし何も役に立たないようです。

また、(別の質問でこれを言及する必要があるかどうか、または私が得る現在のエラーに関連するかどうかはわかりません)問題が始まったのは、playonlinuxをインストールする前に何日もwinetricksを使用しなかったため、playonlinuxをインストールしたためです。 .exeファイルをクリックすると、「開く」オプションでwinetrickesがポップされます...

最後になりましたが、/usr/bin/にはwinetricks実行可能ファイルはなく、winetricksシェルスクリプトのみがあります。

1
papajo

https://wiki.winehq.org/Ubunt から:

システムが64ビットの場合、32ビットアーキテクチャを有効にします(まだ行っていない場合):

Sudo dpkg --add-architecture i386 

リポジトリを追加します。

Sudo add-apt-repository ppa:wine/wine-builds

パッケージリストを更新します。

Sudo apt-get update

次にインストールします(開発ブランチの例):

Sudo apt-get install --install-recommends winehq-staging

(ステージングではなく)develブランチを使用する場合は、winehq-staging with winehq-devel上記の行。

Apt-getが依存関係の欠落について苦情を言う場合は、それらをインストールしてから、最後の2つのステップ(更新とインストール)を繰り返します。

Winetricksの最新バージョン(推奨、リポジトリ内のバージョンは古い)をインストールするには、次を実行します。

wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks && Sudo cp winetricks /usr/bin/ && Sudo chmod +x /usr/bin/winetricks
1
QwertyChouskie