Skip to content

Instantly share code, notes, and snippets.

@jeffcogswell
Last active April 23, 2023 01:10
Show Gist options
  • Save jeffcogswell/62395900725acef1c0a5a608f7eb7a05 to your computer and use it in GitHub Desktop.
Save jeffcogswell/62395900725acef1c0a5a608f7eb7a05 to your computer and use it in GitHub Desktop.
Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus ...

Seeing this error in the bash shell when launching some apps, such as scite:

** (scite:5298): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files

Update as per comments below.

It appears adding this library fixes the problem: at-spi2-core

e.g.

sudo apt install at-spi2-core

The description for at-spi2-core is as follows:

Description-en: Assistive Technology Service Provider Interface (dbus core)
 This package contains the core components of GNOME Accessibility.

This would make sense since the error involves accessibility.

The solution below is the old solution. My guess is that the export NO_AT_BRIDGE tells it to turn off a bridge or connection or whatever to the Assistive Technology Service. So the old fix may well be perfectly legitimate.

(OLD) Fix: Add this to your profile (.bashrc or whatever):

export NO_AT_BRIDGE=1
@tuttle
Copy link

tuttle commented Jul 30, 2022

For me gmessage utility started to print this after upgrading my Xubuntu to 22.04 LTS. Installing at-spi2-core solved the problem.
Thanks

@TomfromBerlin
Copy link

This error message is displayed on my Raspberry Pi with the latest operating system (Debian Bullseye) while installing packages with Synaptic as package manager. Installing at-spi2-core solved the problem. If this happens in many different cases, I wonder why this package is not included by default.

@mjTree
Copy link

mjTree commented Feb 10, 2023

Thank you very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment