How To Install autodownloader on CentOS 7

In this tutorial we learn how to install autodownloader on CentOS 7. autodownloader is GUI-tool to automate the download of certain files

Introduction

In this tutorial we learn how to install autodownloader on CentOS 7.

What is autodownloader

Some software (usually games) requires certain data files to operate, sometimes these datafiles can be freely downloaded but may not be redistributed and thus cannot be put into so called packages as part of a distro. autodownloader is a tool which can be used as part of a package to automate the download of the needed files. It will prompt the user explaining to him the need of the download and asking if it is ok to make an internet connection, after this it will show the license of the to be downloaded files and last it will do the actual download and md5 verification off these files. This whole process can be configured by the packager through a simple configuration file. Notice that Autodownloader while open source itself, may download files which are not permitted to be (re)distributed unlike most files in Fedora.

We can use yum or dnf to install autodownloader on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install autodownloader.

Install autodownloader on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install autodownloader using yum by running the following command:

sudo yum -y install autodownloader

Install autodownloader on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install autodownloader using dnf by running the following command:

sudo dnf -y install autodownloader

How To Uninstall autodownloader on CentOS 7

To uninstall only the autodownloader package we can use the following command:

sudo dnf remove autodownloader

References

Summary

In this tutorial we learn how to install autodownloader on CentOS 7 using yum and dnf.