Problem with updates and software install using YUM Multilib errors (CentOS 7 Kernel 3)

I can not install any new software or updates because of an error with Multilib., YUM says I may have two versions of sqlite installed and one is missing an update. How can I fix this problem or un-install one version of sqlite? YUM suggested that I run the last transaction, which I did. But it didn’t work either., The problem started when I ran software updates and it had a problem and rebooted at about 55%., Not sure what the problem was since the update doesn’t give any real feed back., Here is what YUM tells me when I try to install some new software or tell it to run the last transaction again…

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 sqlite which is missing some
dependency that another package requires. Yum is trying to
solve this by installing an older version of sqlite 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 sqlite.otherarch … this should give you an error
message showing the root cause of the problem.

2. You have multiple architectures of sqlite 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 sqlite 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: sqlite-3.8.3-1.fc20.i686 != sqlite-3.8.2-1.fc20.x86_64
Error: Protected multilib versions: audit-libs-2.3.3-1.fc20.i686 != audit-libs-2.3.2-1.fc20.x86_64

Let’s see what’s installed.

rpm -qa |grep sqlite

hmm, here are the results.,

sqlite-3.8.2-1.fc20.x86_64
sqlite-3.8.3-1.fc20.x86_64
yum erase sqlite-3.8.2-1.fc20.x86_64 

Deixe um comentário