Używam Centos 6.4
Kiedy próbowałem zainstalować libgcc yum install libgcc.i686
, wziąłem następujące masaże.
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
Jak mogę zainstalować libgcc.i686?
centos
installation
yum
rpm
32bit-64bit
użytkownik1345414
źródło
źródło
yum install libgcc.x86_64 libgcc.i686
.yum update
Uderzyłem w to po przerwaniu (w moim przypadku w trybie ansible). Po przeczytaniu tego wątku ostatecznie go naprawiłem:package-cleanup --cleandupes
Chociaż wcześniej próbowałem też uruchamiać polecenia zgodnie z sugestią @etagenklo, a także próbowałem:
yum-complete-transaction yum-complete-transaction --cleanup-only yum check # report generally package-cleanup --dupes # report on duplicate packages in particular
źródło
Myślę, że warto o tym wspomnieć, ponieważ to była moja kontrola problemów
i sprawdź, czy nie jest używane lub nieoficjalne źródło
źródło
Jak możemy naprawić ten błąd?
Często oznacza to, że podstawową przyczyną jest coś innego, a sprawdzanie wersji multilib wskazuje tylko, że istnieje problem. Na przykład.:
Masz aktualizację APR, w której brakuje pewnej zależności wymaganej przez inny pakiet. Yum próbuje rozwiązać ten problem, instalując starszą wersję apr innej architektury. Jeśli wykluczysz złą architekturę, yum powie ci, jaka jest podstawowa przyczyna (który pakiet wymaga czego). Możesz spróbować powtórzyć aktualizację
--exclude apr.otherarch ...
, aby wyświetlić komunikat o błędzie z podstawową przyczyną problemu.Masz zainstalowanych wiele architektur APR, ale yum widzi tylko aktualizację dla jednej z tych architektur. Jeśli nie chcesz / potrzebujesz już obu architektur, możesz usunąć tę z brakującą aktualizacją i wszystko będzie działać.
Masz już zainstalowane zduplikowane wersje apr. Możesz użyć,
yum check
aby yum pokazał te błędy.... możesz również użyć
--setopt=protected_multilib=false
do usunięcia tego sprawdzania, jednak prawie nigdy nie jest to właściwe, ponieważ coś innego prawdopodobnie pójdzie nie tak (często powodując znacznie więcej problemów).źródło
--setopt=protected_multilib=false
Pomocny. Dzięki.