why yum update skipped 1000 package for dependency problems?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












This morning I decided to update my Linux(CentOs 7.2.1511).but yum skip too many package because of dependency problem.



is it OK to proceed to update?! and why yum is skipping that so many packages?!



Transaction Summary
================================================================================
Install 4 Packages (+11 Dependent packages)
Upgrade 160 Packages
Skipped (dependency problems) 941 Packages

Total download size: 195 M






share|improve this question


























    up vote
    0
    down vote

    favorite












    This morning I decided to update my Linux(CentOs 7.2.1511).but yum skip too many package because of dependency problem.



    is it OK to proceed to update?! and why yum is skipping that so many packages?!



    Transaction Summary
    ================================================================================
    Install 4 Packages (+11 Dependent packages)
    Upgrade 160 Packages
    Skipped (dependency problems) 941 Packages

    Total download size: 195 M






    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      This morning I decided to update my Linux(CentOs 7.2.1511).but yum skip too many package because of dependency problem.



      is it OK to proceed to update?! and why yum is skipping that so many packages?!



      Transaction Summary
      ================================================================================
      Install 4 Packages (+11 Dependent packages)
      Upgrade 160 Packages
      Skipped (dependency problems) 941 Packages

      Total download size: 195 M






      share|improve this question














      This morning I decided to update my Linux(CentOs 7.2.1511).but yum skip too many package because of dependency problem.



      is it OK to proceed to update?! and why yum is skipping that so many packages?!



      Transaction Summary
      ================================================================================
      Install 4 Packages (+11 Dependent packages)
      Upgrade 160 Packages
      Skipped (dependency problems) 941 Packages

      Total download size: 195 M








      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 29 '17 at 10:10









      GAD3R

      22.6k154894




      22.6k154894










      asked Nov 29 '17 at 5:24









      mehrdad

      11




      11




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          This is because you've not updated the system for long days. Meantime CentOS 7.3 and CentOS 7.4 (current) has been released.



          Some packages and libraries has been obsoleted in new system. To update yum need to remove them. But as your system is running based on those yum is failed to remove those packages.



          Solution dnf can solve and skipe some dependency issues automatically. Install dnf as follows



          sudo yum install dnf


          If this fails with 'No Package foundinstalldnffrom somerpmsource. Google for 'dnf rpm download, chose one for CentOS 7.x or RHEL 7. Then install it as follows



          sudo rpm -Uvh path_to_downloaded_rpm


          Then Update using dnf as follows
          sudo dnf update



          Then clean as much unnecessary packages as possible using



          sudo yum autoremove
          sudo yum clean all
          sudo dnf autoremove
          sudo dnf clean all


          Now again try to update using yum. You're likely to hit dependency problem again but with lesser number of package having issues. Then try to understand what those packages are and remove them one by one using yum or dnf.



          Warning Please have a full backup before doing anything. It's very much likely that you'll face some issues during the process. Please update with error messages.






          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407648%2fwhy-yum-update-skipped-1000-package-for-dependency-problems%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote













            This is because you've not updated the system for long days. Meantime CentOS 7.3 and CentOS 7.4 (current) has been released.



            Some packages and libraries has been obsoleted in new system. To update yum need to remove them. But as your system is running based on those yum is failed to remove those packages.



            Solution dnf can solve and skipe some dependency issues automatically. Install dnf as follows



            sudo yum install dnf


            If this fails with 'No Package foundinstalldnffrom somerpmsource. Google for 'dnf rpm download, chose one for CentOS 7.x or RHEL 7. Then install it as follows



            sudo rpm -Uvh path_to_downloaded_rpm


            Then Update using dnf as follows
            sudo dnf update



            Then clean as much unnecessary packages as possible using



            sudo yum autoremove
            sudo yum clean all
            sudo dnf autoremove
            sudo dnf clean all


            Now again try to update using yum. You're likely to hit dependency problem again but with lesser number of package having issues. Then try to understand what those packages are and remove them one by one using yum or dnf.



            Warning Please have a full backup before doing anything. It's very much likely that you'll face some issues during the process. Please update with error messages.






            share|improve this answer
























              up vote
              1
              down vote













              This is because you've not updated the system for long days. Meantime CentOS 7.3 and CentOS 7.4 (current) has been released.



              Some packages and libraries has been obsoleted in new system. To update yum need to remove them. But as your system is running based on those yum is failed to remove those packages.



              Solution dnf can solve and skipe some dependency issues automatically. Install dnf as follows



              sudo yum install dnf


              If this fails with 'No Package foundinstalldnffrom somerpmsource. Google for 'dnf rpm download, chose one for CentOS 7.x or RHEL 7. Then install it as follows



              sudo rpm -Uvh path_to_downloaded_rpm


              Then Update using dnf as follows
              sudo dnf update



              Then clean as much unnecessary packages as possible using



              sudo yum autoremove
              sudo yum clean all
              sudo dnf autoremove
              sudo dnf clean all


              Now again try to update using yum. You're likely to hit dependency problem again but with lesser number of package having issues. Then try to understand what those packages are and remove them one by one using yum or dnf.



              Warning Please have a full backup before doing anything. It's very much likely that you'll face some issues during the process. Please update with error messages.






              share|improve this answer






















                up vote
                1
                down vote










                up vote
                1
                down vote









                This is because you've not updated the system for long days. Meantime CentOS 7.3 and CentOS 7.4 (current) has been released.



                Some packages and libraries has been obsoleted in new system. To update yum need to remove them. But as your system is running based on those yum is failed to remove those packages.



                Solution dnf can solve and skipe some dependency issues automatically. Install dnf as follows



                sudo yum install dnf


                If this fails with 'No Package foundinstalldnffrom somerpmsource. Google for 'dnf rpm download, chose one for CentOS 7.x or RHEL 7. Then install it as follows



                sudo rpm -Uvh path_to_downloaded_rpm


                Then Update using dnf as follows
                sudo dnf update



                Then clean as much unnecessary packages as possible using



                sudo yum autoremove
                sudo yum clean all
                sudo dnf autoremove
                sudo dnf clean all


                Now again try to update using yum. You're likely to hit dependency problem again but with lesser number of package having issues. Then try to understand what those packages are and remove them one by one using yum or dnf.



                Warning Please have a full backup before doing anything. It's very much likely that you'll face some issues during the process. Please update with error messages.






                share|improve this answer












                This is because you've not updated the system for long days. Meantime CentOS 7.3 and CentOS 7.4 (current) has been released.



                Some packages and libraries has been obsoleted in new system. To update yum need to remove them. But as your system is running based on those yum is failed to remove those packages.



                Solution dnf can solve and skipe some dependency issues automatically. Install dnf as follows



                sudo yum install dnf


                If this fails with 'No Package foundinstalldnffrom somerpmsource. Google for 'dnf rpm download, chose one for CentOS 7.x or RHEL 7. Then install it as follows



                sudo rpm -Uvh path_to_downloaded_rpm


                Then Update using dnf as follows
                sudo dnf update



                Then clean as much unnecessary packages as possible using



                sudo yum autoremove
                sudo yum clean all
                sudo dnf autoremove
                sudo dnf clean all


                Now again try to update using yum. You're likely to hit dependency problem again but with lesser number of package having issues. Then try to understand what those packages are and remove them one by one using yum or dnf.



                Warning Please have a full backup before doing anything. It's very much likely that you'll face some issues during the process. Please update with error messages.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 29 '17 at 9:30









                Abhik Bose

                1,5341217




                1,5341217



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f407648%2fwhy-yum-update-skipped-1000-package-for-dependency-problems%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay