我有一个简单的脚本。这是代码:
#/bin/bash
saveLoc="/root/test";
dt=$(date '+%d-%m-%Y-%H:%M:%S');
scrot_name_fmt="${dt}.jpeg";
streamer_name_fmt="${dt}.jpeg";
# This captures the current screen
cd `echo ${saveLoc}/1`;
/usr/bin/scrot -z -b `echo $scrot_name_fmt`;
# This captures the webcam
cd `echo ${saveLoc}/2`;
/usr/bin/streamer -f jpeg -o `echo $streamer_name_fmt`;
echo "${dt} saved";
这个脚本做了两件事:
- 截图并保存在
/root/test/1
目录中 - 拍摄网络摄像头并将其保存在
/root/test/2
目录中
当我运行脚本时,它按预期工作,我看到每个目录添加了两个图像文件。当脚本由 cron 运行时,我看到在目录 2 中拍摄了网络摄像头,但在目录 1 中没有截图。这是 cron 作业设置:
* * * * * root sh /root/test/script.sh >> /root/test/logScript.log
不知道可能是什么问题,我们将不胜感激。谢谢
编辑
我尝试将以上内容分为 2 个脚本。我从终端运行了两个脚本,它按预期工作。包含该scrot
命令的脚本 1 在 cron 中不起作用,但在我手动运行时起作用。包含streamer
在终端和由 cron 运行时的脚本 2。
编辑 2
经过几个小时的艰苦搜索,我发现了错误。gnome-screenshot 无法连接到 X11 服务器。这是我尝试截屏时遇到的错误:
Unable to init server: Could not connect: Connection refused
(gnome-screenshot:13349): Gtk-WARNING **: 06:48:01.878: cannot open display:
编辑 3
根据@raj 的建议,我导出了XAUTHORITY
. 它没有用。这是所有更改后的脚本:
#/bin/bash
export XAUTHORITY=/run/user/1000/gdm/Xauthority;
save_loc="/root/test";
dt=$(date '+%d-%m-%Y-%H:%M:%S');
scrot_name_fmt="${dt}.jpeg";
streamer_name_fmt="${dt}.jpeg";
# This captures the current screen
cd `echo $save_loc/1`;
echo `pwd`;
DISPLAY=:0
/usr/bin/gnome-screenshot -b -f `echo $scrot_name_fmt`;
# This captures the webcam
cd `echo $save_loc/2`;
echo `pwd`;
/usr/bin/streamer -f jpeg -o `echo $streamer_name_fmt`;
echo "screenshot ${dt} saved";
echo "cam-shot ${dt} saved";
最终编辑
我正在为@bac0n 添加这个。这与他在回答中建议的原则上相似。这是在 Ubuntu 20.04 中测试的
# Locate Xauthority
for I in /run/user/*; do
# get the number of directory
d="`echo $I | awk -F '/' '{ print $4 }'`";
if [ $d -eq "121" ]; then
# Root user; continue
continue;
else
# now locate the Xauthority in gdm
# loads Xauthority for current user only
for J in /run/user/$d/gdm/*; do
AUTHUSER="`echo $J | awk -F '-' '{ print $3 }'`";
for K in $USER; do
[ "${AUTHUSER}" = "${K}" ] || continue;
USER="${K}";
export XAUTHORITY="/run/user/${d}/gdm/Xauthority";
break;
done;
done;
fi;
done;
这可行,但看起来很难看。
Maim 截图工具旨在成为比 scrot 更好的选择。Systemd.timer 用作基于时间的激活。默认情况下,您的计时器会激活同名服务。调度您的任务,您可以使用由日历表达式定义的实时计时器或从计时器本身激活的那一刻开始的单调计时器(或者您可以将两者结合使用)。
/etc/systemd/system/maim-screenshot.timer:
/etc/systemd/system/maim-screenshot.service:
该脚本迭代所有登录会话,寻找 x11 会话。然后该脚本尝试使用位于用户主目录中的用户 Xauthority 文件。Xauthority 文件将允许 maim 以 root 身份运行。
/opt/bin/maim_screenshot.sh
最后我们需要使脚本可执行并启动计时器。