嘿,我在尝试使用来自 ubuntu 的 python 脚本运行 cron 作业时遇到了问题。这就是我所做的:
1.) 编写了一个简单的 tkinter 应用程序:代码源来自这个 url - http://www.ittc.ku.edu/~niehaus/classes/448-s04/448-standard/simple_gui_examples/sample.py
#!/usr/bin/python
from Tkinter import *
class App:
def __init__(self,parent):
f = Frame(parent)
f.pack(padx=15,pady=15)
self.entry = Entry(f,text="enter your choice")
self.entry.pack(side= TOP,padx=10,pady=12)
self.button = Button(f, text="print",command=self.print_this)
self.button.pack(side=BOTTOM,padx=10,pady=10)
self.exit = Button(f, text="exit", command=f.quit)
self.exit.pack(side=BOTTOM,padx=10,pady=10)
def print_this(self):
print "this is to be printed"
root = Tk()
root.title('Tkwidgets application')
app = App(root)
root.mainloop()
2.) 将脚本更改为可执行文件:
chmod 777 sample.py
3.) 将脚本添加到我的 cronjob 中,以便每分钟运行一次以进行测试。我打开 crontab -e 并将以下内容添加到我的文件中:
* * * * * /home/bbc/workspace/python/tkinter/sample.py
4.) 免责声明:我没有为 tkinter 添加任何额外的环境变量,也没有在 /etc/init.d/cron 更改我的 cronjob 脚本
5.) 我通过 tail -f /var/log/syslog 跟踪 cron 作业
$ tail -f /var/log/syslog
Jul 7 18:33:01 bbc CRON[11346]: (bbc) CMD (/home/bbc/workspace/python/tkinter/sample.py)
Jul 7 18:33:01 bbc CRON[11343]: (CRON) error (grandchild #11344 failed with exit status 1)
Jul 7 18:33:01 bbc CRON[11343]: (CRON) info (No MTA installed, discarding output)
Jul 7 18:33:01 bbc CRON[11342]: (CRON) error (grandchild #11346 failed with exit status 1)
Jul 7 18:33:01 bbc CRON[11342]: (CRON) info (No MTA installed, discarding output)
任何有关调试此问题的帮助将不胜感激...