Al intentar actualizar las dependencias podrías encontrarte con el siguiente error de consola:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
--> Finished Dependency Resolution 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 glibc which is missing some dependency that another package requires. Yum is trying to solve this by installing an older version of glibc 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 glibc.otherarch ... this should give you an error message showing the root cause of the problem. 2. You have multiple architectures of glibc 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 glibc 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). |
Esto es debido a que tienes una librería repetida, tal vez lo hayas hecho a propósito, pero en mi caso, es debido a realizar un upgrade de una versión anterior del sistema operativo.
En mi caso pude solucionarlo de la siguiente manera:
1.) Ampliando las utilizades del instalador, en el caso de CentOS es ‘yum’:
1 |
yum install yum-utils |
2.) Una vez instalado, podrémos utilizar el siguiente comando, con el cual buscamos transacciones incompletas o abortadas, además intenta completarlas.
1 |
yum-complete-transaction |
3.) Limpiamos todos los archivos cacheados de cualquiera de nuestros repositorios activos.
1 |
yum clean all |
4.) Buscamos de nuestra base de RPMs local los duplicados y borramos los que sean más antiguos.
1 |
package-cleanup --cleandupes |
5.) En este momento ya deberíamos tener nuestro problema de dependencias duplicadas solucionado, ejecutamos el siguiente comando para comprobar que ya está todo reparado.
1 |
yum check |