如何通过ssh向远程用户发送OSD通知消息?


34

有时我们需要向远程用户发送消息。我们可以使用Notify OSD在本地桌面上显示消息,但是我们无法将消息发送到远程用户的桌面。

我们尝试了以下方法:

ssh user@remote   
notify-send message

->将消息发送到本地显示,但不发送到远程。

ssh admin@remote
sudo -u user "notify-send message"
sudo: notify-send user: command not found

->找不到命令错误。

ssh -X user@remote "DISPLAY=:0 notify-send message"

->再将邮件仅发送到我的本地邮箱。

有什么方法可以向远程桌面发送消息?

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.