我正在寻找一个执行GKSU或BEESU任务的命令,但这取决于policyKit。
policykit和dbus文档非常复杂,并不清楚。
我找到了“pkexec”,但它在尝试运行图形应用程序时显示错误

pkexec gedit

结果:
(gedit:7243): Gtk-WARNING **: cannot open display:

最佳答案

您需要在action definition file中创建一个/usr/share/polkit-1/actions写入XML
将此复制到/usr/share/polkit-1/actions/com.example.gedit

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE policyconfig PUBLIC
 "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
 "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd">
<policyconfig>

  <action id="com.example.gedit">
    <message gettext-domain="gedit">Authentication is required to run gedit as root</message>
    <icon_name>accessories-text-editor</icon_name>
    <defaults>
      <allow_any>auth_admin</allow_any>
      <allow_inactive>auth_admin</allow_inactive>
      <allow_active>auth_admin</allow_active>
    </defaults>
    <annotate key="org.freedesktop.policykit.exec.path">/usr/bin/gedit</annotate>
    <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate>
  </action>

</policyconfig>

org.freedesktop.policykit.exec.allow_gui = true将允许gedit连接到xorg服务器。它会自动传递给它。

07-24 13:02