How To Install bolt on Rocky Linux 8
Introduction
In this tutorial we learn how to install bolt
on Rocky Linux 8.
What is bolt
bolt is a system daemon to manage Thunderbolt devices via a D-BUS API. Thunderbolt 3 introduced different security modes that require devices to be authorized before they can be used. The D-Bus API can be used to list devices, enroll them (authorize and store them in the local database) and forget them again (remove previously enrolled devices). It also emits signals if new devices are connected (or removed). During enrollment devices can be set to be automatically authorized as soon as they are connected. A command line tool, called boltctl, can be used to control the daemon and perform all the above mentioned tasks.
We can use yum
or dnf
to install bolt
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install bolt.
Install bolt 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 bolt
using dnf
by running the following command:
sudo dnf -y install bolt
Install bolt 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 bolt
using yum
by running the following command:
sudo yum -y install bolt
How To Uninstall bolt on Rocky Linux 8
To uninstall only the bolt
package we can use the following command:
sudo dnf remove bolt
bolt Package Contents on Rocky Linux 8
/usr/bin/boltctl
/usr/lib/.build-id
/usr/lib/.build-id/db
/usr/lib/.build-id/db/5c5074e1701a1f3996ee5c187f5a070d5b10e2
/usr/lib/.build-id/f6
/usr/lib/.build-id/f6/5e576973f0041c136eae20f3f24acd62f27c76
/usr/lib/systemd/system/bolt.service
/usr/lib/udev/rules.d/90-bolt.rules
/usr/libexec/boltd
/usr/share/dbus-1/interfaces/org.freedesktop.bolt.xml
/usr/share/dbus-1/system-services/org.freedesktop.bolt.service
/usr/share/dbus-1/system.d/org.freedesktop.bolt.conf
/usr/share/doc/bolt
/usr/share/doc/bolt/CHANGELOG.md
/usr/share/doc/bolt/README.md
/usr/share/licenses/bolt
/usr/share/licenses/bolt/COPYING
/usr/share/man/man1/boltctl.1.gz
/usr/share/man/man8/boltd.8.gz
/usr/share/polkit-1/actions/org.freedesktop.bolt.policy
/usr/share/polkit-1/rules.d/org.freedesktop.bolt.rules
/var/lib/boltd
References
Summary
In this tutorial we learn how to install bolt
on Rocky Linux 8 using yum and dnf.