मल्टीबिल संस्करण समस्याओं का समाधान


18

मैं सेंटोस 6.4 का उपयोग करता हूं

जब मैंने yum install libgcc.i686निम्नलिखित मालिश करने के साथ libgcc स्थापित करने का प्रयास किया ।

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

मैं libgcc.i686 कैसे स्थापित कर सकता हूं?

जवाबों:


16

ऐसा लगता है कि आपके libgcc.x86_64पास एक अलग संस्करण है जिसे libgcc.i686आप स्थापित करने की कोशिश कर रहे हैं ( 4.4.7-3बनाम 4.4.7-4)। I686-lib की स्थापना के साथ x86_64 कार्य को अद्यतन करने का प्रयास करें:

yum install libgcc.x86_64 libgcc.i686

मैं रिपोर्ट करता हूं कि मैं libgcc.i686 को स्थापित कर सकता हूं yum install libgcc.x86_64 libgcc.i686
user1345414

4

मैंने इसे बाधित करने के बाद मारा है yum update(मेरे मामले में एक चलाने के दौरान)। इस सूत्र को पढ़ने के बाद मैंने अंततः इसे इसके साथ तय किया:

package-cleanup --cleandupes

हालांकि इससे पहले मैंने @etagenklo के सुझाव के अनुसार कमांड चलाने की कोशिश की थी, और यह भी कोशिश की:

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


0

मुझे लगता है कि यह उल्लेख के लायक है क्योंकि यह मेरे मुद्दों की जांच थी

/etc/yum.repos.d/*

और अगर वहाँ का उपयोग नहीं किया है या अनौपचारिक स्रोत की जाँच करें


-3

हम इस त्रुटि को कैसे ठीक कर सकते हैं?

Error:  Multilib version problems found.

इसका मतलब अक्सर यह होता है कि मूल कारण कुछ और है और मल्टीबिल संस्करण की जाँच सिर्फ यह बताती है कि कोई समस्या है। उदाहरण के लिए .:

  1. आपके पास एपीआर के लिए एक अपग्रेड है जो कुछ निर्भरता को याद कर रहा है जो दूसरे पैकेज की आवश्यकता है। यम विभिन्न आर्किटेक्चर के अप्रैल के पुराने संस्करण को स्थापित करके इसे हल करने की कोशिश कर रहा है। यदि आप खराब आर्किटेक्चर को बाहर करते हैं तो यम आपको बताएगा कि मूल कारण क्या है (किस पैकेज के लिए क्या आवश्यक है)। आप नवीनीकरण को फिर से करने की कोशिश कर सकते --exclude apr.otherarch ...हैं, इससे आपको समस्या का मूल कारण दिखाने में त्रुटि संदेश मिल सकता है।

  2. आपके पास apr के कई आर्किटेक्चर स्थापित हैं, लेकिन yum केवल उन्हीं आर्किटैक्ट में से एक के लिए अपग्रेड देख सकता है। यदि आप दोनों आर्किटेक्चर की आवश्यकता नहीं चाहते हैं, तो आप लापता अपडेट को हटा सकते हैं और सब कुछ काम करेगा।

  3. आपके पास पहले से इंस्टॉल एप के डुप्लिकेट संस्करण हैं। आप yum checkयम को इन त्रुटियों को दिखाने के लिए उपयोग कर सकते हैं।

    ... आप --setopt=protected_multilib=falseइस चेकिंग को हटाने के लिए भी उपयोग कर सकते हैं , हालांकि यह लगभग कभी भी सही नहीं है क्योंकि कुछ और गलत होने की संभावना है (अक्सर बहुत अधिक समस्याएं पैदा करता है)।

    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=falseसहायक। धन्यवाद।
स्कॉट एच एच
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.