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


12

そこで、昨日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.

編集あなたの質問との出力を追加apt-cache policy wine1.7 wine1.7-amd64 wine1.7-i386
AB

@ABメインの投稿を編集して出力しました。
エリー

スタートsudo apt-get install wine1.7-amd64 wine1.7-i386
AB

@ABまた、メイン投稿に編集されました。
エリー

回答:


6

現在、必要なパッケージはWilyで利用できません。このフィルターされたページを確認しください。

数日待つと、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

助けてくれてありがとう!来週もう一度インストールしてみて、どうなるかを返信します。
エリー

一般的に、古いパッケージを緊急に必要なときにインストールすることは可能ですか?
apex39

2
小さなアップデート。2015-11-10であり、問​​題は残っています。ランチパッドによると、ppaのwine1.7の最新ビルドは11週間前です。ワイリーはそれより若いです。
user1129682

出力を提供してくださいfind /etc/apt -name '*.list' -exec bash -c 'echo -e "\n$1\n"; cat -n "$1"' _ '{}' \;
apex39

wine-ubuntu ppaのパッケージは定期的に更新されていません。開発者の1人が日常業務に専念している一方で、もう1人のコンピューターが動作していないためです。
ザウバーパラケルスス

10

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

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


1
これが解決策です、ありがとうございます!このリンクをたどって、libgphoto2-port10_2.5.3.1-1ubuntu2_i386.debパッケージをダウンロードし、クリックしてインストールすると、問題はなくなりました。@ellyは、おそらくこの答えを解決策としてマークすることを検討します。何も得られないように(ABの推奨に従って)既に待機しており、DBの解決策ははるかに実用的です。
イヴァン

ワインステージングパッケージも検討する必要があります。私はそれが通常より最新のwine1.7パッケージ/ PPAよりであることを見つける
DB

これは私のために働いたとしても、両方のパッケージをdlded
CED


4

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

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エントリを追加できます

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


Opがwine1.7を求めていたPlayOnLinuxは、まだwine 1.6を使用するワインラッパーです
tomodachi

1
PlayOnLinuxでは、特定の「仮想ドライブ」に選択したWineバージョンを使用できます。また、apt-get install wine1.7上記のように失敗しても、15.10に1.7をインストールできます。
Viktor

2

Ubuntu 15.10(Wily Werewolf)およびDebian 8以降、wine-development,追加のppaを必要とせずにパッケージをインストールできます。これにより、最新の開発バージョンがインストールされます。

インストールすると、次の実行可能ファイルが使用可能になります wine-development, winecfg-development,。従来のもの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セクションをご覧ください。


0

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

sudo apt-get install wine winetricks

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

0

以下のような壊れた依存関係でワインのインストールが失敗した場合

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と他のいくつかのパッケージが削除され、ソフトウェアソースの「推奨アップデート」を無効にしている可能性があります構成(たとえば、「重要なセキュリティ更新プログラム」のみをチェックし、その他はすべてチェックを外した)。

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.