跑步

跑步

当我尝试安装 WINE ( sudo apt-get install wine) 时出现以下错误:

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:
 wine : Depends: wine1.5 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

谷歌确实告诉我,这显然与有关ia32-libs,但我无法找到如何修复依赖关系或是否需要(手动?)安装其他东西。

我已添加ppa:ubuntu-wine/ppa到我的存储库。

sudo apt-get install wine1.5给我

The following packages have unmet dependencies:
 wine1.5 : Depends: wine1.5-i386 (= 1.5.4-0ubuntu1~ppa1~precise1+pulse17)

sudo apt-get install wine1.5-i386给我

The following packages have unmet dependencies:
 wine1.5-i386:i386 : Depends: libgphoto2-2:i386 (>= 2.4.10.1) but it is not going to be installed
                     Depends: libgphoto2-port0:i386 (>= 2.4.10.1) but it is not going to be installed
                     Recommends: gettext:i386 but it is not going to be installed
                     Recommends: libsane:i386 but it is not going to be installed

任何帮助都将不胜感激。谢谢。

答案1

我在尝试安装 wine 和 acroread 时遇到了类似的依赖关系中断问题,在从 11.04 升级到 12.04(跳过 11.10)后尝试安装 ia32-libs-multiarch 时也遇到了类似的问题。似乎我在 11.04 中的一些 ppa 在系统中安装了较新版本的应用程序。升级后,这些应用程序的残留似乎对依赖关系造成了一些混乱。

到目前为止,似乎有效的解决方案是在德国 ubuntu 论坛上找到的(http://forum.ubuntuusers.de,来自用户 Lasall 的帖子):

首先需要降级并执行以下操作:创建“首选项”文件:

sudo vi /etc/apt/preferences

并插入以下行:

Package: *       
Pin: release a=precise*
Pin-Priority: 2012

回车:wq写入文件。Pin-Priority 必须大于 1000。

然后你可以使用以下方法降级有问题的应用程序:

sudo apt-get dist-upgrade

然后,您可以安装抱怨依赖关系的软件包,例如 sudo apt-get install ia32-libs-multiarchsudo apt-get install ia32-libs

最后,您应该删除刚刚创建的文件:

sudo rm /etc/apt/preferences

因为否则就不会发现新的更新。

希望这也对你有帮助!

答案2

这是在 ubuntu 12.04.2 LTS 中对我有用的

跑步

gksu gedit /etc/apt/preferences.d/base-files

粘贴并保存

Package: *       
Pin: release a=precise*
Pin-Priority: 2012

降级导致错误的应用程序

sudo apt-get dist-upgrade

现在我们可以安装 Wine

sudo apt-get install wine

最后,删除您创建的文件

sudo rm /etc/apt/preferences.d/base-files

答案3

尝试使用 Ubuntu 软件中心安装 Wine,看看问题是否解决。

您可以在 www.winehq.org/help/ 找到一些有用的 Wine 帮助资源,您还可以在以下网址了解有关 Wine 替代品的更多信息:winehq.org

答案4

在 13.04 64 位中对我有用的是遵循 David Leo 的回答,对基础文件进行少量修改:

封装:*
引脚:发布 a=渴望* Pin 优先级:2012

相关内容