我在用Ubuntu 14.04.2 LTS \n \l。
下面是我安装的libc。
$ dpkg --list | grep libc6
ii libc6:amd64 2.19-0ubuntu6.7 amd64 Embedded GNU C Library: Shared libraries
ii libc6-dbg:amd64 2.19-0ubuntu6.7 amd64 Embedded GNU C Library: detached debugging symbols
ii libc6-dev:amd64 2.19-0ubuntu6.7 amd64 Embedded GNU C Library: Development Libraries and Header Files
ii libc6-i386 2.19-0ubuntu6.7 amd64 Embedded GNU C Library: 32-bit shared libraries for AMD64
rc libc6-x32 2.19-0ubuntu6.7 amd64 Embedded GNU C Library: X32 ABI Shared libraries for AMD64但当我做$ sudo apt-get install libdbus-1-3:i386时
出现下列错误
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:
libdbus-1-3:i386 : Depends: libc6:i386 (>= 2.10) but it is not going to be installed
unity-control-center : Depends: libcheese-gtk23 (>= 3.4.0) but it is not going to be installed
Depends: libcheese7 (>= 3.0.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.我想知道libc6 6:i 386和libc6 6-i 386之间有什么区别?
发布于 2016-05-19 04:06:13
libc 6:i 386是libc的i386版本,用于i386体系结构内核/系统。这是为了运行为i386系统构建的包,如果您试图在amd64系统上使用i386包,则需要这样做。这就是所谓的多重弓。
Libc6-i 386是用于amd64系统的32位libc开发包。这不是用于运行软件,而是用于编译和链接32位代码。
https://stackoverflow.com/questions/37313639
复制相似问题