在解决大量依赖性问题之后,决定从 synaptic 中删除所有与 wine 相关的软件包。
最近从 12.04 升级到 14.04。
不明白发生了什么。获取依赖 wine1.6-i386,当我尝试安装时,获取 cmslib2-2 依赖项
$ sudo apt-get install wine 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:
wine : Depends: wine1.6 but it is not going to be installed or
wine1.7 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
2014-08-28_15:28 ~
$
答案1
首先尝试设置架构:
dpkg --add-architecture
然后清除并再次添加 ppa。
sudo apt-get install ppa-purge && sudo add-apt-repository ppa:ubuntu-wine/ppa && sudo apt-get update
现在尝试安装依赖项
sudo apt-get install wine1.7
如需了解更多信息,请访问配置架构。
希望能帮助到你。