91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Linux中yum管理工具被誤刪的問題怎么解決

發布時間:2021-09-17 17:53:14 來源:億速云 閱讀:137 作者:chen 欄目:系統運維

本篇內容介紹了“Linux中yum管理工具被誤刪的問題怎么解決”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

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

代碼如下:


yum remove yum


然后就杯具了...

代碼如下:


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


 

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

代碼如下:


 rpm -ivh  --nodeps <a href="http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-14.el5.centos.1.noarch.rpm">http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-14.el5.centos.1.noarch.rpm</a>  
 rpm -ivh  --nodeps <a href="http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-3.el5.centos.x86_64.rpm">http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-3.el5.centos.x86_64.rpm</a>  
 rpm -ivh  --nodeps <a href="http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-3.2.22-26.el5.centos.noarch.rpm[/code">http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-3.2.22-26.el5.centos.noarch.rpm[/code</a>]
關于rpm --nodeps的解釋
[code]
--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:
 <a href="http://wiki.linux.duke.edu/YumFaq">http://wiki.linux.duke.edu/YumFaq</a>

因為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 <a href="http://mirrors.163.com/centos/5/os/x86_64/CentOS/libxml2-2.6.26-2.1.2.8.x86_64.rpm[/code">http://mirrors.163.com/centos/5/os/x86_64/CentOS/libxml2-2.6.26-2.1.2.8.x86_64.rpm[/code</a>]
再次測試運行下yum命令,結果正常了,大喜
[code]
[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問題就完全解決了!

“Linux中yum管理工具被誤刪的問題怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保定市| 元谋县| 濮阳县| 房产| 利辛县| 湖南省| 于都县| 霞浦县| 凌源市| 宁河县| 孝感市| 永和县| 常德市| 城固县| 奉化市| 德保县| 邢台市| 渑池县| 大荔县| 宜兰县| 常州市| 宁都县| 唐河县| 花垣县| 南丰县| 长垣县| 金山区| 田阳县| 苍山县| 明水县| 马公市| 安顺市| 耒阳市| 二连浩特市| 姜堰市| 湘西| 独山县| 金门县| 延边| 铜鼓县| 大新县|