导入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命令删队linux系统中的rpm软件包时总是提示specifies multiple packages,可以加 一个–-allmatches参数来解决。 例:rpm -e mysql-5.0.77-3 --nodeps --allmatches
一般卸载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...
【转】卸载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 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 然后根据提示信息把相关的包依次卸载: ...
–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: "libdrizzle-0.8-6.el5" specifies multiple packages 添加参数:--allmatches –allmatches Remove all versions of the package which match PACKAGE_NAME. Normally an errorisissuedifPACKAGE_NAME matches multiple packages. 1. 2. 3. sudo rpm -e --allmatches libdrizzle-0.8-6.el5 ...
卸载rpm包提示:error: specifies multiple packages,–allmatchesRemoveallversionsofthepackagewhichmatchPACKAGE_NAME.NormallyanerrorisissuedifPACKAGE_NAMEmatchesmultiplepackages.造成这个问题的主...
error: "kernel-2.4.20-28.7" specifies multiple packages 後來找到解法: 就是在rpm -e後加上--allmatches這個參數 rpm -e --allmatches kernel-2.4.20-28.7 這樣子就可以順利移除了。 因為我們還是需要這個套件,可以從網路上下載,於重複套件移除後,然後再重新安裝一次即可 rpm -Uvh kernel-2.4.20-...