crontab 没有运行 vino-server

crontab 没有运行 vino-server

我正在尝试从 crontab 运行 vino-server:

* * * * * /home/nvidia/run_vino.sh > /home/nvidia/LOG 2>&1

使用这个脚本:

#! /bin/bash

export DISPLAY=:0.0
xhost +
nohup /usr/lib/vino/vino-server --display=:0.0

但是服务器没有启动,并且我在 /home/nvidia/LOG 中收到以下消息:

access control disabled, clients can connect from any host

(vino-server:21503): dconf-CRITICAL **: 20:51:02.009: unable to create file '/home/nvidia/.cache/dconf/user': Permission denied.  dconf will not work properly.

(vino-server:21503): dconf-CRITICAL **: 20:51:05.041: unable to create file '/home/nvidia/.cache/dconf/user': Permission denied.  dconf will not work properly.
** Message: 20:51:05.045: The desktop sharing service is already running, exiting.

这里有什么问题?

答案1

您可能需要为 cron 作业指定一个用户。假设您可以从命令行自行运行脚本,则在作业的 cron 选项卡条目的第 6 个位置添加您的用户名。该用户名位于最后一个 * 和运行作业的命令之间。

相关内容