欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時間:2019年11月25日 14:23:23   作者:AI Algorithms  
在本篇文章里小編給大家整理的是關于linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方法,有需要的朋友們參考下。

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

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

yum remove yum

然后就杯具了...

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

這個粗心的手誤倒不至于讓整個系統(tǒng)癱瘓,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,結(jié)果再次出現(xiàn)莫名錯誤

[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調(diào)用的是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命令,結(jié)果正常了,大喜

[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:

最后,趕緊更新一下系統(tǒng)吧

yum update

好了 這樣yum問題就完全解決了!大家可以嘗試下,感謝你對腳本之家的支持。

相關文章

  • Linux運維基礎進程管理及環(huán)境組成分析

    Linux運維基礎進程管理及環(huán)境組成分析

    這篇文章主要為大家介紹了Linux運維基礎,對其中進程管理及環(huán)境組成分析作了詳細的分析,有需要的朋友可以借鑒參考下,希望可以有所幫助
    2021-09-09
  • Ubuntu20.04桌面安裝及root權限開通和ssh安裝詳解

    Ubuntu20.04桌面安裝及root權限開通和ssh安裝詳解

    這篇文章主要介紹了Ubuntu20.04桌面安裝及root權限開通和ssh安裝詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2020-08-08
  • apache tika檢測文件是否損壞的方法

    apache tika檢測文件是否損壞的方法

    Apache Tika用于文件類型檢測和從各種格式的文件內(nèi)容提取的庫。這篇文章主要介紹了apache tika檢測文件是否損壞,需要的朋友可以參考下
    2019-09-09
  • varnish 配置文件分享(sens楊 注釋)

    varnish 配置文件分享(sens楊 注釋)

    varnish 為目前新興起來的軟件,由于中文文檔比較少,配置文件比較復雜,所以在運用起來也是特別的費勁。一個偶然的機會在一個群里,有位varnish高手( sens楊 )發(fā)表了一篇他對varnish配置文件理解的文檔。對于學者來說很有價值。所以轉(zhuǎn)載了過來
    2016-02-02
  • CentOS查詢軟件包的安裝位置

    CentOS查詢軟件包的安裝位置

    這篇文章主要介紹了在CentOS中使用yum -ql <軟件包名>的方式查詢軟件包的安裝位置,有需要的朋友可以參考下
    2014-09-09
  • apache簡介_動力節(jié)點Java學院整理

    apache簡介_動力節(jié)點Java學院整理

    本篇文章主要介紹apache簡介,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-08-08
  • centos 6.5下修改SSH端口及禁用root遠程登錄的方法

    centos 6.5下修改SSH端口及禁用root遠程登錄的方法

    Linux各發(fā)行版中SSH端口默認為22,如果正式做站或其它用途,為了提高安全性就需要修改掉默認的SSH端口號,防止被有心人窮舉密碼。這篇文章主要給大家介紹了在centos 6.5系統(tǒng)下修改SSH端口及禁用root遠程登錄的方法,需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-02-02
  • 如何在linux服務器上使用tensorboard

    如何在linux服務器上使用tensorboard

    這篇文章主要介紹了如何在linux服務器上使用tensorboard,包括錯誤記錄,本文給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧
    2024-06-06
  • 利用Apache?Common將java對象池化的問題

    利用Apache?Common將java對象池化的問題

    對象被創(chuàng)建后,使用完畢不是立即銷毀回收對象,而是將對象放到一個容器保存起來,下次使用的時候不用創(chuàng)建對象,而是從容器中直接獲取,這篇文章主要介紹了利用Apache?Common將java對象“池化”,需要的朋友可以參考下
    2022-06-06
  • Ubuntu刪除多余內(nèi)核的方法

    Ubuntu刪除多余內(nèi)核的方法

    這篇文章主要介紹了Ubuntu刪除多余內(nèi)核的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-12-12

最新評論