How To Install augeas on Fedora 36
Introduction
In this tutorial we learn how to install augeas
on Fedora 36.
What is augeas
A library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. Changes made through the API are written back to the initially read files. The transformation works very hard to preserve comments and formatting details. It is controlled by ``lens’’ definitions that describe the file format and the transformation into a tree.
We can use yum
or dnf
to install augeas
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install augeas.
Install augeas on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install augeas
using dnf
by running the following command:
sudo dnf -y install augeas
Install augeas on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install augeas
using yum
by running the following command:
sudo yum -y install augeas
How To Uninstall augeas on Fedora 36
To uninstall only the augeas
package we can use the following command:
sudo dnf remove augeas
augeas Package Contents on Fedora 36
/usr/bin/augmatch
/usr/bin/augparse
/usr/bin/augtool
/usr/bin/fadot
/usr/lib/.build-id
/usr/lib/.build-id/79
/usr/lib/.build-id/79/a6d79a4b4a31abbe43e2646b88c4ed3a8be39f
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/7caae87f8cae4ce6ab479ba5355a0bc2b7e68d
/usr/lib/.build-id/d4
/usr/lib/.build-id/d4/0e1a1d92ee9d6a7a0d3a472f9cd3cc2edb8cb9
/usr/lib/.build-id/f8
/usr/lib/.build-id/f8/abb672ae77060dba3bb471ba1cdf47a719dea5
/usr/share/man/man1/augmatch.1.gz
/usr/share/man/man1/augparse.1.gz
/usr/share/man/man1/augtool.1.gz
/usr/share/vim/vimfiles/ftdetect/augeas.vim
/usr/share/vim/vimfiles/syntax/augeas.vim
References
Summary
In this tutorial we learn how to install augeas
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).