rpm -e mysqlclient10-3.23.58-4.RHEL4.1 error: "mysqlclient10-3.23.58-4.RHEL4.1" specifies multiple packages 通过man rpm,发现–allmatches应该可以解决这个问题: –allmatches Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matches multiple p...
导入gpgkey的时候导入了两个同名的key,卸载的时候提示 specifies multiple packages。用--force提示说仅用于installation。。。 通过rpm --help | grep remove,发现--allmatches可以解决这个问题: --allmatches remove all packages which match <package> (normally an error is generated if <package> specified multi...
一般卸载rpm都是用rpm -e <包名> --nodeps 当如果有多个一样都包的时候,就会提示specifies multiple packages 这时只需要这后边添加一个参数 --allmatches ,这样就任何匹配都包都删除了。
第一次用--nodeps来卸载,出现error: specifies multiple packages错误,于是再加一个--allmatches这下可以成功卸载了. [root@localhost courier-imap-4.1.0]# rpm -qa | grep cyrus-sasl | xargs rpm -e --nodeps error: "cyrus-sasl-lib-2.1.22-5.el5_4.3" specifies multiple packages error: "cyrus-sasl...
–allmatches Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matches multiple packages. 造成这个问题的主要原因是套件被重複 (强制) 安装了两次以上. [root@testbed bin]# rpm -e --allmatches subversion-1.4.2-4.el5...
error: "mysqlclient10-3.23.58-4.RHEL4.1" specifies multiple packages 通过man rpm,发现–allmatches应该可以解决这个问题: –allmatches Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matches ...
#查看当前安装的mysql rpm包 rpm-qa |grep-i mysql 然后想要卸载mysql,单个卸载跟使用参数--allmatche卸载后提示如下: #单个卸载 rpm-e mysql-5.0.95-5.el5_9 #所有匹配卸载 rpm-e -allmatches mysql-5.0.95-5.el5_9 然后根据提示信息把相关的包依次卸载: ...
载rpm包遭遇error: specifies multiple packages 准备在Redhat Linux系统上安装MySQL5.1,先卸载自带的低版本MySQL,结果不知怎么搞的,同一个package出现了两次,版本也都是一样的: rpm -qa | grep mysql mysqlclient10-3.23.58-4.RHEL4.1 mysql-4.1.20-2.RHEL4.1 mysql-4.1.20-2.RHEL4.1 mysqlclient10-3.23.58...
二、问题 # rpm -e zlib-1.2.3-7.el5 error: "zlib-1.2.3-7.el5" specifies multiple packages 注:尝试卸载zlib包,报错了; 三、解决方法 # rpm -e --allmatches --nodeps zlib-1.2.3-7.el5 四、校验 # rpm -qa | grep zlib 没了,搞定!
1、首先查询ImageMagick安装包 #rpm–qa|grepImageMagick ImageMagick-6.2.8.0-4.el5_1.1 ImageMagick-6.2.8.0-4.el5_1.1 系统提示曾经安装了两个ImageMagick安装包 2、接下来执行卸载命令 #rpm–eImageMagick-6.2.8.0-4.el5_1.1 error:"ImageMagick-6.2.8.0-4.el5_1.1"specifiesmultiplepackage...