初学linux,在卸载mysql的时候遇到个问题
我用 rpm -e mysql-4.1.10a-2.RHEL4.1后 出现了这个提示
error: Failed dependencies:
libmysqlclient.so.14 is needed by (installed) cyrus-sasl-sql-2.1.19-5.EL
我google了半天都没找到什么办法 高手帮忙啊
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
加上--nodeps --force,喉喉
但是这样好像会导致某些软件不能运行吧 除了这个还有什么其他的办法吗?谢谢
试一下:
rpm -ql mysql
可以强制删除的。
但可能其他有些程序不能使用了。
rpm -e cyrus-sasl-sql-2.1.19-5.EL
[root@localhost Desktop]# rpm -qa mysql
mysql-4.1.10a-2.RHEL4.1
[root@localhost Desktop]# rpm -e
[root@localhost Desktop]# rpm -e mysql-4.1.10a-2.RHEL4.1
error: Failed dependencies:
libmysqlclient.so.14 is needed by (installed) cyrus-sasl-sql-2.1.19-5.EL 4.i386
[root@localhost Desktop]# rpm -e cyrus-sasl-sql-2.1.19-5.EL
error: package cyrus-sasl-sql-2.1.19-5.EL is not installed
啊.........晕了 这个......
rpm 有的时候是有这样的 BT 问题
那就 rpm --nodeps 好了
好的 谢谢你
晕倒....还有一个问题.......
[root@localhost Desktop]# rpm -qa |grep php
php-4.3.9-3.6
php-pear-4.3.9-3.6
[root@localhost Desktop]# rpm -e php-4.3.9-3.6
error: Failed dependencies:
php = 4.3.9-3.6 is needed by (installed) php-pear-4.3.9-3.6.i386
[root@localhost Desktop]# rpm -e php-pear-4.3.9-3.6
error: Failed dependencies:
php-pear is needed by (installed) php-4.3.9-3.6.i386
我在删除php的时候 系统让我删除php-pear 但是当我删除php-pear的时候 系统又让我删除php .......这个怎么删除啊
用rpm -e卸载的时候,把你所有用“rpm -qa | grep”查询出来的结果都写上!