How To Install pungi-utils on Rocky Linux 8

In this tutorial we learn how to install pungi-utils on Rocky Linux 8. pungi-utils is Utilities for working with finished composes

Introduction

In this tutorial we learn how to install pungi-utils on Rocky Linux 8.

What is pungi-utils

These utilities work with finished composes produced by Pungi. They can be used for creating unified ISO images, validating config file or sending progress notification to Fedora Message Bus.

We can use yum or dnf to install pungi-utils on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install pungi-utils.

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

sudo dnf -y install pungi-utils

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

sudo yum -y install pungi-utils

How To Uninstall pungi-utils on Rocky Linux 8

To uninstall only the pungi-utils package we can use the following command:

sudo dnf remove pungi-utils

pungi-utils Package Contents on Rocky Linux 8

/usr/bin/pungi-compare-depsolving
/usr/bin/pungi-config-dump
/usr/bin/pungi-config-validate
/usr/bin/pungi-create-unified-isos
/usr/bin/pungi-fedmsg-notification
/usr/bin/pungi-notification-report-progress
/usr/bin/pungi-orchestrate
/usr/bin/pungi-patch-iso
/usr/bin/pungi-wait-for-signed-ostree-handler
/usr/lib/python3.6/site-packages/pungi_utils
/usr/lib/python3.6/site-packages/pungi_utils/__init__.py
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/config_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/config_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/orchestrator.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/orchestrator.cpython-36.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/patch_iso.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/patch_iso.cpython-36.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/unified_isos.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/pungi_utils/__pycache__/unified_isos.cpython-36.pyc
/usr/lib/python3.6/site-packages/pungi_utils/config_utils.py
/usr/lib/python3.6/site-packages/pungi_utils/orchestrator.py
/usr/lib/python3.6/site-packages/pungi_utils/patch_iso.py
/usr/lib/python3.6/site-packages/pungi_utils/unified_isos.py

References

Summary

In this tutorial we learn how to install pungi-utils on Rocky Linux 8 using yum and dnf.