I implement an app with this com.example.appname.desktop file as follows:
$ cat /usr/local/share/applications/com.example.appname.desktop
[Desktop Entry]
Version=1.0
Terminal=false
Type=Application
Name=appname
Exec=/opt/app/appname %u
DBusActivatable=true
Categories=Network;
MimeType=x-scheme-handler/itmm;
NoDisplay=false
$ cat /usr/share/dbus-1/services/com.example.appname.service
[D-BUS Service]
Name=com.example.appname
Exec=/opt/app/appname
Introspection XML looks like this:
$ qdbus com.example.appname /com/example/appname org.freedesktop.DBus.Introspectable.Introspect
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.freedesktop.Application">
<method name="ActivateAction">
<arg name="action_name" type="s" direction="in"/>
<arg name="parameter" type="av" direction="in"/>
<arg name="platform_data" type="a{sv}" direction="in"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In2" value="QVariantMap"/>
</method>
<method name="Activate">
<arg name="platform_data" type="a{sv}" direction="in"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In0" value="QVariantMap"/>
</method>
<method name="Open">
<arg name="uris" type="as" direction="in"/>
<arg name="platform_data" type="a{sv}" direction="in"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In1" value="QVariantMap"/>
</method>
</interface>
<interface name="org.freedesktop.DBus.Properties">
<method name="Get">
<arg name="interface_name" type="s" direction="in"/>
<arg name="property_name" type="s" direction="in"/>
<arg name="value" type="v" direction="out"/>
</method>
----<snipped>-----
But when i try to launch the method it gives me an error:
$ gapplication launch com.example.appname
error sending Activate message to application: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such method 'Activate' in interface 'org.freedesktop.Application' at object path '/com/example/appname' (signature 'a{sv}')
Is «annotation name=..» XML tag (see introspection XML) the reason this method is not found?
Browsing to itmm://192.168.1.1/query?version=1.0
via browser launches the application with command line parameter, but it is not launched via D-Bus service and thats what my requirement is. Is there a way to debug this via firefox or google chrome browsers?
I did not think it would be enough to find a solution, but just looking at D-Bus logs got me on the right track.
So, I ran the following command while opening a notification from d-feet
.
dbus-monitor >log
In the log, I was able to find the corresponding exchange:
method call time=1656781561.510107 sender=:1.75 -> destination=:1.48 serial=325 path=/org/freedesktop/Notifications; interface=org.freedesktop.Notifications; member=Notify
string "Test"
uint32 0
string "computer"
string "Title"
string "Body"
array [
]
array [
]
int32 1
error time=1656781561.510300 sender=:1.61 -> destination=:1.75 error_name=org.freedesktop.DBus.Error.UnknownMethod reply_serial=325
string "Method "Notify" with signature "susssasa{sv}i" on interface "org.freedesktop.Notifications" doesn't exist
"
It contains the same information I had, except that it also includes ids for the communicating services . You can see that the method call was sent from :1.75
(d-tree
itself) to :1.48
(the D-Bus service for xfce4-notifyd
as per d-tree
, as show in the screenshot below).
However, the error comes from :1.61
. Looking in d-tree
, I notice the eavesdrop=true
, which hints to me that another service did something to the method call.
Looking around, I end up on a post about deprecating eavesdropping in session.conf of D-bus. Scanning my system, I locate /usr/share/dbus-1/session.conf
, apply the following patch and restart my session. Now, everything is fine!
- <allow send_destination="*" eavesdrop="true"/>
+ <allow send_destination="*" eavesdrop="false"/>
<!-- Allow everything to be received -->
- <allow eavesdrop="true"/>
+ <allow eavesdrop="false"/>
My understanding is that the original service did its work properly, but another service tried to handle it, failed because it did not have the proper Notify
method (or the wrong signature). I have no idea where this eavesdropping comes from, and a proper fix would imply identifying it. However, the workaround seems to solve my initial issue.
Edit: I have found the culprit by running grep -r freedesktop.Notifications ~/.local
. It turns out I had not updated the Discover overlay, which is not managed by apt
. After running pip install --upgrade discover-overlay
, and reverting my changes to /usr/share/dbus-1/session.conf
, everything is back to normal!
GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface ‘org.gnome.Shell.Extensions’ on object at path /org/gnome/Shell
Bug #1719153 reported by
Farooq
on 2017-09-24
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
gnome-shell (Ubuntu)
|
Expired |
Undecided |
Unassigned
|
Bug Description
GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such interface ‘org.gnome.Shell.Extensions’ on object at path /org/gnome/Shell
ProblemType: Bug
DistroRelease: Ubuntu 17.04
Package: gnome-shell 3.24.2-0ubuntu0.1
ProcVersionSignature: Ubuntu 4.10.0-35.39-generic 4.10.17
Uname: Linux 4.10.0-35-generic x86_64
ApportVersion: 2.20.4-0ubuntu4.5
Architecture: amd64
CurrentDesktop: Unity:Unity7
Date: Sun Sep 24 11:25:55 2017
DisplayManager: lightdm
GsettingsChanges:
b’org.gnome.desktop.interface’ b’cursor-theme’ b»‘DMZ-White'»
b’org.gnome.desktop.interface’ b’gtk-im-module’ b»‘gtk-im-context-simple'»
b’org.gnome.desktop.interface’ b’icon-theme’ b»‘ubuntu-mono-dark'»
b’org.gnome.desktop.interface’ b’scaling-factor’ b’uint32 1′
b’org.gnome.desktop.interface’ b’gtk-theme’ b»‘Ambiance'»
InstallationDate: Installed on 2017-09-23 (0 days ago)
InstallationMedia: Ubuntu 17.04 «Zesty Zapus» — Release amd64 (20170412)
SourcePackage: gnome-shell
UpgradeStatus: No upgrade log present (probably fresh install)
mythus, how do I try out GDM from the console? As I’ve mentioned before, I have also tried setting runlevel to 5 so that the system boots directly to X. However, this also did not generate any xsession errors file. Is it possible that the problem lies with my GDM then?
The package I have now was last updated on Friday last week. I have been unable to upgrade again since then due to problems with my internet connection (I’m typing this from another OS). Before that, I’ve tried removing dconf, gconf, all to no avail. I also tried downgrading telepathy-glib and I could log in, although still in fallback mode. This isn’t always reproducible though, and it was more than a week ago, so I can’t say if it’s (entirely) because of telepathy-glib.
As for the times when I can log in to fallback mode, I did save the .xsession-errors file. Here it is:
/etc/gdm/Xsession: Beginning session setup...
/etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
gnome-session[1613]: EggSMClient-WARNING: Desktop file '/home/bow/.config/autostart/dropbox.desktop' has malformed Icon key 'dropbox.png'(should not include extension)
GNOME_KEYRING_CONTROL=/tmp/keyring-bZbfpr
SSH_AUTH_SOCK=/tmp/keyring-bZbfpr/ssh
GNOME_KEYRING_CONTROL=/tmp/keyring-bZbfpr
SSH_AUTH_SOCK=/tmp/keyring-bZbfpr/ssh
GNOME_KEYRING_CONTROL=/tmp/keyring-bZbfpr
SSH_AUTH_SOCK=/tmp/keyring-bZbfpr/ssh
GNOME_KEYRING_CONTROL=/tmp/keyring-bZbfpr
SSH_AUTH_SOCK=/tmp/keyring-bZbfpr/ssh
GPG_AGENT_INFO=/tmp/keyring-bZbfpr/gpg:0:1
Failed to play sound: File or data not found
** Message: applet now removed from the notification area
listen: bind to '0.0.0.0:6600' failed: Address already in use (continuing anyway, because binding to '[::]:6600' succeeded)
daemon: cannot init supplementary groups of user "bow": Operation not permitted
Initializing nautilus-dropbox 0.6.9
JS ERROR: !!! WARNING: 'assignment to undeclared variable hotSpotButton'
JS ERROR: !!! WARNING: file '/home/bow/.local/share/gnome-shell/extensions/activities.icon@panel.ui/extension.js' line 9 exception 0 number 156
JS LOG: GNOME Shell started at Sat Oct 01 2011 07:21:23 GMT+0200 (CEST)
failed to create drawable
Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
/usr/lib/python2.7/site-packages/gtk_redshift/statusicon.py:134: GtkWarning: IA__gdk_window_thaw_toplevel_updates_libgtk_only: assertion `private->update_and_descendants_freeze_count > 0' failed
gtk.main()
** Message: applet now embedded in the notification area
(empathy:1712): empathy-CRITICAL **: list_get_contact_blocking_capabilities_cb: assertion `G_VALUE_HOLDS_UINT (value)' failed
Gtk-Message: Failed to load module "canberra-gtk-module"
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:2463): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
Gtk-Message: Failed to load module "canberra-gtk-module"
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
[2263:2277:5083720725:ERROR:spdy_session.cc(1279)] Spdy stream closed: 6
(chromium:2263): GdkPixbuf-CRITICAL **: gdk_pixbuf_new_from_data: assertion `width > 0' failed
[2263:2263:6172508441:ERROR:browser_main.cc(1022)] Gdk: IA__gdk_cursor_new_from_pixbuf: assertion `GDK_IS_PIXBUF (pixbuf)' failed
[2263:2263:6172508481:ERROR:browser_main.cc(1022)] GLib-GObject: g_object_unref: assertion `G_IS_OBJECT (object)' failed
(gnome-shell:1685): Clutter-WARNING **: The actor 'ClutterGroup' is currently inside an allocation cycle; calling clutter_actor_queue_relayout() is not recommended
VLC media player 1.1.11 The Luggage (revision exported)
Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
[0x2475120] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Blocked: call to setlocale(6, "")
Warning: call to srand(1318055190)
Warning: call to rand()
[matroska,webm @ 0x3391820] max_analyze_duration 5000000 reached at 5040000
[matroska,webm @ 0x3391820] Estimating duration from bitrate, this may be inaccurate
Blocked: call to setlocale(6, "")
(process:6958): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
[matroska,webm @ 0x33ea6e0] max_analyze_duration 5000000 reached at 5040000
[matroska,webm @ 0x33ea6e0] Estimating duration from bitrate, this may be inaccurate
[0x7fb878000a80] signals interface error: signal 17 overridden (0x7fb8b542d4f0)
[0x7fb878000a80] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
Reference 3 >= 3
error while decoding MB 62 22, bytestream (927)
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
xdg-screensaver: Window 0x02a0014d does not exist
[0x7fb878000a80] signals interface error: signal 17 overridden (0x7fb8b542d4f0)
[0x7fb878000a80] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
VLC media player 1.1.11 The Luggage (revision exported)
Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
[0x18a8120] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Blocked: call to setlocale(6, "")
Warning: call to srand(1317938467)
Warning: call to rand()
Blocked: call to setlocale(6, "")
(process:7314): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
[matroska,webm @ 0x7f563c00f8c0] max_analyze_duration 5000000 reached at 5040000
[matroska,webm @ 0x7f563c00f8c0] Estimating duration from bitrate, this may be inaccurate
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
[matroska,webm @ 0x7f563c048f80] max_analyze_duration 5000000 reached at 5040000
[matroska,webm @ 0x7f563c048f80] Estimating duration from bitrate, this may be inaccurate
[0x7f563c000a60] signals interface error: signal 17 overridden (0x7f5679a414f0)
[0x7f563c000a60] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
xdg-screensaver: Window 0x02a0014d does not exist
[0x7f563c000a60] signals interface error: signal 17 overridden (0x7f5679a414f0)
[0x7f563c000a60] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
Window manager warning: Log level 8: meta_window_raise: assertion `!window->override_redirect' failed
Window manager warning: Log level 8: meta_window_focus: assertion `!window->override_redirect' failed
VLC media player 1.1.11 The Luggage (revision exported)
Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
[0x207e120] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Blocked: call to setlocale(6, "")
Warning: call to srand(1318035622)
Warning: call to rand()
Blocked: call to setlocale(6, "")
(process:7626): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
[0x21698d0] signals interface error: signal 17 overridden (0x7ff1860674f0)
[0x21698d0] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
xdg-screensaver: Window 0x02a0006d does not exist
[0x21698d0] signals interface error: signal 17 overridden (0x7ff1860674f0)
[0x21698d0] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
VLC media player 1.1.11 The Luggage (revision exported)
Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
[0x1246120] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Blocked: call to setlocale(6, "")
Warning: call to srand(1318043159)
Warning: call to rand()
Blocked: call to setlocale(6, "")
(process:7745): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
[0x7f75b4000a80] signals interface error: signal 17 overridden (0x7f75efdbc4f0)
[0x7f75b4000a80] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
xdg-screensaver: Window 0x02a0006b does not exist
[0x7f75b4000a80] signals interface error: signal 17 overridden (0x7f75efdbc4f0)
[0x7f75b4000a80] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
VLC media player 1.1.11 The Luggage (revision exported)
Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
[0xb74120] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
Blocked: call to setlocale(6, "")
Warning: call to srand(1317684869)
Warning: call to rand()
Blocked: call to setlocale(6, "")
(process:7825): Gtk-WARNING **: Locale not supported by C library.
Using the fallback 'C' locale.
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a00009 already in stack
[matroska,webm @ 0x7f43c4003f00] max_analyze_duration 5000000 reached at 5024000
[matroska,webm @ 0x7f43c4003f00] Estimating duration from bitrate, this may be inaccurate
[matroska,webm @ 0x7f43c42490e0] max_analyze_duration 5000000 reached at 5024000
[matroska,webm @ 0x7f43c42490e0] Estimating duration from bitrate, this may be inaccurate
No accelerated IMDCT transform found
[0xc61f60] signals interface error: signal 17 overridden (0x7f43ff6024f0)
[0xc61f60] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
Warning: call to rand()
Warning: call to rand()
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
xdg-screensaver: Window 0x02a0029d does not exist
[0xc61f60] signals interface error: signal 17 overridden (0x7f43ff6024f0)
[0xc61f60] signals interface error: /usr/lib/libQtCore.so.4(?)[(nil)]
[2263:2263:9105791570:ERROR:browser_main.cc(1022)] Gtk: Unable to retrieve the file info for `file:///srv/http/homepage/img/blog/post-006-book_cover.jpg': Error stating file '/srv/http/homepage/img/blog/post-006-book_cover.jpg': No such file or directory
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a032e9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a032e9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a032e7 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a032e7 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a54b16 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2a54b16 already in stack
Window manager warning: Received a _NET_WM_MOVERESIZE message for 0xc00042 (Kindle Fir); these messages lack timestamps and therefore suck.
Window manager warning: Received a _NET_WM_MOVERESIZE message for 0xc00042 (Amazon.com); these messages lack timestamps and therefore suck.
[2263:2263:27854326102:ERROR:webcursor_gtk.cc(153)] Not implemented reached in int WebCursor::GetCursorType() const
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b87204 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b87204 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b87202 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b87202 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8976b already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8976b already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8a18c already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8a18c already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8a18a already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2b8a18a already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba4207 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba4207 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba5e42 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba5e42 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba5e40 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ba5e40 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bac271 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bac271 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2badafc already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2badafc already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2badafa already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2badafa already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbabb4 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbabb4 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbd54f already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbd54f already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbd54d already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bbd54d already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bd3250 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bd3250 already in stack
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bdcbcb already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bdcbcb already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bdcbc9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bdcbc9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2beee4c already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2beee4c already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2befb69 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2befb69 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2befb67 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2befb67 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bff520 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2bff520 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac7cc9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac7cc9 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac7cc7 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac7cc7 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac8251 already in stack
Window manager warning: Log level 16: STACK_OP_ADD: window 0x2ac8251 already in stack
Window manager warning: Got a request to focus 0xc00042 (bow.web.id) with a timestamp of 0. This shouldn't happen!
Window manager warning: Got a request to focus 0xc00042 (Listiarini) with a timestamp of 0. This shouldn't happen!
Window manager warning: Got a request to focus 0xc00042 (No interna) with a timestamp of 0. This shouldn't happen!
Window manager warning: Got a request to focus 0xc00042 (Google Rea) with a timestamp of 0. This shouldn't happen!
Window manager warning: Got a request to focus 0xc00042 (宇多田ã) with a timestamp of 0. This shouldn't happen!
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
Window manager warning: Got a request to focus 0x2000021 (Guake!) with a timestamp of 0. This shouldn't happen!
(gnome-shell:1685): Clutter-CRITICAL **: clutter_actor_queue_relayout: assertion `CLUTTER_IS_ACTOR (self)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
(npviewer.bin:2463): Gdk-CRITICAL **: IA__gdk_drawable_get_display: assertion `GDK_IS_DRAWABLE (drawable)' failed
Gtk-Message: Failed to load module "canberra-gtk-module"
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:27932): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
Gtk-Message: Failed to load module "canberra-gtk-module"
Gtk-Message: Failed to load module "canberra-gtk-module"
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
(npviewer.bin:28302): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
Gtk-Message: Failed to load module "canberra-gtk-module"
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: GetIOR failed: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Method "GetIOR" with signature "" on interface "org.gnome.GConf" doesn't exist
)
gnome-session[1613]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(gnome-settings-daemon:1652): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
[1317446466,000,xklavier.c:xkl_engine_start_listen/] The backend does not require manual layout management - but it is provided by the application
Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
[2263:2263:56042244861:ERROR:browser_main_gtk.cc(75)] X IO Error detected
(gnome-screensaver:1692): Gdk-WARNING **: gnome-screensaver: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(gdu-notification-daemon:1693): Gdk-WARNING **: gdu-notification-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(gnome-power-manager:1702): Gdk-WARNING **: gnome-power-manager: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(nautilus:1695): Gdk-WARNING **: nautilus: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(evolution-alarm-notify:1691): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(empathy:1712): Gdk-WARNING **: empathy: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
guake.py: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
gtk-redshift: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
dropbox: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
(nm-applet:1714): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
[28281:28281:56042290739:ERROR:x11_util.cc(67)] X IO Error detected
*** NSPlugin Viewer *** ERROR: rpc_end_sync called when not in sync!
g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
gnome-shell-calendar-server[1768]: Lost (or failed to acquire) the name org.gnome.Shell.CalendarServer - exiting
(gnome-shell-calendar-server:1768): libecal-DEBUG: GDBus connection is closed, remote peer vanished: Underlying GIOStream returned 0 bytes on an async read
(gnome-shell-calendar-server:1768): libecal-DEBUG: e-cal.c:449: ECal GDBus connection is closed, remote peer vanished: Underlying GIOStream returned 0 bytes on an async read
(gnome-shell-calendar-server:1768): libecal-WARNING **: gdbus_cal_disconnect: Failed to close calendar, The connection is closed
(gnome-shell-calendar-server:1768): ShellCalendarServer-WARNING **: The calendar backend for local:system has crashed.
g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
Using method `randr'.
Since that time, I have made several changes to my system that renders some of the error messages unapplicable to my current condition. For example, there you can still see some error messages regarding the extensions. But now, I’ve removed all extensions from my systems, so I didn’t put it in the first place when started this thread. I do believe that the underlying cause that’s preventing me to boot properly into Gnome is still unresolved, so maybe you can still see some useful information.
View previous topic :: View next topic | |||||||||
Author | Message | ||||||||
---|---|---|---|---|---|---|---|---|---|
yellowhat Guru Joined: 10 Sep 2008 |
|
||||||||
Back to top |
|
||||||||
s0ulslack1 n00b Joined: 06 Mar 2022 |
|
||||||||
Back to top |
|
||||||||
yellowhat Guru Joined: 10 Sep 2008 |
|
||||||||
Back to top |
|
||||||||
yellowhat Guru Joined: 10 Sep 2008 |
|
||||||||
Back to top |
|
||||||||
figueroa Advocate Joined: 14 Aug 2005 |
|
||||||||
Back to top |
|
||||||||
|
You cannot post new topics in this forum |