web-dev-qa-db-ja.com

Xubuntu 15.10にWine 1.7がインストールされない

そこで、昨日Xubuntuのインストールをセットアップした後、ppa:ubuntu-wine/ppaを使用してWine 1.7をインストールしようとしました。ただし、Sudo apt-get install 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) but it is not going to be installed
           Depends: wine1.7-i386 (= 1:1.7.44-0ubuntu1)
E: Unable to correct problems, you have held broken packages.

自動削除、i386アーキテクチャの追加、パッケージのクリーンアップ、apt-getインストールの修正など、オンラインで見つけたいくつかのソリューションを試しました。ただし、見つけることができるすべてのソリューションを試した後、wine1.7はまだインストールされていません。これが私のコンピューターのせいなのか、それともPPAのせいなのかはわかりませんが、他の人が自分の発見を共有できたら素晴らしいと思います。

ありがとう、エリー

要求に応じて、apt-cache policy wine1.7 wine1.7-AMD64 wine1.7-i386の出力は次のとおりです。

wine1.7:
  Installed: (none)
  Candidate: 1:1.7.44-0ubuntu1
  Version table:
     1:1.7.44-0ubuntu1 0
        500 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/ wily/main AMD64 Packages
wine1.7-AMD64:
  Installed: (none)
  Candidate: 1:1.7.44-0ubuntu1
  Version table:
     1:1.7.44-0ubuntu1 0
        500 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/ wily/main AMD64 Packages
wine1.7-i386:i386:
  Installed: (none)
  Candidate: 1:1.7.44-0ubuntu1
  Version table:
     1:1.7.44-0ubuntu1 0
        500 http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/ wily/main i386 Packages  

Sudo apt-get install wine1.7-AMD64 wine1.7-i386の出力:

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-AMD64 : Depends: libgphoto2-port10 (>= 2.5.2) but it is not installable
                 Recommends: libgnutls26 but it is not installable
                 Recommends: wine-gecko2.34 but it is not installable
                 Recommends: wine-mono4.5.4 but it is not installable
 wine1.7-i386:i386 : Depends: libgphoto2-port10:i386 (>= 2.5.2) but it is not installable
                     Recommends: libgnutls26:i386 but it is not installable
                     Recommends: libpcap0.8:i386 but it is not going to be installed
                     Recommends: wine-gecko2.34:i386 but it is not installable
                     Recommends: wine-mono4.5.4:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.
12
Elly

現在、必要なパッケージはWilyで利用できません。 this Filtered ページを確認してください。

数日待つと、Wilyパッケージが利用可能になる可能性があります。それまでの間、Vividパッケージをインストールします。

wget http://mirrors.kernel.org/ubuntu/pool/main/libg/libgphoto2/libgphoto2-port10_2.5.4-1.1ubuntu1_i386.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/libg/libgphoto2/libgphoto2-port10_2.5.4-1.1ubuntu1_AMD64.deb
Sudo dpkg -i libgphoto2-port10*.deb
Sudo apt-get install -f
Sudo apt-get install wine1.7
6
A.B.

失敗する依存関係はlibgphoto2-port10です。これはWilyではありません。 TrustyからDEBファイルを手動でインストールしてみることができます。

http://packages.ubuntu.com/trusty/libgphoto2-port1

10
D. B.

PlayOnLinux on(X)Unbuntu 15.10。を引き続き使用できます。

PlayOnLinuxを使用すると、異なるWineバージョンと異なる設定で「仮想ドライブ」(/home/{user}/.PlayOnLinux/wineprefix/に)を作成(および安全に削除)できます。

15.10リポジトリにあります。

Sudo apt-get install playonlinux

プログラム内:メニュー->ツール->ワインバージョンの管理

1.7(最新1.7.54)を含む必要なWineバージョン(x86またはx64)をインストールし、「仮想ドライブ」で使用できます。

PlayOnLinux「仮想ドライブ」のプログラムは、次のように実行できます。

/usr/share/playonlinux/playonlinux --run "Evernote.5.8.13"

そして、もちろん、/ home/{user} /。local/share/applications /に.desktopエントリを追加できます

私見、とにかく純粋なワインよりも便利です。

4
Viktor

Ubuntu 15.10(Wily Werewolf)およびDebian 8以降では、wine-development,パッケージをインストールできます。追加のppaを追加することなく、最新の開発バージョンをインストールできます。

インストールすると、次の実行可能ファイルが使用可能になります。wine-development, winecfg-development, etc;従来のwine, winecfg,などの代わりに.

更新

Wine 1.8および1.9がリリースされました。 Ubuntu 15.10 Wily Werewolfで利用可能です。それらをインストールするには、ワインtheamによって作成された新しいppaを追加できます。

Sudo add-apt-repository ppa:wine/wine-builds
Sudo apt-get update
Sudo apt-get install --install-recommends winehq-devel

詳細については、 公式Wine WikiのUbuntuセクション をご覧ください。

2
Luisg123v

依存関係が壊れてワインのインストールが失敗した場合

wine : Depends: wine1.6 but it is not going to be installed

wine1.6をインストールしようとすると、libgphoto2-6:i386に依存することが明らかになり、インストールできないlibgphoto2-port10:i386に依存するように見え、libgphoto2-port10:i386をインストールしようとするとAMD64が削除されますlibsaneおよび他のいくつかのパッケージと一緒にバージョンを作成した場合、おそらくソフトウェアソース構成で「Recommended updates」を無効にした可能性があります(たとえば、「Important security updatesチェックされ、その他はすべてチェックされていない)。

推奨アップデート」を再度有効にすると、ワインが正常にインストールされました。

0
Ruslan

Wineの最新バージョンが必要ない場合はいつでもできます:

Sudo apt-get install wine winetricks
0
user464336