How To Install libXcursor on CentOS 8
Introduction
In this tutorial we learn how to install libXcursor on CentOS 8.
What is libXcursor
This is a simple library designed to help locate and load cursors. Cursors can be loaded from files or memory. A library of common cursors exists which map to the standard X cursor names.Cursors can exist in several sizes and the library automatically picks the best size. This is a simple library designed to help locate and load cursors. Cursors can be loaded from files or memory. A library of common cursors exists which map to the standard X cursor names.Cursors can exist in several sizes and the library automatically picks the best size.
We can use yum or dnf to install libXcursor on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install libXcursor.
Install libXcursor on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install libXcursor using yum by running the following command:
sudo yum -y install libXcursor
Install libXcursor on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install libXcursor using dnf by running the following command:
sudo dnf -y install libXcursor
How To Uninstall libXcursor on CentOS 8
To uninstall only the libXcursor package we can use the following command:
sudo dnf remove libXcursor
References
Summary
In this tutorial we learn how to install libXcursor on CentOS 8 using yum and dnf.