Hi, this is my environment. I think the package is the latest version.
[redadmin@www ~]$ ssh alma9
Last login: Mon Aug 4 12:07:07 2025 from 192.168.11.50
[redadmin@alma9 ~]$ rpm -qa |grep glib2
glib2-2.68.4-16.el9_6.2.x86_64
glib2-devel-2.68.4-16.el9_6.2.x86_64
[redadmin@alma9 ~]$ rpm -qa |grep dconf
dconf-0.40.0-6.el9.x86_64
[redadmin@alma9 ~]$ rpm -qa |grep gdk
gdk-pixbuf2-2.42.6-4.el9_4.x86_64
gdk-pixbuf2-modules-2.42.6-4.el9_4.x86_64
[redadmin@alma9 ~]$ sudo yum update
Last metadata expiration check: 0:24:22 ago on Wed Aug 6 17:49:24 2025.
Dependencies resolved.
Package Architecture Version Repository Size
Upgrading:
python3-requests noarch 2.25.1-10.el9_6 baseos 115 k
Transaction Summary
Upgrade 1 Package
Total download size: 115 k
Is this ok [y/N]: y
Downloading Packages:
python3-requests-2.25.1-10.el9_6.noarch.rpm 272 kB/s | 115 kB 00:00
Total 87 kB/s | 115 kB 00:01
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
Preparing : 1/1
Upgrading : python3-requests-2.25.1-10.el9_6.noarch 1/2
Cleanup : python3-requests-2.25.1-9.el9.noarch 2/2
Running scriptlet: python3-requests-2.25.1-9.el9.noarch 2/2
Verifying : python3-requests-2.25.1-10.el9_6.noarch 1/2
Verifying : python3-requests-2.25.1-9.el9.noarch 2/2
Upgraded:
python3-requests-2.25.1-10.el9_6.noarch
Complete!
[redadmin@alma9 ~]$
When you move those .so files, only the gtk_progress_get_type error remains, so these modules are the cause.
Reinstalling dconf, glib2, and gdk-pixbuf2 brings the errors back, which means your system is still installing incompatible or broken .so files.
Try this:
Check which packages own the problematic .so files:
rpm -qf /usr/lib64/gio/modules/libdconfsettings.so
Make sure you don’t have mixed or old packages.
Run:
sudo gio-querymodules /usr/lib64/gio/modules/
sudo gdk-pixbuf-query-loaders --update-cache
If the problem continues, you may have incompatible libraries or a broken environment.
GoodLuck!