を使用するか、sudo
meldを起動すると、su
次の結果が表示されます。gksu
gksudo
(meld:1666): GLib-GIO-CRITICAL **: g_dbus_proxy_new_sync: assertion 'G_IS_DBUS_CONNECTION (connection)' failed
(meld:1666): GLib-GIO-CRITICAL **: g_dbus_proxy_get_name_owner: assertion 'G_IS_DBUS_PROXY (proxy)' failed
(meld:1666): dconf-WARNING **: failed to commit changes to dconf: Error spawning command line 'dbus-launch --autolaunch=745b249ad9024475816761582a9ee2ca --binary-syntax --close-stderr': Child process exited with code 1
そして設定を変更することはできません。
対照的に、私は問題、エラー、警告なしでsudoでgeanyを使用し、geanyの設定を変更できます。
私は使用する:
- フュージョン 3.16.4
- dconf 0.26.0
- glib2 2.50.3
答え1
dbus-x11のインストールは私にとって効果的でした。
apt install dbus-x11
これでデフォルト設定を変更できるようになり、起動時にCLIにエラーは表示されません。
答え2
このトピックによると:dbusはkdesu / sudoを介してアクセスできませんが、dbusを再コンパイルすると便利です。、再コンパイルする必要がありますdbus
。
これが私がArchlinuxシステムでやったことです。
# installs arch build system
sudo pacman -S abs
# download the abs dbus (do it with the root user)
abs core/dbus
# copy the files in my HOME
cp -r /var/abs/core/dbus/ ~/abs
# compile dbus
cd ~/abs/dbus
makepkg -s
# install the compiled package
sudo pacman -U dbus-1.10.16-2-x86_64.pkg.tar.xz
これで問題が解決しました!