multilibバージョンの問題を解決する


18

Centos 6.4を使用しています

libgccをインストールしようとしたときに、yum install libgcc.i686次のマッサージを行いました。

Error:  Multilib version problems found. This often means that the root
       cause is something else and multilib version checking is just
       pointing out that there is a problem. Eg.:

         1. You have an upgrade for libgcc which is missing some
            dependency that another package requires. Yum is trying to
            solve this by installing an older version of libgcc of the
            different architecture. If you exclude the bad architecture
            yum will tell you what the root cause is (which package
            requires what). You can try redoing the upgrade with
            --exclude libgcc.otherarch ... this should give you an error
            message showing the root cause of the problem.

         2. You have multiple architectures of libgcc installed, but
            yum can only see an upgrade for one of those arcitectures.
            If you don't want/need both architectures anymore then you
            can remove the one with the missing update and everything
            will work.

         3. You have duplicate versions of libgcc installed already.
            You can use "yum check" to get yum show these errors.

       ...you can also use --setopt=protected_multilib=false to remove
       this checking, however this is almost never the correct thing to
       do as something else is very likely to go wrong (often causing
       much more problems).

       Protected multilib versions: libgcc-4.4.7-4.el6.i686 != libgcc-4.4.7-3.el6.x86_64
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles –nodigest

libgcc.i686をインストールするにはどうすればよいですか?

回答:


16

あなたはそうlibgcc.x86_64とは別のバージョンがあるlibgcc.i686あなたは(インストールしようとしている4.4.7-3対を4.4.7-4)。i686-libのインストールと一緒にx86_64 libを更新してみてください。

yum install libgcc.x86_64 libgcc.i686

libgcc.i686をでインストールできると報告していyum install libgcc.x86_64 libgcc.i686ます。
user1345414

4

中断後にこれにヒットしましたyum update(私の場合はansible実行中)。このスレッドを読んだ後、私は最終的にそれを修正しました:

package-cleanup --cleandupes

その前に、@ etagenkloが示唆したようにコマンドを実行してみましたが、また試しました:

yum-complete-transaction yum-complete-transaction --cleanup-only yum check # report generally package-cleanup --dupes # report on duplicate packages in particular


0

それは私の問題のチェックだったので、言及する価値があると思います

/etc/yum.repos.d/*

使用されていないソースまたは非公式のソースがないか確認します


-3

このエラーを修正するにはどうすればよいですか?

Error:  Multilib version problems found.

これは多くの場合、根本原因が他の何かであり、multilibバージョンチェックが問題があることを指摘しているだけであることを意味します。例えば。:

  1. 別のパッケージに必要な依存関係が欠落しているaprのアップグレードがあります。Yumは、異なるアーキテクチャのaprの古いバージョンをインストールすることでこれを解決しようとしています。悪いアーキテクチャを除外すると、yumは根本的な原因を特定します(どのパッケージに何が必要か)。--exclude apr.otherarch ...これでアップグレードのやり直しを試すことができ 、問題の根本原因を示すエラーメッセージが表示されます。

  2. aprの複数のアーキテクチャがインストールされていますが、yumはそれらのアーキテクチャのいずれかのアップグレードのみを見ることができます。両方のアーキテクチャが必要ない場合は、不足している更新があるアーキテクチャを削除すると、すべてが機能します。

  3. aprの重複バージョンが既にインストールされています。yum checkこれらのエラーをyumに表示させるために使用できます。

    ... --setopt=protected_multilib=falseこのチェックを削除することもできますが、他の何かが間違っている可能性が非常に高いので、これはほとんど正しいことではありません(多くの場合、より多くの問題を引き起こします)。

    Error:
    Protected multilib versions: apr-1.3.9-5.el6_2.i686 != apr-1.5.2-2.x86_64
    Protected multilib versions: apr-util-1.3.9-3.el6_0.1.i686 != apr-util-1.5.4-2.x86_64
    

--setopt=protected_multilib=false役立つ。ありがとう。
スコッティH
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.