我有一个简单的脚本。代码如下:
#/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 运行,但在我手动运行时可以运行。包含命令的脚本 2streamer
既可以从终端运行,也可以通过 cron 运行。
编辑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;
这可行但是看起来很丑。
答案1
Maim 截图工具旨在成为比 scrot 更好的选择。Systemd.timer 用作基于时间的激活。默认情况下,您的计时器会激活同名服务。在安排任务时,您可以使用日历表达式定义的实时计时器,也可以使用在计时器本身激活时启动的单调计时器(或者您可以将两者结合起来)。
/etc/systemd/system/maim-screenshot.timer:
[Unit]
Description=Take a screenshot every 15 minutes.
[Timer]
OnBootSec=5m
OnUnitActiveSec=15m
[Install]
WantedBy=timers.target
/etc/systemd/system/maim-screenshot.service:
[Unit]
Description=Maim Screenshot service.
[Service]
UMask=0077
ExecStart=/opt/bin/maim_screenshot.sh
该脚本迭代所有已登录的会话,查找 x11 会话。然后,该脚本尝试使用位于用户主目录中的用户 Xauthority 文件。Xauthority 文件将允许 maim 以 root 身份运行。
/opt/bin/maim_screenshot.sh
#!/bin/bash
#
# Based on maim (make image) utility.
# Screenshot folder.
mkdir -m 750 -p /opt/images; images=$_
b=($(loginctl show-seat seat0 \
-p Sessions --value --no-legend))
mapfile -t < <(loginctl show-session ${b[@]} \
-p User -p Display -p Type --all | tr -s \\n)
declare -A A
((c=${#MAPFILE[@]} / ${#b[@]}))
for ((d=0, e=0; $d < ${#b[@]}; d++, e+=$c)); do
A=()
for f in "${MAPFILE[@]:$e:$c}"; do
[[ $f =~ ^([^=]*)=(.*)$ ]] && \
A[${BASH_REMATCH[1]}]=${BASH_REMATCH[2]}
done
if [[ ${A[Type]} = x11 ]] \
&& [[ $(getent passwd ${A[User]}) \
=~ ([^:]*:){5}([^:]+) ]] \
&& [[ -r ${BASH_REMATCH[2]}/.Xauthority ]]
then
XAUTHORITY=${BASH_REMATCH[2]}/.Xauthority \
maim -x "${A[Display]}" -i root "/$images/screenshot_$EPOCHSECONDS.jpg"
fi
done
exit 0
最后我们需要使脚本可执行并启动计时器。
$ chmod +x /opt/bin/maim_screenshot.sh
$ systemctl enable --now maim-screenshot.timer