从以 root 身份执行的脚本运行 awesome-client
Posted
技术标签:
【中文标题】从以 root 身份执行的脚本运行 awesome-client【英文标题】:Running awesome-client from a script executing as root 【发布时间】:2021-09-30 07:13:36 【问题描述】:在 Debian (11) 测试中运行 Awesome
awesome v4.3 (Too long)
• Compiled against Lua 5.3.3 (running with Lua 5.3)
• D-Bus support: ✔
• execinfo support: ✔
• xcb-randr version: 1.6
• LGI version: 0.9.2
我正在尝试在 systemd 触发挂起时向 Awesome 发出信号。直接在 D-Bus 上摆弄了一阵子,一无所获后,我写了几个函数,在某种程度上复制了信号的功能。
我通过在我的 Awesome 会话中的 shell 中运行以下命令对其进行了测试:
$ awesome-client 'require("lib.syskit").signal("awesome-client", "Hello world!")'
这运行得很好。一条通知发布到桌面“Hello world!”正如预期的那样。我将lib.syskit
代码的路径添加到~/.xsessionrc
中的$LUA_PATH
。鉴于下面描述的错误,我怀疑这是一个问题。
现在是更困难的部分。我将以下内容放在位于/lib/systemd/system-sleep/pre-suspend.sh
的脚本中
#!/bin/bash
if [ "$1" == "pre" ]; then
ERR=$(export DISPLAY=":0"; sudo -u naddan awesome-client 'require("lib.syskit").signal("awesome-client", "pre-suspend")' 2>&1)
echo "suspending at `date`, $ERR" > /tmp/systemd_suspend_test
elif [ "$1" == "post" ]; then
ERR=$(export DISPLAY=":0"; sudo -u naddan awesome-client 'require("lib.syskit").signal("awesome-client", "post-suspend")' 2>&1)
echo "resuming at `date`, $ERR" >> /tmp/systemd_suspend_test
fi
这是写入/tmp/systemd_suspend_test
的输出
suspending at Thu 22 Jul 2021 10:58:01 PM MDT, Failed to open connection to "session" message bus: /usr/bin/dbus-launch terminated abnormally without any error message
E: dbus-send failed.
resuming at Thu 22 Jul 2021 10:58:05 PM MDT, Failed to open connection to "session" message bus: /usr/bin/dbus-launch terminated abnormally without any error message
E: dbus-send failed.
鉴于我已经告诉它正在运行 Awesome 的 $DISPLAY
(这是一台笔记本电脑),并且我正在以我的用户而不是 root 身份运行 awesome-client
,所以我还缺少什么这是工作吗?
有没有更好的方法可以在系统挂起时告诉 Awesome?
【问题讨论】:
【参考方案1】:awesome-client
是一个 shell 脚本。它是dbus-send
的薄包装。因此,既然你写的是“在直接摆弄 D-Bus 一段时间后无处可去”,我想同样的推理也适用。
鉴于我已经告诉它正在运行 Awesome 的 $DISPLAY(这是一台笔记本电脑),并且我正在以我的用户而不是 root 身份运行 awesome-client,所以我还缺少什么来保持这个下班了吗?
您缺少 dbus 会话总线的地址。对我来说是:
$ env | grep DBUS
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
有没有更好的方法可以让我在系统挂起时告诉 Awesome?
您可以使用现有的机制,而不是通过某些脚本直接向 awesome 发送消息:Dbus 信号。这些是感兴趣的各方可以收听的广播。
Google 提示已经有PrepareForSleep
信号:
https://serverfault.com/questions/573379/system-suspend-dbus-upower-signals-are-not-seen
基于此,Google 然后给了我以下 AwesomeWM lua 代码,用于侦听 logind 的 PrepareForSleep
信号(由您真实编写 - 感谢 Google 发现!):
https://github.com/awesomeWM/awesome/issues/344#issuecomment-328354719
local lgi = require("lgi")
local Gio = lgi.require("Gio")
local function listen_to_signals()
local bus = lgi.Gio.bus_get_sync(Gio.BusType.SYSTEM)
local sender = "org.freedesktop.login1"
local interface = "org.freedesktop.login1.Manager"
local object = "/org/freedesktop/login1"
local member = "PrepareForSleep"
bus:signal_subscribe(sender, interface, member, object, nil, Gio.DBusSignalFlags.NONE,
function(bus, sender, object, interface, signal, params)
-- "signals are sent right before (with the argument True) and
-- after (with the argument False) the system goes down for
-- reboot/poweroff, resp. suspend/hibernate."
if not params[1] then
-- This code is run before suspend. You can replace the following with something else.
require("gears.timer").start_new(2, function()
mytextclock:force_update()
end)
end
end)
end
listen_to_signals()
【讨论】:
以上是关于从以 root 身份执行的脚本运行 awesome-client的主要内容,如果未能解决你的问题,请参考以下文章
在pycharm中以管理员身份运行/调试脚本(How to run / debug programs as root in Pycharm)