我正在尝试使用 crontab 启动 X-Programm(例如 gedit 或 Firefox)。我已经搜索了很长时间,论坛上到处都是帮助,不幸的是,没有什么对我有用。
我正在尝试的是,通过 Crontab 启动 X-Programm。出于测试目的,我做了以下工作:
我的“/etc/crontab”中的条目(我的用户帐户是 mrs,我已登录):
* * * * * mrs /bin/bash /tmp/test.sh
猫/tmp/test.sh:
#!/bin/bash
DISPLAY=":0.0"
gedit 1> /tmp/out 2>/tmp/err
猫/tmp/错误:
No protocol specified
(gedit:3456): Gtk-WARNING **: cannot open display: :0.0
/tmp/out 是空的!