我需要有关 ubuntu 9.10 crontab GUI 应用程序的帮助
需要每 30 分钟设置一次 cron 来启动和结束 Adobe AIR 应用程序,但目前还没有发生。我正在使用以下命令。
*/30 * * * * /opt/myapp/myapp
谁能告诉我我犯了什么错误。
我发现 cron 不执行 GUI 应用程序。仅接受命令行作业。
请指导我需要做什么。
need to setup cron every 30 min to start and end Adobe AIR application which is not happening at present. I am using following command.
*/30 * * * * /opt/myapp/myapp
can any one tell me what mistake I am making.
What I found was cron does not execute GUI app. Only command lines are accepted jobs are accepted.
Please guide me what needs to be done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应用程序无法启动,因为它不知道要连接到哪个显示器。
通常,该显示器是系统中的第一个显示器,编号为零。将
DISPLAY=:0
行添加到 crontab 中的计划行之前。但请注意,如果您当时没有登录系统,或者有多个用户登录,则此操作将会失败。The application doesn't start because it doesn't know which display to connect to.
Typically the display is the first display, number zero, in the system. Add the line
DISPLAY=:0
to the crontab, before your schedule line. But note that this will fail if you're not logged on to the system at the time, or if there are multiple users logged on.