Resolviendo problemas de versión multilib


18

Yo uso Centos 6.4

Cuando intenté instalar libgcc con yum install libgcc.i686tomé los siguientes masajes.

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

¿Cómo puedo instalar libgcc.i686?

Respuestas:


16

Parece que libgcc.x86_64tiene una versión diferente de la libgcc.i686que está intentando instalar ( 4.4.7-3vs. 4.4.7-4). Intente actualizar la biblioteca x86_64 junto con la instalación de la i686-lib:

yum install libgcc.x86_64 libgcc.i686

Reporto que puedo instalar libgcc.i686 con yum install libgcc.x86_64 libgcc.i686.
usuario1345414

4

He golpeado esto después de interrumpir yum update(durante una carrera ansible en mi caso). Después de leer este hilo , finalmente lo arreglé con:

package-cleanup --cleandupes

Aunque antes de eso también intenté ejecutar comandos como sugirió @etagenklo, y también probé:

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


0

Creo que vale la pena mencionarlo porque fue mi verificación de problemas

/etc/yum.repos.d/*

y verifique si no hay una fuente no utilizada o no oficial


-3

¿Cómo podemos solucionar este error?

Error:  Multilib version problems found.

Esto a menudo significa que la causa raíz es otra cosa y la comprobación de la versión multilib es solo señalar que hay un problema. P.ej.:

  1. Tiene una actualización para apr que le falta alguna dependencia que requiere otro paquete. Yum está tratando de resolver esto instalando una versión anterior de apr de la arquitectura diferente. Si excluye la mala arquitectura, yum le dirá cuál es la causa raíz (qué paquete requiere qué). Puede intentar rehacer la actualización con --exclude apr.otherarch ...esto, le dará un mensaje de error que muestra la causa raíz del problema.

  2. Tiene múltiples arquitecturas de apr instaladas, pero yum solo puede ver una actualización para una de esas arquitecturas. Si ya no desea / necesita ambas arquitecturas, puede eliminar la que tiene la actualización que falta y todo funcionará.

  3. Ya tiene instaladas versiones duplicadas de apr. Puede usar yum checkpara que yum muestre estos errores.

    ... también puede usar --setopt=protected_multilib=falsepara eliminar esta comprobación, sin embargo, esto casi nunca es lo correcto, ya que es muy probable que algo más salga mal (a menudo causando muchos más problemas).

    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=falseServicial. Gracias.
Scottie H
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.