i686とx86_64パッケージの違いは何ですか?

i686とx86_64パッケージの違いは何ですか?

私はglibc i686とx86_64の両方を備えたコンピュータを持っていますが、非常に迷惑なglibcの問題があります。

1台のコンピュータに同じ名前の2つのライブラリをインストールするのは正常ですか?どのライブラリが実行されているのか、どうすればわかりますか?

最近まで、私はx86_64がi686だと思いました。わかりました、私が間違っていることは間違いありません。しかし、なぜ?

    [root@machin ~]# yum info glibc
    Loaded plugins: rhnplugin, security
    This system is not registered with RHN.
    RHN support will be disabled.
    Excluding Packages in global exclude list
    Finished
    Installed Packages
    Name       : glibc
    Arch       : i686
    Version    : 2.5
    Release    : 42
    Size       : 12 M
    Repo       : installed
    Summary    : The GNU libc libraries.
    License    : LGPL
    Description: The glibc package contains standard libraries which are used by
               : multiple programs on the system. In order to save disk space and
               : memory, as well as to make upgrading easier, common system code is
               : kept in one place and shared between programs. This particular package
               : contains the most important sets of shared libraries: the standard C
               : library and the standard math library. Without these two libraries, a
               : Linux system will not function.

    Name       : glibc
    Arch       : x86_64
    Version    : 2.5
    Release    : 42
    Size       : 11 M
    Repo       : installed
    Summary    : The GNU libc libraries.
    License    : LGPL
    Description: The glibc package contains standard libraries which are used by
               : multiple programs on the system. In order to save disk space and
               : memory, as well as to make upgrading easier, common system code is
               : kept in one place and shared between programs. This particular package
               : contains the most important sets of shared libraries: the standard C
               : library and the standard math library. Without these two libraries, a
               : Linux system will not function.

    [root@machin ~]# yum info glibc-common
    Loaded plugins: rhnplugin, security
    This system is not registered with RHN.
    RHN support will be disabled.
    Excluding Packages in global exclude list
    Finished
    Installed Packages
    Name       : glibc-common
    Arch       : x86_64
    Version    : 2.5
    Release    : 42
    Size       : 64 M
    Repo       : installed
    Summary    : Common binaries and locale data for glibc
    License    : LGPL
    Description: The glibc-common package includes common binaries for the GNU libc
               : libraries, as well as national language (locale) support.

ベストアンサー1

技術的には、i686は実際には32ビット命令セット(x86ファミリの一部)ですが、x86_64は64ビット命令セット(amd64とも呼ばれます)です。

表面的には、以前のバージョンとの互換性のために32ビットライブラリを含む64ビットシステムがあります。それは完全に大丈夫でしょう。

おすすめ記事