How To Install pcsc-lite-libs on Rocky Linux 8
Introduction
In this tutorial we learn how to install pcsc-lite-libs
on Rocky Linux 8.
What is pcsc-lite-libs
PC/SC Lite libraries.
We can use yum
or dnf
to install pcsc-lite-libs
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install pcsc-lite-libs.
Install pcsc-lite-libs on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install pcsc-lite-libs
using dnf
by running the following command:
sudo dnf -y install pcsc-lite-libs
Install pcsc-lite-libs on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install pcsc-lite-libs
using yum
by running the following command:
sudo yum -y install pcsc-lite-libs
How To Uninstall pcsc-lite-libs on Rocky Linux 8
To uninstall only the pcsc-lite-libs
package we can use the following command:
sudo dnf remove pcsc-lite-libs
pcsc-lite-libs Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/b358fc2ea39a9a4f896b195e603555c079bf5e
/usr/lib64/libpcsclite.so.1
/usr/lib64/libpcsclite.so.1.0.0
/usr/share/licenses/pcsc-lite-libs
/usr/share/licenses/pcsc-lite-libs/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/dc
/usr/lib/.build-id/dc/efc9ceeb16e84e4c056fef311309be221dc1e6
/usr/lib/libpcsclite.so.1
/usr/lib/libpcsclite.so.1.0.0
/usr/share/licenses/pcsc-lite-libs
/usr/share/licenses/pcsc-lite-libs/COPYING
References
Summary
In this tutorial we learn how to install pcsc-lite-libs
on Rocky Linux 8 using yum and dnf.