How To Install libXt on Fedora 34
Introduction
In this tutorial we learn how to install libXt
on Fedora 34.
What is libXt
X.Org X11 libXt runtime library libXt 1.2.0 4.fc34 x86_64 183 k libXt-1.2.0-4.fc34.src.rpm fedora X.Org X11 libXt runtime library https MIT X.Org X11 libXt runtime library
We can use yum
or dnf
to install libXt
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libXt.
Install libXt on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libXt
using dnf
by running the following command:
sudo dnf -y install libXt
Install libXt on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libXt
using yum
by running the following command:
sudo yum -y install libXt
How To Uninstall libXt on Fedora 34
To uninstall only the libXt
package we can use the following command:
sudo dnf remove libXt
libXt Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/35
/usr/lib/.build-id/35/c60a8bad4730683541a831fd9ec09fd1a23b9f
/usr/lib/libXt.so.6
/usr/lib/libXt.so.6.0.0
/usr/share/X11/app-defaults
/usr/share/doc/libXt
/usr/share/doc/libXt/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/5d
/usr/lib/.build-id/5d/6b2a1ae23bb23c943daf3d2d5fcc630175b146
/usr/lib64/libXt.so.6
/usr/lib64/libXt.so.6.0.0
/usr/share/X11/app-defaults
/usr/share/doc/libXt
/usr/share/doc/libXt/COPYING
References
- [libXt website](https://www.x.org https://www.x.org)
Summary
In this tutorial we learn how to install libXt
on Fedora 34 using yum and dnf.