How To Install libopenraw on AlmaLinux 8

In this tutorial we learn how to install libopenraw in AlmaLinux 8. libopenraw is Decode camera RAW files

Introduction

In this tutorial we learn how to install libopenraw on AlmaLinux 8.

What is libopenraw

libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application.

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

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

sudo dnf -y install libopenraw

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

sudo yum -y install libopenraw

How To Uninstall libopenraw on AlmaLinux 8

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

sudo dnf remove libopenraw

References

Summary

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