How To Install autoconf213 on Fedora 36
Introduction
In this tutorial we learn how to install autoconf213
on Fedora 36.
What is autoconf213
GNU’s Autoconf is a tool for configuring source code and Makefiles. Using Autoconf, programmers can create portable and configurable packages, since the person building the package is allowed to specify various configuration options. You should install Autoconf if you are developing software and you would like to use it to create shell scripts that will configure your source code packages. If you are installing Autoconf, you will also need to install the GNU m4 package. Note that the Autoconf package is not required for the end-user who may be configuring software with an Autoconf-generated script; Autoconf is only required for the generation of the scripts, not their use.
We can use yum
or dnf
to install autoconf213
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install autoconf213.
Install autoconf213 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 autoconf213
using dnf
by running the following command:
sudo dnf -y install autoconf213
Install autoconf213 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 autoconf213
using yum
by running the following command:
sudo yum -y install autoconf213
How To Uninstall autoconf213 on Fedora 36
To uninstall only the autoconf213
package we can use the following command:
sudo dnf remove autoconf213
autoconf213 Package Contents on Fedora 36
/usr/bin/autoconf-2.13
/usr/bin/autoheader-2.13
/usr/bin/autoreconf-2.13
/usr/bin/autoupdate-2.13
/usr/bin/ifnames-2.13
/usr/share/autoconf-2.13
/usr/share/autoconf-2.13/acconfig.h
/usr/share/autoconf-2.13/acfunctions
/usr/share/autoconf-2.13/acgeneral.m4
/usr/share/autoconf-2.13/acheaders
/usr/share/autoconf-2.13/acidentifiers
/usr/share/autoconf-2.13/acmakevars
/usr/share/autoconf-2.13/acoldnames.m4
/usr/share/autoconf-2.13/acprograms
/usr/share/autoconf-2.13/acspecific.m4
/usr/share/autoconf-2.13/autoconf.m4
/usr/share/autoconf-2.13/autoconf.m4f
/usr/share/autoconf-2.13/autoheader.m4
/usr/share/autoconf-2.13/autoheader.m4f
/usr/share/doc/autoconf213
/usr/share/doc/autoconf213/AUTHORS
/usr/share/doc/autoconf213/COPYING
/usr/share/doc/autoconf213/NEWS
/usr/share/doc/autoconf213/README
/usr/share/doc/autoconf213/TODO
/usr/share/info/autoconf213.info.gz
References
Summary
In this tutorial we learn how to install autoconf213
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).