yum安装yum install -y pcre pcre-devel时报错
ERROR:dbus.proxies:Introspect error on :1.65:/org/freedesktop/PackageKit: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
解决办法:
首先我们这个包:
#命令
rpm -qa | grep Package
#查看结果
PackageKit-glib-0.5.8-13.el6.i686
PackageKit-yum-plugin-0.5.8-13.el6.i686
PackageKit-yum-0.5.8-13.el6.i686
PackageKit-0.5.8-13.el6.i686
PackageKit-glib-devel-0.5.8-13.el6.i686
PackageKit-gtk-module-0.5.8-13.el6.i686
PackageKit-device-rebind-0.5.8-13.el6.i686
可以看到这组包依赖性很小,所以我们应该如果不需要可以删除它。
yum remove PackageKit*
然后就ok了