web-dev-qa-db-ja.com

64ビットにWine1.6をインストールできない

ワインをインストールしようとしています

Sudo apt-get install wine1.6

そしてこれを示すターミナル

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.6 : Depends: wine1.6-i386 (= 1:1.6.2-0ubuntu4) but it is not installable
           Recommends: cups-bsd but it is not going to be installed
           Recommends: gnome-exe-thumbnailer but it is not going to be installed or
                       kde-runtime but it is not going to be installed
           Recommends: fonts-droid but it is not going to be installed
           Recommends: fonts-liberation but it is not going to be installed
           Recommends: ttf-mscorefonts-installer but it is not installable
           Recommends: fonts-horai-umefont but it is not going to be installed
           Recommends: fonts-unfonts-core but it is not going to be installed
           Recommends: ttf-wqy-microhei
           Recommends: winbind but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Wineを64ビットマシンで動作させるには、i386アーキテクチャのサポートを有効にする必要があります。これを行うには、次の手順を実行します。

以下を使用して、以下のフォルダー内の唯一のファイルがマルチアーチであることを確認します。

ls /etc/dpkg/dpkg.cfg.d/

出力がマルチアーチかどうかを確認します。出力がマルチアーチの場合、以下を実行します:

Sudo sh -c "echo 'foreign-architecture i386' > /etc/dpkg/dpkg.cfg.d/multiarch"

注:-最初に、uname -mの出力を確認します。既にi386である場合は、上記の手順に従う必要はありません。つまり、i386はデフォルトで有効になっています。

上記は ここでの私の答え から引用されています。

上記の手順を実行してから実行します。

Sudo apt-get install wine1.6
2
Sharad Gautam

Wineをインストールする前に、コマンドSudo add-apt-repository ppa:ubuntu-wine/ppaを使用してソースリストにwine ppaを追加します。次に、Sudo apt-get updateを使用してソースを更新します。 Sudo apt-get install wine1.6を使用してワインをインストールします。
幸運を...

0
Neophyte