How To Install acpica-tools on AlmaLinux 8

In this tutorial we learn how to install acpica-tools in AlmaLinux 8. acpica-tools is ACPICA tools for the development and debug of ACPI tables

Introduction

In this tutorial we learn how to install acpica-tools on AlmaLinux 8.

What is acpica-tools

The ACPI Component Architecture (ACPICA) project provides an OS-independent reference implementation of the Advanced Configuration and Power Interface Specification (ACPI). ACPICA code contains those portions of ACPI meant to be directly integrated into the host OS as a kernel-resident subsystem, and a small set of tools to assist in developing and debugging ACPI tables. This package contains only the user-space tools needed for ACPI table development, not the kernel implementation of ACPI. The following commands are installed – iasl Language), suitable for inclusion as a DSDT in system firmware. It also can disassemble AML, for debugging purposes. – acpibin comparison, data extraction) – acpidump – acpiexec – acpihelp – acpinames – acpisrc for specific environments – acpixtract also the pmtools package) This version of the tools is being released under GPLv2 license.

We can use yum or dnf to install acpica-tools on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install acpica-tools.

Install acpica-tools on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install acpica-tools using dnf by running the following command:

sudo dnf -y install acpica-tools

Install acpica-tools on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install acpica-tools using yum by running the following command:

sudo yum -y install acpica-tools

How To Uninstall acpica-tools on AlmaLinux 8

To uninstall only the acpica-tools package we can use the following command:

sudo dnf remove acpica-tools

References

Summary

In this tutorial we learn how to install acpica-tools on AlmaLinux 8 using yum and dnf.