我需要使我的盒达到标准或android的发展,但不能得到ia32libs为我的生活安装。有人能帮忙吗?Android的工具给我的错误是阻止了亚行服务器失败(代码-1),经过一番调查,我发现我需要安装ia32-lib,据我理解,这是一个痛苦的问题。
Ubuntu12.04 (x64)
xxx@xxx:~$ sudo apt-get -f install ia32-libs
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:
ia32-libs : Depends: ia32-libs-multiarch
E: Unable to correct problems, you have held broken packages.发布于 2012-10-30 14:36:55
我在12.10中也遇到了同样的问题,这似乎是一个bug:https://bugs.launchpad.net/ubuntu/+source/ia32-libs/+bug/1016294。dpkg --get-selection和dpkg --print-foreign-architectures的输出(如对OP的注释中所要求的那样)为空。
目前,我已经诉诸于在VM中运行32位版本,而不是像几个人试图降低级别那样破坏我的系统:
发布于 2013-04-03 15:00:32
要在ubuntu 64位机上开发android,不需要安装
sudo apt-get install ia32-libs相反,只需发布:
sudo apt-get install lib32ncurses5 lib32stdc++6这将使adb及其相关的32位android依赖项不需要所有不必要的包,如果您执行apt安装if 32-lib,这些包就会被捆绑在一起。
发布于 2012-09-19 05:57:35
我也遇到了一个类似的问题,当我试图安装葡萄酒和大段读取时,依赖中断了;当我试图安装ia32-libs-multiarch时,我遇到了一个抱怨,在从11.04升级到12.04 (传递11.10)之后,我遇到了一个类似的问题。似乎有些ppa在11.04系统中安装了更新版本的应用程序。升级后,这些应用程序的残留似乎在依赖关系中造成了一些混乱。
目前看来可行的解决方案是在德国的ubuntu板上找到的(http://forum.ubuntuusers.de,用户Lasall的帖子):
首先,需要降级并通过以下操作完成:创建“preferences”文件:
sudo vi /etc/apt/preferences并插入以下几行:
Package: *
Pin: release a=precise*
Pin-Priority: 2012引脚优先级必须大于1000.
然后,您可以通过以下方式降低违规应用程序的级别:
sudo apt-get dist-upgrade然后,您可以安装抱怨依赖关系的包,如sudo apt-get install ia32-libs-multiarch或sudo apt-get install ia32-libs。
最后,应该删除刚才创建的文件:
sudo rm /etc/apt/preferences因为否则将找不到新的更新。
希望这对你也有帮助!
https://askubuntu.com/questions/158650
复制相似问题