How To Install driverctl on Fedora 34
Introduction
In this tutorial we learn how to install driverctl
on Fedora 34.
What is driverctl
driverctl is a tool for manipulating and inspecting the system device driver choices. Devices are normally assigned to their sole designated kernel driver by default. However in some situations it may be desireable to override that default, for example to try an older driver to work around a regression in a driver or to try an experimental alternative driver. Another common use-case is pass-through drivers and driver stubs to allow userspace to drive the device, such as in case of virtualization. driverctl integrates with udev to support overriding driver selection for both cold- and hotplugged devices from the moment of discovery, but can also change already assigned drivers, assuming they are not in use by the system. The driver overrides created by driverctl are persistent across system reboots by default.
We can use yum
or dnf
to install driverctl
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install driverctl.
Install driverctl 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 driverctl
using dnf
by running the following command:
sudo dnf -y install driverctl
Install driverctl 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 driverctl
using yum
by running the following command:
sudo yum -y install driverctl
How To Uninstall driverctl on Fedora 34
To uninstall only the driverctl
package we can use the following command:
sudo dnf remove driverctl
driverctl Package Contents on Fedora 34
/etc/driverctl.d
/usr/lib/systemd/system/[email protected]
/usr/lib/udev/rules.d/05-driverctl.rules
/usr/lib/udev/rules.d/89-vfio-uio.rules
/usr/lib/udev/vfio_name
/usr/sbin/driverctl
/usr/share/bash-completion
/usr/share/bash-completion/completions
/usr/share/bash-completion/completions/driverctl
/usr/share/doc/driverctl
/usr/share/doc/driverctl/README
/usr/share/doc/driverctl/TODO
/usr/share/licenses/driverctl
/usr/share/licenses/driverctl/COPYING
/usr/share/man/man8/driverctl.8.gz
References
Summary
In this tutorial we learn how to install driverctl
on Fedora 34 using yum and dnf.