升级到ubuntu 15.04后urfkilld使用100%cpu

我已经将装有Ubuntu 14.04的DELL XPS 13升级到14.10然后再升级到15.04。

今天我注意到urfkilld进程消耗了100%的CPU,我试图杀死它,但重新运行。

man urfkilld

 DESCRIPTION urfkilld provides the org.freedesktop.URfkill service on the system message bus. Users or administrators should never need to start this daemon as it will be automatically started by dbus-daemon(1) whenever an application calls into the org.freedesktop.URfkill service. 

每当应用程序调用org.freedesktop.URfkill服务时dbus-daemon,尽管你不能杀死它。

现在回到你的问题,这是一个错误: https : //bugs.launchpad.net/ubuntu/+source/urfkill/+bug/1385641 。

一种解决方法,出现在评论16中

我可以确认将以下脚本添加为/etc/pm/sleep.d/urfkill并赋予它exec权限为我解决了这个问题:

 #!/bin/sh # # urfkilld restart (LP#1385641) [ -f /etc/init/urfkill.conf ] || exit 0 /usr/sbin/service urfkill restart