Por que o pkexec é preferido em relação ao gksudo para aplicações gráficas?

10

Por favor, forneça a documentação do Ubuntu que refuta isso: link Por que, no meu sistema 13.04 totalmente atualizado, o pkexec não funciona?

$ pkexec gedit somefile.txt
No protocol specified

** (gedit:13135): WARNING **: Could not open X display
Cannot open display: 
Run '/usr/bin/gedit --help' to see a full list of available command line options
    
por chili555 28.06.2013 / 13:53

1 resposta

6

Por que não funciona?

Por padrão, pkexec não permite que você execute aplicativos gráficos (X11). Na página do manual:

 The environment that PROGRAM will run it, will be set to a minimal
 known and safe environment in order to avoid injecting code through
 LD_LIBRARY_PATH or similar mechanisms. In addition the PKEXEC_UID
 environment variable is set to the user id of the process invoking
 pkexec.
     As a result, pkexec will not allow you to run X11 applications
     as another user since the $DISPLAY and $XAUTHORITY environment
     variables are not set.
 These two variables will be retained if the
 org.freedesktop.policykit.exec.allow_gui annotation on an action is set
 to a nonempty value; this is discouraged, though, and should only be
 used for legacy programs.

Como afirmado na man page, você pode fazê-lo funcionar, embora eu realmente não saiba se isso é perigoso ou recomendado .

Para ativar o gedit, por exemplo, você pode criar /usr/share/polkit-1/actions/com.ubuntu.gedit.policy com o seguinte conteúdo:

<?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.0/policyconfig.dtd">
<policyconfig>
  <vendor>gedit</vendor>
  <vendor_url>gedit</vendor_url>
  <icon_name>accessories-text-editor</icon_name>
  <action id="org.freedesktop.policykit.pkexec.gedit">
   <description>Run "gedit"</description>
   <message>Authentication is required to run Text Editor</message>
   <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>

Em seguida, pkexec gedit deve funcionar como esperado:

Como você pode imaginar, isso só fará gedit funcionar. Em teoria, se você adicionou allow_gui a "org.freedesktop.policykit.exec" (a ação padrão), isso deve funcionar para todos os aplicativos, mas nos meus testes eu obtive o mesmo resultado que o seu.

Por que o pkexec é preferido?

Aqui você pode encontrar uma discussão sobre os pontos strongs de pkexec .

    
por Salem 28.06.2013 / 17:03