这是我的代码:
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
答案 0 :(得分:0)
解决方案:确保存在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
答案 1 :(得分:0)
对于我来说,使用无业游民,我需要使用以下方式允许客户端防火墙(iptables)中的端口2250:
iptables -A INPUT -p tcp --sport 2250 -j ACCEPT #notify-send
iptables -A OUTPUT -p tcp --dport 2250 -j ACCEPT #notify-send