如何Xauthority
在 Ubuntu 中解析文件。我试过这样的事情:
cat /run/user/1000/gdm/Xauthority | awk -F'-' '{ print $2 }'
根据格式,第一个值应该是用户,第二个是终端(机器)的名称,然后是魔法cookie。我只需要用户名。在这种情况下,它会打印一个空字符串。我怎样才能做到这一点?
编辑
在文件的开头,我还有以下字符串:^A^@^@^R
. 我想也需要删除它以获取用户名。
如何Xauthority
在 Ubuntu 中解析文件。我试过这样的事情:
cat /run/user/1000/gdm/Xauthority | awk -F'-' '{ print $2 }'
根据格式,第一个值应该是用户,第二个是终端(机器)的名称,然后是魔法cookie。我只需要用户名。在这种情况下,它会打印一个空字符串。我怎样才能做到这一点?
编辑
在文件的开头,我还有以下字符串:^A^@^@^R
. 我想也需要删除它以获取用户名。
我有一个简单的脚本。这是代码:
#/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;
这可行,但看起来很难看。