凝思系统安装mysql
rpm -qa | grep mysq
localhost:~ # rpm -qa|grep -i mysql mysql-5.0.77-4.el5_6.6 MySQL-python-1.2.3-0.1.c1.el5 perl-DBD-MySQL-3.0007-2.el5 libdbi-dbd-mysql-0.8.1a-1.2.2 mysql-server-5.0.77-4.el5_6.6 mysql-5.0.77-4.el5_6.6 localhost:~ # rpm -e mysql-5.0.77-4.el5_6.6 error: "mysql-5.0.77-4.el5_6.6" specifies multiple packages
l卸载出现以上问题后
加上 allmatches 则成功
localhost:~ # rpm -e --allmatches MySQL-python-1.2.3-0.1.c1.el5 --nodeps localhost:~ # rpm -e --allmatches perl-DBD-MySQL-3.0007-2.el5 --nodeps localhost:~ # rpm -e --allmatches libdbi-dbd-mysql-0.8.1a-1.2.2 --nodeps localhost:~ # rpm -e --allmatches mysql-server-5.0.77-4.el5_6.6 --nodeps



