How To Install po-debconf on Rocky Linux 8

In this tutorial we learn how to install po-debconf on Rocky Linux 8. po-debconf is Tool for managing templates file translations with gettext

Introduction

In this tutorial we learn how to install po-debconf on Rocky Linux 8.

What is po-debconf

This package is an alternative to debconf-utils, and provides tools for managing translated debconf templates files with common gettext utilities.

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

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

sudo dnf -y install po-debconf

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

sudo yum -y install po-debconf

How To Uninstall po-debconf on Rocky Linux 8

To uninstall only the po-debconf package we can use the following command:

sudo dnf remove po-debconf

po-debconf Package Contents on Rocky Linux 8

/usr/bin/debconf-gettextize
/usr/bin/debconf-updatepo
/usr/bin/po2debconf
/usr/bin/podebconf-display-po
/usr/bin/podebconf-report-po
/usr/share/doc/po-debconf
/usr/share/doc/po-debconf/README
/usr/share/doc/po-debconf/README-trans
/usr/share/intltool-debian
/usr/share/licenses/po-debconf
/usr/share/licenses/po-debconf/COPYING
/usr/share/man/de/man1/debconf-gettextize.1.gz
/usr/share/man/de/man1/debconf-updatepo.1.gz
/usr/share/man/de/man1/po2debconf.1.gz
/usr/share/man/de/man1/podebconf-display-po.1.gz
/usr/share/man/de/man1/podebconf-report-po.1.gz
/usr/share/man/es/man1/debconf-gettextize.1.gz
/usr/share/man/es/man1/debconf-updatepo.1.gz
/usr/share/man/es/man1/po2debconf.1.gz
/usr/share/man/es/man1/podebconf-display-po.1.gz
/usr/share/man/es/man1/podebconf-report-po.1.gz
/usr/share/man/fr/man1/debconf-gettextize.1.gz
/usr/share/man/fr/man1/debconf-updatepo.1.gz
/usr/share/man/fr/man1/po2debconf.1.gz
/usr/share/man/fr/man1/podebconf-display-po.1.gz
/usr/share/man/fr/man1/podebconf-report-po.1.gz
/usr/share/man/man1/debconf-gettextize.1.gz
/usr/share/man/man1/debconf-updatepo.1.gz
/usr/share/man/man1/po2debconf.1.gz
/usr/share/man/man1/podebconf-display-po.1.gz
/usr/share/man/man1/podebconf-report-po.1.gz
/usr/share/man/pt/man1/debconf-gettextize.1.gz
/usr/share/man/pt/man1/debconf-updatepo.1.gz
/usr/share/man/pt/man1/po2debconf.1.gz
/usr/share/man/pt/man1/podebconf-display-po.1.gz
/usr/share/man/pt/man1/podebconf-report-po.1.gz
/usr/share/man/ru/man1/debconf-gettextize.1.gz
/usr/share/man/ru/man1/debconf-updatepo.1.gz
/usr/share/man/ru/man1/po2debconf.1.gz
/usr/share/man/ru/man1/podebconf-display-po.1.gz
/usr/share/man/ru/man1/podebconf-report-po.1.gz
/usr/share/po-debconf
/usr/share/po-debconf/encodings
/usr/share/po-debconf/pot-header
/usr/share/po-debconf/templates
/usr/share/po-debconf/templates/call
/usr/share/po-debconf/templates/call-po
/usr/share/po-debconf/templates/submit
/usr/share/po-debconf/templates/submit-po
/usr/share/po-debconf/templates/translators
/usr/share/po-debconf/templates/translators-po

References

Summary

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