亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

linux輸入yum后提示: -bash: /usr/bin/yum: No

系統 2250 0
linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方案

今天在安裝程序時,發現有一個插件未安裝,我就隨手敲了一個命令,看都沒看

        yum remove yum
      

然后就杯具了...

        
          1
        
          [root@localhost ~]# yum 


        
          2
        
          -bash: /usr/bin/yum: No such 
        
          file
        
         or directory 
      

?

這個粗心的手誤倒不至于讓整個系統癱瘓,yum 卻無法使用了。于是,我試著折騰了一番

        
          1
        
          rpm -ivh  --nodeps http:
        
          //
        
        
          mirrors.163.com/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-14.el5.centos.1.noarch.rpm  
        
        
          2
        
          rpm -ivh  --nodeps http:
        
          //
        
        
          mirrors.163.com/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-3.el5.centos.x86_64.rpm  
        
        
          3
        
          rpm -ivh  --nodeps http:
        
          //
        
        
          mirrors.163.com/centos/5/os/x86_64/CentOS/yum-3.2.22-26.el5.centos.noarch.rpm
        
      

關于rpm --nodeps的解釋

        
          1
        
         --nodeps                         don
        
          '
        
        
          t verify package dependencies 
        
      

接下來,再次嘗試輸入yum,結果再次出現莫名錯誤

        
           1
        
          [root@localhost ~]# yum 


        
           2
        
          There was a problem importing one of the Python modules 


        
           3
        
          required to run yum. The error leading to this problem was: 


        
           4
        
        
           5
        
          libxml2.so.
        
          2
        
        : cannot open shared 
        
          object
        
        
          file
        
        : No such 
        
          file
        
         or directory 


        
           6
        
        
           7
        
          Please 
        
          install
        
         a package 
        
          which
        
         provides this module, or 


        
           8
        
          verify that the module is installed correctly. 


        
           9
        
        
          10
        
          It
        
          '
        
        
          s possible that the above module doesn
        
        
          '
        
        t match the 


        
          11
        
          current version of Python, 
        
          which
        
         is: 


        
          12
        
        
          2.4
        
        .
        
          3
        
         (#
        
          1
        
        , Nov 
        
          11
        
        
          2010
        
        , 
        
          13
        
        :
        
          30
        
        :
        
          19
        
        )  


        
          13
        
          [GCC 
        
          4.1
        
        .
        
          2
        
        
          20080704
        
         (Red Hat 
        
          4.1
        
        .
        
          2
        
        -
        
          48
        
        )] 


        
          14
        
        
          15
        
          If you cannot solve this problem yourself, please go to  


        
          16
        
          the yum faq at: 


        
          17
        
          http:
        
          //
        
        
          wiki.linux.duke.edu/YumFaq 
        
      

因為yum調用的是python,運行 Python,試下是否可行

        
           1
        
         [root@localhost~
        
          ]# python 


        
        
           2
        
          Python 
        
          2.4
        
        .
        
          3
        
         (#
        
          1
        
        , Nov 
        
          11
        
        
          2010
        
        , 
        
          13
        
        :
        
          30
        
        :
        
          19
        
        
          )  


        
        
           3
        
          [GCC 
        
          4.1
        
        .
        
          2
        
        
          20080704
        
         (Red Hat 
        
          4.1
        
        .
        
          2
        
        -
        
          48
        
        
          )] on linux2 


        
        
           4
        
          Type 
        
          "
        
        
          help
        
        
          "
        
        , 
        
          "
        
        
          copyright
        
        
          "
        
        , 
        
          "
        
        
          credits
        
        
          "
        
         or 
        
          "
        
        
          license
        
        
          "
        
        
          for
        
        
          more
        
        
           information. 


        
        
           5
        
          >>>
        
           import yum 


        
        
           6
        
          Traceback (most recent call 
        
          last
        
        
          ): 


        
        
           7
        
            File 
        
          "
        
        
          <stdin>
        
        
          "
        
        , line 
        
          1
        
        , 
        
          in
        
         ? 


        
           8
        
            File 
        
          "
        
        
          /usr/lib/python2.4/site-packages/yum/__init__.py
        
        
          "
        
        , line 
        
          54
        
        , 
        
          in
        
         ? 


        
           9
        
        
               import transactioninfo 


        
        
          10
        
            File 
        
          "
        
        
          /usr/lib/python2.4/site-packages/yum/transactioninfo.py
        
        
          "
        
        , line 
        
          31
        
        , 
        
          in
        
         ? 


        
          11
        
        
               from sqlitesack import YumAvailablePackageSqlite 


        
        
          12
        
            File 
        
          "
        
        
          /usr/lib/python2.4/site-packages/yum/sqlitesack.py
        
        
          "
        
        , line 
        
          26
        
        , 
        
          in
        
         ? 


        
          13
        
        
               import yumRepo 


        
        
          14
        
            File 
        
          "
        
        
          /usr/lib/python2.4/site-packages/yum/yumRepo.py
        
        
          "
        
        , line 
        
          32
        
        , 
        
          in
        
         ? 


        
          15
        
        
               import sqlitecachec 


        
        
          16
        
            File 
        
          "
        
        
          /usr/lib64/python2.4/site-packages/sqlitecachec.py
        
        
          "
        
        , line 
        
          19
        
        , 
        
          in
        
         ? 


        
          17
        
        
               import _sqlitecache 


        
        
          18
        
          ImportError: libxml2.so.
        
          2
        
        : cannot open shared 
        
          object
        
        
          file
        
        : No such 
        
          file
        
        
           or directory 


        
        
          19
        
          >>>  
      

?

?

?

提示缺少libxml2.so.2,安裝一下試試

        rpm -ivh http:
        
          //
        
        
          mirrors.163.com/centos/5/os/x86_64/CentOS/libxml2-2.6.26-2.1.2.8.x86_64.rpm
        
      

再次測試運行下yum命令,結果正常了,大喜

?

        
           1
        
         [root@localhost ~
        
          ]# yum 


        
        
           2
        
        
           Loaded plugins: fastestmirror 


        
        
           3
        
        
           You need to give some command 


        
        
           4
        
        
           usage: yum [options] COMMAND 


        
        
           5
        
        
           6
        
        
           List of Commands: 


        
        
           7
        
        
           8
        
          check-update   Check 
        
          for
        
        
           available package updates 


        
        
           9
        
        
           clean          Remove cached data 


        
        
          10
        
          deplist        List a package
        
          '
        
        
          s dependencies 
        
        
          11
        
        
           downgrade      downgrade a package 


        
        
          12
        
        
           erase          Remove a package or packages from your system 


        
        
          13
        
        
           groupinfo      Display details about a package group 


        
        
          14
        
          groupinstall   Install the packages 
        
          in
        
        
           a group on your system 


        
        
          15
        
          grouplist      List available package 
        
          groups
        
        
          16
        
          groupremove    Remove the packages 
        
          in
        
        
           a group from your system 


        
        
          17
        
        
           help           Display a helpful usage message 


        
        
          18
        
        
          info
        
        
                     Display details about a package or group of packages 


        
        
          19
        
        
          install
        
        
                  Install a package or packages on your system 


        
        
          20
        
          list           List a package or 
        
          groups
        
        
           of packages 


        
        
          21
        
        
           localinstall   Install a local RPM 


        
        
          22
        
        
           makecache      Generate the metadata cache 


        
        
          23
        
        
           provides       Find what package provides the given value 


        
        
          24
        
        
           reinstall      reinstall a package 


        
        
          25
        
        
           repolist       Display the configured software repositories 


        
        
          26
        
          resolvedep     Determine 
        
          which
        
        
           package provides the given dependency 


        
        
          27
        
          search         Search package details 
        
          for
        
         the given 
        
          string
        
        
          28
        
        
           shell          Run an interactive yum shell 


        
        
          29
        
        
           update         Update a package or packages on your system 


        
        
          30
        
        
           upgrade        Update packages taking obsoletes into account 


        
        
          31
        
        
          32
        
        
          33
        
        
           options: 


        
        
          34
        
            -h, --
        
          help            show this help message and exit 


        
        
          35
        
            -t, --
        
          tolerant        be tolerant of errors 


        
        
          36
        
            -C                    run entirely from cache, don
        
          '
        
        
          t update cache 
        
        
          37
        
            -c  [config 
        
          file
        
        ]     config 
        
          file
        
        
           location 


        
        
          38
        
            -R  [minutes]         maximum command 
        
          wait
        
        
          time
        
        
          39
        
            -
        
          d  [debug level]     debugging output level 


        
        
          40
        
            --showduplicates      show duplicates, 
        
          in
        
         repos, 
        
          in
        
         list/
        
          search commands 


        
        
          41
        
            -
        
          e  [error level]     error output level 


        
        
          42
        
            -q, --
        
          quiet           quiet operation 


        
        
          43
        
            -v, --
        
          verbose         verbose operation 


        
        
          44
        
            -y                    answer yes 
        
          for
        
        
           all questions 


        
        
          45
        
            --
        
          version             show Yum version and exit 


        
        
          46
        
            --installroot=[path]  set 
        
          install
        
        
           root 


        
        
          47
        
            --enablerepo=[repo]   enable one or 
        
          more
        
        
           repositories (wildcards allowed) 


        
        
          48
        
            --disablerepo=[repo]  disable one or 
        
          more
        
        
           repositories (wildcards allowed) 


        
        
          49
        
            -x [package], --exclude=
        
          [package] 


        
        
          50
        
        
                                   exclude package(s) by name or glob 


        
        
          51
        
            --disableexcludes=
        
          [repo] 


        
        
          52
        
                                  disable exclude from main, 
        
          for
        
         a repo or 
        
          for
        
        
          53
        
        
                                   everything 


        
        
          54
        
            --
        
          obsoletes           enable obsoletes processing during updates 


        
        
          55
        
            --
        
          noplugins           disable Yum plugins 


        
        
          56
        
            --
        
          nogpgcheck          disable gpg signature checking 


        
        
          57
        
            --disableplugin=
        
          [plugin] 


        
        
          58
        
        
                                   disable plugins by name 


        
        
          59
        
            --enableplugin=
        
          [plugin] 


        
        
          60
        
        
                                   enable plugins by name 


        
        
          61
        
            --skip-
        
          broken         skip packages with depsolving problems 


        
        
          62
        
            --color=
        
          COLOR         control whether color is used 


        
        
          63
        
        
          64
        
            Plugin Options: 
      

最后,趕緊更新一下系統吧

        
          1
        
         yum update
      

好了 這樣yum問題就完全解決了!

linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方案


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产综合91| 成人免费午间影院在线观看 | 天天做天天做天天综合网 | 欧美激情特级黄aa毛片 | 特黄特黄一级高清免费大片 | 亚洲欧美片 | 欧美娇小www | 国产香蕉偷在线观看视频 | 狠狠色噜噜噜噜狠狠狠狠狠狠奇米 | 视频一区二区欧美日韩在线 | 免费毛片播放 | 男女一级毛片免费播放 | julia中文在线 | 米奇777第四久久久99 | 99精品免费在线 | 九九精彩视频在线观看视频 | 久久这里只有精品6 | 激情五月五月婷婷 | 韩国精品欧美一区二区三区 | 国产在线一区二区三区欧美 | 99热成人精品热久久66 | 我想看一级播放片一级的 | 狠狠色噜狠狠狠狠 | 深夜免费在线视频 | 日韩中文字幕一区二区不卡 | 久青草国产观看在线视频 | 天天做人人爱夜夜爽2020 | 欧美成人自拍 | 欧美国产片| 91久久精品国产一区二区 | 亚洲午夜日韩高清一区 | 国产精品永久免费视频 | 欧美在线成人午夜影视 | 免费一级特黄 | 久久久久国产 | 色老头老太xxxxbbbb | 精品国产福利在线观看一区 | www.国产.com| 牛牛色婷婷在线视频播放 | 精品中文字幕久久久久久 | 青青久久国产 |