sudo -u 用户名 通知发送卡住

sudo -u 用户名 通知发送卡住

这是我的代码:

roroco@roroco ~/Dropbox/rbs/ro_wemedia $ time sudo -u root notify-send 'prpr'

real    0m0.033s
user    0m0.008s
sys 0m0.012s

roroco@roroco ~/Dropbox/rbs/ro_wemedia $ time sudo -u roroco /usr/bin/notify-send "prpr"

real    0m6.044s
user    0m0.016s
sys 0m0.016s
roroco@roroco ~/Dropbox/rbs/ro_wemedia $ time /usr/bin/notify-send "prpr"

real    0m0.110s
user    0m0.004s
sys 0m0.008s

看到上面的输出,当我使用时sudo -u roroco notify-send 'prpr',时间很长,是什么原因造成的?

这是我的通知发送版本

roroco@roroco ~/Dropbox/rbs/ro_wemedia $ notify-send -v
notify-send 0.7.6

答案1

解决方案:确保 3 个环境变量存在

对我来说,这是

sudo -u roroco DISPLAY=:0.0 DBUS_SESSION_BUS_ADDRESS="unix:abstract=/tmp/dbus-L9d2ku9CfF" XAUTHORITY=/home/roroco/.Xauthority notify-send 'prpr'

你可以使用以下方式获取环境变量值echo $env-name

相关内容