How To Install rubygem-ronn on AlmaLinux 8
Introduction
In this tutorial we learn how to install rubygem-ronn on AlmaLinux 8.
What is rubygem-ronn
Ronn builds manuals. It converts simple, human readable text files to roff for terminal display, and also to HTML for the web. The source format includes all of Markdown but has a more rigid structure and syntax extensions for features commonly found in man pages (definition lists, link notation, etc.). The ronn-format(7) manual page defines the format in detail.
We can use yum or dnf to install rubygem-ronn on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install rubygem-ronn.
Install rubygem-ronn 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 rubygem-ronn using dnf by running the following command:
sudo dnf -y install rubygem-ronn
Install rubygem-ronn 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 rubygem-ronn using yum by running the following command:
sudo yum -y install rubygem-ronn
How To Uninstall rubygem-ronn on AlmaLinux 8
To uninstall only the rubygem-ronn package we can use the following command:
sudo dnf remove rubygem-ronn
References
Summary
In this tutorial we learn how to install rubygem-ronn on AlmaLinux 8 using yum and dnf.