标签:命令 libstdc++ protected error remove
执行以下命令时:
yum -y remove libstdc++-4.4.7-11.el6.x86_64.rpm
出现错误:
Error: Trying to remove “yum”, which is protected
问题分析:
应该是要卸载的依赖项包含yum或正在被yum使用,无法卸载。
解决办法 :
只卸载libstdc++-4.4.7-11.el6.x86_64.rpm,忽略依赖项,使用“–nodeps”参数
[root@localhost opt]# rpm -e --nodeps libstdc++-4.4.7-11.el6.x86_64.rpm
error: package libstdc++-4.4.7-11.el6.x86_64.rpm is not installed
[root@localhost opt]# rpm -e --nodeps libstdc++-4.4.7-11.el6.x86_64
[root@localhost opt]# rpm -e --nodeps libstdc++-4.4.7-11.el6.x86_64
error: package libstdc++-4.4.7-11.el6.x86_64 is not installed
Error: Trying to remove "yum", which is protected
标签:命令 libstdc++ protected error remove
原文地址:http://blog.csdn.net/testcs_dn/article/details/45456711