在 Ubuntu 14.04.3 UCK 工具中,我无法安装 wine 1.6 或 wine1.7

在 Ubuntu 14.04.3 UCK 工具中,我无法安装 wine 1.6 或 wine1.7

我可以wine1.7通过以下方式成功安装,但无法安装uck tool

为什么会发生这种情况?我该如何解决?

$ sudo add-apt-repository ppa:ubuntu-wine/ppa
$ sudo apt-get update
$ sudo apt-get install wine1.7 winetricks
# apt-get install wine1.7 winetricks
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-i386 (= 1:1.7.44-0ubuntu1) but it is not installable
           Recommends: gnome-exe-thumbnailer but it is not going to be installed or
                       kde-runtime but it is not going to be installed
           Recommends: ttf-mscorefonts-installer but it is not going to be installed
           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
E: Unable to correct problems, you have held broken packages.

答案1

我有同样的问题。如果你使用 ubuntu > 14.04,请尝试以下操作:

sudo apt-cache policy libvpx1

libvpx1:
Installed: 1.3.0+git20150219-1~gd~t
Candidate: 1.3.0+git20150219-1~gd~t
Version table:
*** 1.3.0+git20150219-1~gd~t 0
    100 /var/lib/dpkg/status
 1.3.0-3~trusty 0
    500 http://ppa.launchpad.net/mc3man/trusty-media/ubuntu/ trusty/main amd64 Packages
 1.3.0-2 0
    500 http://ru.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

并降级此包:

sudo apt-get install libvpx1=1.3.0-3~trusty

相关内容