When I ask yum which updates are available I get 1 answer:
Should be easy enough, right?
As far as I can tell there's only 1 installation/version of alt-ImageMagick-libs installed:
alt-ImageMagick and alt-ImageMagick-config are 7.1.1-19.1.el7 however. It's just the libs that don't get updated.
Code:
# yum check-update Loaded plugins: fastestmirror, rhnplugin This system is receiving updates from CLN. Loading mirror speeds from cached hostfile Excluding mirror: cl-mirror.versio.nl * cloudlinux-x86_64-server-7: nl1-clmirror.a2hosting.com * epel: epel.mirror.wearetriple.com alt-ImageMagick-libs.x86_64 7.1.1-19.1.el7 cloudlinux-x86_64-server-7
Code:
# yum update Loaded plugins: fastestmirror, rhnplugin This system is receiving updates from CLN. Loading mirror speeds from cached hostfile Excluding mirror: cl-mirror.versio.nl * cloudlinux-x86_64-server-7: nl1-clmirror.a2hosting.com * epel: epel.mirror.wearetriple.com Resolving Dependencies --> Running transaction check ---> Package alt-ImageMagick-libs.x86_64 0:7.1.0-62.1.el7 will be updated ---> Package alt-ImageMagick-libs.x86_64 0:7.1.1-19.1.el7 will be an update Removing alt-ImageMagick-libs.x86_64 0:7.1.0-62.1.el7 - ud due to obsoletes from installed alt-ImageMagick-config-7.1.1-19.1.el7.x86_64 --> Restarting Dependency Resolution with new changes. --> Running transaction check ---> Package alt-ImageMagick-libs.x86_64 0:7.1.0-62.1.el7 will be updated --> 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 alt-ImageMagick-libs which is missing some dependency that another package requires. Yum is trying to solve this by installing an older version of alt-ImageMagick-libs 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 alt-ImageMagick-libs.otherarch ... this should give you an error message showing the root cause of the problem. 2. You have multiple architectures of alt-ImageMagick-libs installed, but yum can only see an upgrade for one of those architectures. 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 alt-ImageMagick-libs 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: alt-ImageMagick-libs-7.1.1-19.1.el7.x86_64 != alt-ImageMagick-libs-7.1.0-62.1.el7.x86_64
Code:
# yum list installed alt-ImageMagick-libs* Loaded plugins: fastestmirror, rhnplugin This system is receiving updates from CLN. Loading mirror speeds from cached hostfile Excluding mirror: cl-mirror.versio.nl * cloudlinux-x86_64-server-7: nl1-clmirror.a2hosting.com * epel: epel.mirror.wearetriple.com Installed Packages alt-ImageMagick-libs.x86_64 7.1.0-62.1.el7 @cloudlinux-x86_64-server-7
Comment