Andreas Roth Asked: 2011-02-02 00:34:42 +0800 CST2011-02-02 00:34:42 +0800 CST 2011-02-02 00:34:42 +0800 CST 如何将内核消息作为 KDE 通知系统提供 772 有没有办法让内核消息进入 KDE 通知系统? 当我的内核检测到问题时,我想看到一个 GUI 通知。 kernel 1 个回答 Voted Best Answer Sebastian Rühl 2011-02-05T10:31:10+08:002011-02-05T10:31:10+08:00 你可以把它放到你的自动启动中: sh -c 'tail -n 1 -f /var/log/syslog | while read LINE; do notify-send "$LINE";done' 或进入 bash 脚本 watch_syslog.sh: #!/bin/sh tail -n 1 -f /var/log/syslog | while read LINE; do notify-send "$LINE";done 至少这在 GNOME 下有效......您只需要用适当的工具代替 KDE 而不是通知发送: tail -n 1 -f /var/log/syslog | while read LINE; do kdialog --passivepopup "$LINE" 3;done
你可以把它放到你的自动启动中:
sh -c 'tail -n 1 -f /var/log/syslog | while read LINE; do notify-send "$LINE";done'
或进入 bash 脚本 watch_syslog.sh:
至少这在 GNOME 下有效......您只需要用适当的工具代替 KDE 而不是通知发送: