How To Install stratisd on Fedora 34
Introduction
In this tutorial we learn how to install stratisd
on Fedora 34.
What is stratisd
Daemon that manages block devices to create filesystems.
We can use yum
or dnf
to install stratisd
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install stratisd.
Install stratisd 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 stratisd
using dnf
by running the following command:
sudo dnf -y install stratisd
Install stratisd 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 stratisd
using yum
by running the following command:
sudo yum -y install stratisd
How To Uninstall stratisd on Fedora 34
To uninstall only the stratisd
package we can use the following command:
sudo dnf remove stratisd
stratisd Package Contents on Fedora 34
/usr/bin/stratis-min
/usr/bin/stratis-predict-usage
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/c8147fcc66c64861d7f18e0b47fe4bbac6b071
/usr/lib/.build-id/84
/usr/lib/.build-id/84/3cf85185713e86e24c30090b74759cd58d3b69
/usr/lib/.build-id/9b
/usr/lib/.build-id/9b/5842fe98128fac023faeddcbd940bc4863d4b9
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/ed74aa68ebeb22f4c96d445f0ee621a95ce73f
/usr/lib/.build-id/bd/ed74aa68ebeb22f4c96d445f0ee621a95ce73f.1
/usr/lib/.build-id/bd/ed74aa68ebeb22f4c96d445f0ee621a95ce73f.2
/usr/lib/systemd/stratis-fstab-setup
/usr/lib/systemd/system/[email protected]
/usr/lib/systemd/system/stratisd-min-postinitrd.service
/usr/lib/systemd/system/stratisd.service
/usr/lib/udev/rules.d/61-stratisd.rules
/usr/lib/udev/stratis-base32-decode
/usr/lib/udev/stratis-str-cmp
/usr/libexec/stratisd
/usr/libexec/stratisd-min
/usr/share/dbus-1
/usr/share/dbus-1/system.d
/usr/share/dbus-1/system.d/stratisd.conf
/usr/share/doc/stratisd
/usr/share/doc/stratisd/README.md
/usr/share/licenses/stratisd
/usr/share/licenses/stratisd/LICENSE
/usr/share/man/man8/stratisd.8.gz
/usr/bin/stratis_dbusquery_version
/usr/bin/stratis_migrate_symlinks.sh
/usr/lib/.build-id
/usr/lib/.build-id/00
/usr/lib/.build-id/00/23a21bf777726cd135a4b157ef5376d1eb1db9
/usr/lib/.build-id/28
/usr/lib/.build-id/28/b578d8c4df9409670b8a92df721b569d803d47
/usr/lib/.build-id/f0
/usr/lib/.build-id/f0/2142f9b0191029ed18864e720a5454743b43b5
/usr/lib/systemd/system/stratisd.service
/usr/lib/udev/rules.d/11-stratisd.rules
/usr/lib/udev/stratis_uuids_to_names
/usr/libexec/stratisd
/usr/share/dbus-1
/usr/share/dbus-1/system.d
/usr/share/dbus-1/system.d/stratisd.conf
/usr/share/doc/stratisd
/usr/share/doc/stratisd/README.md
/usr/share/licenses/stratisd
/usr/share/licenses/stratisd/LICENSE
/usr/share/man/man8/stratisd.8.gz
References
Summary
In this tutorial we learn how to install stratisd
on Fedora 34 using yum and dnf.