好吧,就我的搜索而言,我还没有在网上找到这个问题......有没有其他人遇到过截图程序 scrot 在 Ubuntu 22.04 上无法正常工作的问题?
目前,该程序“工作”,但只截取黑屏,没有错误输出。
我什至尝试导出显示窗口以防遇到同样的问题。
出口显示=:0;scrot 测试.png
好吧,就我的搜索而言,我还没有在网上找到这个问题......有没有其他人遇到过截图程序 scrot 在 Ubuntu 22.04 上无法正常工作的问题?
目前,该程序“工作”,但只截取黑屏,没有错误输出。
我什至尝试导出显示窗口以防遇到同样的问题。
出口显示=:0;scrot 测试.png
我有一个简单的脚本。这是代码:
#/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;
这可行,但看起来很难看。
我目前正在使用 Lubuntu 18.04。
当我在键盘上按下 Impr-Pant 时,生成的 png 存档直接存储在我的主文件夹中。
我的问题是:
我可以将打印屏幕键顺序配置为存储在我的图片文件夹中吗?
我不想安装快门或其他程序之类的东西,我只想将我的 print-scr 捕获存储在我的图片文件夹中。
提前致谢