好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁(yè) > 知識(shí)庫(kù) > linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方法

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

熱門(mén)標(biāo)簽:外呼系統(tǒng)虛擬號(hào)碼 400電話(huà)干嘛怎么申請(qǐng)信用卡 長(zhǎng)春電銷(xiāo)外呼系統(tǒng)代理商 泰州智能外呼系統(tǒng)排名 大連電銷(xiāo)外呼系統(tǒng)運(yùn)營(yíng)商 400電話(huà)申請(qǐng)知乎 代理外呼系統(tǒng)創(chuàng)業(yè) 百度地圖標(biāo)注尺寸無(wú)法顯示 接電話(huà)機(jī)器人罵人

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

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

yum remove yum

然后就杯具了...

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

這個(gè)粗心的手誤倒不至于讓整個(gè)系統(tǒng)癱瘓,yum 卻無(wú)法使用了。于是,我試著折騰了一番

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

關(guān)于rpm --nodeps的解釋

--nodeps             don't verify package dependencies 

接下來(lái),再次嘗試輸入yum,結(jié)果再次出現(xiàn)莫名錯(cuò)誤

[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

因?yàn)閥um調(diào)用的是python,運(yùn)行 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

再次測(cè)試運(yùn)行下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問(wèn)題就完全解決了!大家可以嘗試下,感謝你對(duì)腳本之家的支持。

標(biāo)簽:安陽(yáng) 長(zhǎng)治 雅安 大慶 中衛(wèi) 臺(tái)灣 清遠(yuǎn) 興安盟

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方法》,本文關(guān)鍵詞  linux,輸入,yum,后,提示,-bash,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方法》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于linux輸入yum后提示: -bash: /usr/bin/yum: No such file or directory的解決方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 久久国产 理论片免费| 美女扒精光视频网站| 香港黄色碟片黄色碟片| 免费看黄色一级片| 男人和女人做视频毛片| 鲍鱼tv最新| 九九九惹伊人在钱69| 端庄娇妻的沦陷接种| 婷婷午夜精品久久久久久性色AV| 亚洲精品无码电影| 成熟冰莲肥胞自慰人体| 伊人久久综合热线大杳蕉伊9| 糟老头至尊永久免费版下载| 可以免费看污片的网站| 在街上他突然按了跳d遥控器| 武则天艳史婬片A级81| 日在校园| 春闺秘史在线阅读| 欧美3p两根一起进高清免费视频 | 啊啊啊嗯嗯啊| 夹看学长的巨大写作业| 一级毛片小幻女| 亚洲首页国产精品丝袜| 国精产品自偷自偷综合| 徐倩被校长c到高潮了几次| 亚洲精品www| 国产欧美高清一区二区三区| 男女污污视频在线观看| 亚洲精品毛片VA一区二区鸭王2 | 天天影视色香欲综合网站www| 自拍网友自拍三级经典三级| 小x福利视频导航| 纲手被鸣人操| 白洁性荡史| 欧美激情视频在线观看| 人妻为夫升职之HD| 国产一级特黄| 美女被?到爽??奶头动态| 99re国产精品视频网站| 午夜免费视频.在线观看| 777色婷婷AV一区二区三99|