欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux输入yum后提示: -bash: /usr/bin/yum: No such file or directory的解决方法

程序员文章站 2022-07-09 16:43:32
linux输入yum后提示: -bash: /usr/bin/yum: no such file or directory的解决方案 今天在安装程序时,发现有一个插件未安装,我就...

linux输入yum后提示: -bash: /usr/bin/yum: no such file or directory的解决方案

今天在安装程序时,发现有一个插件未安装,我就随手敲了一个命令,看都没看

yum remove yum

然后就杯具了...

[root@localhost ~]# yum 
-bash: /usr/bin/yum: no such file or directory 

这个粗心的手误倒不至于让整个系统瘫痪,yum 却无法使用了。于是,我试着折腾了一番

rpm -ivh --nodeps http://mirrors.163.com/centos/5/os/x86_64/centos/yum-fastestmirror-1.1.16-14.el5.centos.1.noarch.rpm 
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 
rpm -ivh --nodeps http://mirrors.163.com/centos/5/os/x86_64/centos/yum-3.2.22-26.el5.centos.noarch.rpm

关于rpm --nodeps的解释

--nodeps             don't verify package dependencies 

接下来,再次尝试输入yum,结果再次出现莫名错误

[root@localhost ~]# yum 
 there was a problem importing one of the python modules 
 required to run yum. the error leading to this problem was: 
 
 libxml2.so.2: cannot open shared object file: no such file or directory 
 
 please install a package which provides this module, or 
 verify that the module is installed correctly. 
 
 it's possible that the above module doesn't match the 
 current version of python, which is: 
 2.4.3 (#1, nov 11 2010, 13:30:19) 
 [gcc 4.1.2 20080704 (red hat 4.1.2-48)] 
 
 if you cannot solve this problem yourself, please go to 
 the yum faq at: 
 http://wiki.linux.duke.edu/yumfaq

因为yum调用的是python,运行 python,试下是否可行

[root@localhost~]# python 
 python 2.4.3 (#1, nov 11 2010, 13:30:19) 
 [gcc 4.1.2 20080704 (red hat 4.1.2-48)] on linux2 
 type "help", "copyright", "credits" or "license" for more information. 
 >>> import yum 
 traceback (most recent call last): 
  file "<stdin>", line 1, in ? 
  file "/usr/lib/python2.4/site-packages/yum/__init__.py", line 54, in ? 
   import transactioninfo 
  file "/usr/lib/python2.4/site-packages/yum/transactioninfo.py", line 31, in ? 
   from sqlitesack import yumavailablepackagesqlite 
  file "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 26, in ? 
   import yumrepo 
  file "/usr/lib/python2.4/site-packages/yum/yumrepo.py", line 32, in ? 
   import sqlitecachec 
  file "/usr/lib64/python2.4/site-packages/sqlitecachec.py", line 19, in ? 
   import _sqlitecache 
 importerror: libxml2.so.2: cannot open shared object file: no such file or directory 
 >>>

提示缺少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命令,结果正常了,大喜

[root@localhost ~]# yum 
 loaded plugins: fastestmirror 
 you need to give some command 
 usage: yum [options] command 
 
 list of commands: 
 
 check-update  check for available package updates 
 clean     remove cached data 
 deplist    list a package's dependencies 
 downgrade   downgrade a package 
 erase     remove a package or packages from your system 
 groupinfo   display details about a package group 
 groupinstall  install the packages in a group on your system 
 grouplist   list available package groups 
 groupremove  remove the packages in a group from your system 
 help      display a helpful usage message 
 info      display details about a package or group of packages 
 install    install a package or packages on your system 
 list      list a package or groups of packages 
 localinstall  install a local rpm 
 makecache   generate the metadata cache 
 provides    find what package provides the given value 
 reinstall   reinstall a package 
 repolist    display the configured software repositories 
 resolvedep   determine which package provides the given dependency 
 search     search package details for the given string 
 shell     run an interactive yum shell 
 update     update a package or packages on your system 
 upgrade    update packages taking obsoletes into account 
 
 
 options: 
  -h, --help      show this help message and exit 
  -t, --tolerant    be tolerant of errors 
  -c          run entirely from cache, don't update cache 
  -c [config file]   config file location 
  -r [minutes]     maximum command wait time 
  -d [debug level]   debugging output level 
  --showduplicates   show duplicates, in repos, in list/search commands 
  -e [error level]   error output level 
  -q, --quiet      quiet operation 
  -v, --verbose     verbose operation 
  -y          answer yes for all questions 
  --version       show yum version and exit 
  --installroot=[path] set install root 
  --enablerepo=[repo]  enable one or more repositories (wildcards allowed) 
  --disablerepo=[repo] disable one or more repositories (wildcards allowed) 
  -x [package], --exclude=[package] 
             exclude package(s) by name or glob 
  --disableexcludes=[repo] 
             disable exclude from main, for a repo or for 
             everything 
  --obsoletes      enable obsoletes processing during updates 
  --noplugins      disable yum plugins 
  --nogpgcheck     disable gpg signature checking 
  --disableplugin=[plugin] 
             disable plugins by name 
  --enableplugin=[plugin] 
             enable plugins by name 
  --skip-broken     skip packages with depsolving problems 
  --color=color     control whether color is used 
 
  plugin options:

最后,赶紧更新一下系统吧

yum update

好了 这样yum问题就完全解决了!大家可以尝试下,感谢你对的支持。