How To Install fwts on Fedora 34

fwts is Firmware Test Suite

Introduction

In this tutorial we learn how to install fwts on Fedora 34.

What is fwts

Firmware Test Suite (FWTS) is a test suite that performs sanity checks on Intel/AMD PC firmware. It is intended to identify BIOS and ACPI errors and if appropriate it will try to explain the errors and give advice to help workaround or fix firmware bugs. It is primarily intended to be a Linux-specific firmware troubleshooting tool.

We can use yum or dnf to install fwts on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install fwts.

Install fwts 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 fwts using dnf by running the following command:

sudo dnf -y install fwts

Install fwts 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 fwts using yum by running the following command:

sudo yum -y install fwts

How To Uninstall fwts on Fedora 34

To uninstall only the fwts package we can use the following command:

sudo dnf remove fwts

fwts Package Contents on Fedora 34

/usr/bin/fwts
/usr/bin/kernelscan
/usr/lib/.build-id
/usr/lib/.build-id/0f
/usr/lib/.build-id/0f/ccf270fb3cd6144d8a37de05ec989b7a182405
/usr/lib/.build-id/60
/usr/lib/.build-id/60/6813f96053ab0e7fc4265aa09e0d80138dfd98
/usr/lib/.build-id/61
/usr/lib/.build-id/61/1b951c8f5631610f9548b254a0f7d22b090853
/usr/lib/.build-id/9b
/usr/lib/.build-id/9b/6eff5a812260cf0d1a1d1e0f483fcf264fd028
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/acd1e47d274aad94db1660cf3d42dc3a8cc3fc
/usr/lib64/fwts
/usr/lib64/fwts/libfwts.so.1
/usr/lib64/fwts/libfwts.so.1.0.0
/usr/lib64/fwts/libfwtsacpica.so.1
/usr/lib64/fwts/libfwtsacpica.so.1.0.0
/usr/lib64/fwts/libfwtsiasl.so.1
/usr/lib64/fwts/libfwtsiasl.so.1.0.0
/usr/share/bash-completion/completions/fwts
/usr/share/doc/fwts
/usr/share/doc/fwts/README
/usr/share/doc/fwts/README_ACPICA.txt
/usr/share/doc/fwts/copyright
/usr/share/fwts
/usr/share/fwts/clog.json
/usr/share/fwts/klog.json
/usr/share/fwts/olog.json
/usr/share/fwts/syntaxcheck.json
/usr/share/man/man1/fwts-collect.1.gz
/usr/share/man/man1/fwts-frontend-text.1.gz
/usr/share/man/man1/fwts.1.gz
/usr/bin/fwts
/usr/bin/kernelscan
/usr/lib/.build-id
/usr/lib/.build-id/1e
/usr/lib/.build-id/1e/b2482b759f590fed837149731b74726ba0bd2c
/usr/lib/.build-id/34
/usr/lib/.build-id/34/10737c3bccb8b0f9be94ff19ed8f56837e2585
/usr/lib/.build-id/4e
/usr/lib/.build-id/4e/ab106252dfba3853f5066da8792d2b6099b3cd
/usr/lib/.build-id/8a
/usr/lib/.build-id/8a/4bae3218f20c9d41fb2ed296ea6385699c857b
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/5086a849e59026ac6a38a504849882394ff09b
/usr/lib64/fwts
/usr/lib64/fwts/libfwts.so
/usr/lib64/fwts/libfwts.so.1
/usr/lib64/fwts/libfwts.so.1.0.0
/usr/lib64/fwts/libfwtsacpica.so
/usr/lib64/fwts/libfwtsacpica.so.1
/usr/lib64/fwts/libfwtsacpica.so.1.0.0
/usr/lib64/fwts/libfwtsiasl.so
/usr/lib64/fwts/libfwtsiasl.so.1
/usr/lib64/fwts/libfwtsiasl.so.1.0.0
/usr/share/bash-completion/completions/fwts
/usr/share/doc/fwts
/usr/share/doc/fwts/README
/usr/share/doc/fwts/README_ACPICA.txt
/usr/share/fwts
/usr/share/fwts/clog.json
/usr/share/fwts/klog.json
/usr/share/fwts/olog.json
/usr/share/fwts/syntaxcheck.json
/usr/share/licenses/fwts
/usr/share/licenses/fwts/copyright
/usr/share/man/man1/fwts-collect.1.gz
/usr/share/man/man1/fwts-frontend-text.1.gz
/usr/share/man/man1/fwts.1.gz

References

Summary

In this tutorial we learn how to install fwts on Fedora 34 using yum and dnf.