在用rpm命令删队linux系统中的rpm软件包时总是提示specifies multiple packages,可以加 一个 –-allmatches 参数来解决。 例:rpm -e mysql-5.0.77-3  --nodeps --allmatches
原创 2012-04-17 11:25:58
1028阅读
#源码安装前准备 rpm -qa|grep subversion subversion-1.4.4.el5 rpm -e --allmatches subversion rpm -qa|grep apr apr-1.2.7-11 apr-util-1.2.7-7.el5 apr-1.2.7-11 apr-util-1.2.7-7.el5 rpm -e --allmatches a
原创 2012-05-31 20:01:09
324阅读
1.针对误卸载yum卸载pythonrpm -qa|grep python|xargs rpm -e --allmatches --nodepswhereis python|xargs rm -fr2.卸载yumrpm -qa|grep yum|xargs rpm -e --allmatches --nodepswhereis yum|xargs rm -fr3.新建一个文...
原创 2021-08-29 10:40:06
2964阅读
执行sudo rpm -e libdrizzle-0.8-6.el5,发现如下问题:error: "libdrizzle-0.8-6.el5" specifies multiple packages添加参数:--allmatches–allmatchesRemove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matchesmultiple packages.sudo rpm -e --allmatches libdrizz
原创 2021-08-24 16:07:33
150阅读
#源码安装前准备 rpm -qa|grep subversion subversion-1.4.4.el5 rpm -e --allmatches subversion rpm -qa|grep apr apr-1.2.7-11 apr-util-1.2.7-7.el5 apr-1.2.7-11 apr-util-1.2.7-7.el5 rpm -e --allmatches a
转载 精选 2012-11-08 11:11:07
269阅读
rpm -e --allmatches --nodeps libevent-1.1a-3.2.1--allmatches     删除所有那些包匹配PACKAGE_NAME的版本。如果PACKAGE_NAME有多个匹配,正常情况下将有一个错误说明。升级时openssl遇到的怪胎,error: specifies multiple packageserror:
转载 精选 2014-09-10 20:35:11
2974阅读
删除所有python版本rpm -qa|grep python|xargs rpm -e --allmatches --nodepswhereis python|xargs rm -r
原创 2022-07-22 21:46:59
384阅读
allmatches Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matchesmultiple packages.造成这个问题的主...
IT
转载 2014-08-22 16:48:00
130阅读
2评论
(1)强制删除已安装python及其关联  # rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps  (2)删除残余文件# whereis python|xargs rm -frv  
转载 2023-05-19 15:43:07
26阅读
--allmatches 删除所有匹配指定名称的程序包--nodeps 忽略软件依赖关系--test 测试卸载过程--noscripts 不执行脚本 相关脚本的解释参考RPM自带脚本
原创 2018-03-15 23:24:52
1698阅读
1点赞
1评论
   手动卸载python并更新            rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps whereis python |xargs rm -frv whereis python cd /home/source wget https://www.python.org/ftp/python/3.6.5/Pyt
转载 2021-05-07 10:45:30
451阅读
2评论
rpm -qa|grep python3|xargs rpm -ev --allmatches --nodeps 卸载pyhton3python3 |xargs rm -frv 删除所有残余文件 成功卸载!python 查看现有安装的python
转载 2023-06-20 10:29:39
237阅读
卸载 python 2.7 rpm -qa|grep python2|xargs rpm -ev --allmatches --nodeps whereis python2 |xargs rm -frv 卸载 python3 rpm -qa|grep python3|xargs rpm -ev --
原创 9月前
83阅读
1、卸载python3 rpm -qa|grep python3|xargs rpm -ev --allmatches --nodeps 2、 删除所有残余文件 whereis python3 |xargs rm -frv 3、查看现有安装的python whereis python ...
转载 2021-10-04 15:38:00
5898阅读
1点赞
2评论
rpm -e --allmatches --nodeps libevent-1.1a-3.2.1   升级时openssl遇到的怪胎,error: specifies multiple packages error: specifies multiple packages 卸载openssl rpm包遇到的怪胎 [root@testserver openssl-0.9.8l
转载 精选 2011-01-05 09:47:25
1369阅读
bu小心删除了usr/bin/yum-config-manager 导致yum update无法使用 1、删除现有的python rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制清除已安装的程序及其关联 whereis pyth ...
转载 2021-07-19 15:27:00
617阅读
2评论
一、卸载自带python1.rpm -qa | grep python | xargs rpm -e --allmatches --nodeps //强制卸载自带的python以及相关联的程序2.whereis python | xargs rm -rf //删除所有与python相关的残余文件...
原创 2021-07-27 17:38:24
1003阅读
删除现有Python [root@test ~]# rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps ##强制删除已安装程序及其关联 [root@test ~]# whereis python |xargs rm -frv ##删除所有残余文件 ##xargs,允许你对输出执行其他某些命令 [root@test ~]# whereis
转载 2023-05-31 00:12:50
85阅读
导入gpgkey的时候导入了两个同名的key,卸载的时候提示 specifies multiple packages。用--force提示说仅用于installation。。。    通过 rpm --help | grep remove ,发现 --allmatches 可以解决这个问题:    --allmatch
原创 2014-07-05 16:12:55
1182阅读
  • 1
  • 2