How To Install libusb1 on Fedora 36
Introduction
In this tutorial we learn how to install libusb1
on Fedora 36.
What is libusb1
This package provides a way for applications to access USB devices. libusb is a library for USB device access from Linux, macOS, Windows, OpenBSD/NetBSD, Haiku and Solaris userspace. libusb is abstracted internally in such a way that it can hopefully be ported to other operating systems.
We can use yum
or dnf
to install libusb1
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install libusb1.
Install libusb1 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 libusb1
using dnf
by running the following command:
sudo dnf -y install libusb1
Install libusb1 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 libusb1
using yum
by running the following command:
sudo yum -y install libusb1
How To Uninstall libusb1 on Fedora 36
To uninstall only the libusb1
package we can use the following command:
sudo dnf remove libusb1
libusb1 Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/c387b3f8505ddfc3c28f3e495f5d633c179cb4
/usr/lib64/libusb-1.0.so.0
/usr/lib64/libusb-1.0.so.0.3.0
/usr/share/doc/libusb1
/usr/share/doc/libusb1/AUTHORS
/usr/share/doc/libusb1/ChangeLog
/usr/share/doc/libusb1/README
/usr/share/licenses/libusb1
/usr/share/licenses/libusb1/COPYING
References
Summary
In this tutorial we learn how to install libusb1
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).