使用 cron 运行带有 Xvfb 显示的 sh?

使用 cron 运行带有 Xvfb 显示的 sh?

我正在尝试sh使用 cron 运行一个脚本。此脚本需要显示。

我努力了:

# Xvfb display
/usr/bin/Xvfb :10 -ac -screen 0 1024x768x24 &
15 17 * * * /bin/sh /path/to/script/script.sh > /path/to/log/log.log 2>&1

什么都没发生,也log.log没有创建。如何检查错误?

第二次尝试:

20 17 * * * <user> export DISPLAY=:10 /bin/sh /path/to/script/script.sh > /path/to/log/log.log 2>&1

结果相同,没有日志文件,而且我看不出它是否已执行或是否存在问题。

相关内容