How To Install nspr on Fedora 36
Introduction
In this tutorial we learn how to install nspr
on Fedora 36.
What is nspr
NSPR provides platform independence for non-GUI operating system facilities. These facilities include threads, thread synchronization, normal file and network I/O, interval timing and calendar time, basic memory management (malloc and free) and shared library linking.
We can use yum
or dnf
to install nspr
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install nspr.
Install nspr on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install nspr
using dnf
by running the following command:
sudo dnf -y install nspr
Install nspr on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install nspr
using yum
by running the following command:
sudo yum -y install nspr
How To Uninstall nspr on Fedora 36
To uninstall only the nspr
package we can use the following command:
sudo dnf remove nspr
nspr Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/00
/usr/lib/.build-id/00/deefe5a46c431b973ecfae93420eff38e8fe48
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/0f3259d456547076402636397aa2b6d93a9712
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/ff8082615641a43e3433bbb9617981e1ab9610
/usr/lib64/libnspr4.so
/usr/lib64/libplc4.so
/usr/lib64/libplds4.so
/usr/share/licenses/nspr
/usr/share/licenses/nspr/LICENSE
References
Summary
In this tutorial we learn how to install nspr
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).