How To Install at-spi2-atk on CentOS 8

at-spi2-atk is A GTK+ module that bridges ATK to D-Bus at-spi A GTK+ module that bridges ATK to D-Bus at-spi

Introduction

In this tutorial we learn how to install at-spi2-atk on CentOS 8.

What is at-spi2-atk

at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications for automation, so tools such as screen readers, magnifiers, or even scripting interfaces can query and interact with GUI controls. This version of at-spi is a major break from previous versions. It has been completely rewritten to use D-Bus rather than ORBIT / CORBA for its transport protocol. This package includes a gtk-module that bridges ATK to the new D-Bus based at-spi. at-spi2-atk 2.26.2 1.el8 x86_64 89 k at-spi2-atk-2.26.2-1.el8.src.rpm appstream A GTK+ module that bridges ATK to D-Bus at-spi https LGPLv2+ at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications for automation, so tools such as screen readers, magnifiers, or even scripting interfaces can query and interact with GUI controls. This version of at-spi is a major break from previous versions. It has been completely rewritten to use D-Bus rather than ORBIT / CORBA for its transport protocol. This package includes a gtk-module that bridges ATK to the new D-Bus based at-spi.

We can use yum or dnf to install at-spi2-atk on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install at-spi2-atk.

Install at-spi2-atk on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install at-spi2-atk using dnf by running the following command:

sudo dnf -y install at-spi2-atk

Install at-spi2-atk on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install at-spi2-atk using yum by running the following command:

sudo yum -y install at-spi2-atk

How To Uninstall at-spi2-atk on CentOS 8

To uninstall only the at-spi2-atk package we can use the following command:

sudo dnf remove at-spi2-atk

at-spi2-atk Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/04
/usr/lib/.build-id/04/74a181b9e8c959b56482daa75b71fcdf3dffbd
/usr/lib/.build-id/06
/usr/lib/.build-id/06/25d63723175336c73606de56538ba2658bbe44
/usr/lib64/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
/usr/lib64/gtk-2.0
/usr/lib64/gtk-2.0/modules
/usr/lib64/gtk-2.0/modules/libatk-bridge.so
/usr/lib64/libatk-bridge-2.0.so.0
/usr/lib64/libatk-bridge-2.0.so.0.0.0
/usr/share/doc/at-spi2-atk
/usr/share/doc/at-spi2-atk/AUTHORS
/usr/share/doc/at-spi2-atk/README
/usr/share/licenses/at-spi2-atk
/usr/share/licenses/at-spi2-atk/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/bd2283f65d4469e7e9374734726f621315eecb
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/14cbea73eeb05d29920d63ea5181d73604902b
/usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop
/usr/lib/gtk-2.0
/usr/lib/gtk-2.0/modules
/usr/lib/gtk-2.0/modules/libatk-bridge.so
/usr/lib/libatk-bridge-2.0.so.0
/usr/lib/libatk-bridge-2.0.so.0.0.0
/usr/share/doc/at-spi2-atk
/usr/share/doc/at-spi2-atk/AUTHORS
/usr/share/doc/at-spi2-atk/README
/usr/share/licenses/at-spi2-atk
/usr/share/licenses/at-spi2-atk/COPYING

References

Summary

In this tutorial we learn how to install at-spi2-atk on CentOS 8 using yum and dnf.