2016-05-19 22 views
4

私はUbuntu 14.04.2 LTS \n \lを使用しています。libc6との違いは何ですか:i386とlibc6-i386

ここには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の違い何思ったんだけど:i386とのlibc6-i386の?

+0

ここにコメントを追加して、この1つを追跡してください... Yikes!彼らが「リンゴ」のリンゴではないことが分かりました。 –

+0

これは[1年前に質問されました](http://stackoverflow.com/questions/30489914/whats-the-difference-between-libc6-i386-and-libc6i386)のようですが、応答はありません。興味深いことに、それは再び現れる。また、あなたが良い答えを得た場合、その質問はこれのdupとしてマークされなければならない可能性があります。 – computerfreaker

答えて

7

libc6:i386は、i386アーキテクチャカーネル/システム用のi386バージョンのlibcです。これは、i386システム用にビルドされたパッケージを実行するためのもので、i386パッケージをamd64システムで使用する場合に必要になります。これはマルチアーチと呼ばれます。

libc6-i386は、amd64システム用のlibcの32ビット開発パッケージです。これは32ビットコードをコンパイルしてリンクするソフトウェアを実行するためのものではありません。

関連する問題