How To Install httrack on CentOS 7

In this tutorial we learn how to install httrack on CentOS 7. httrack is Website copier and offline browser

Introduction

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

What is httrack

HTTrack is a free and easy-to-use offline browser utility. It allows the user to download a World Wide Web site from the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. HTTrack arranges the original site’s relative link-structure. HTTrack can also update an existing mirrored site, and resume interrupted downloads. HTTrack is fully configurable, and has an integrated help system.

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

Install httrack on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install httrack

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

sudo dnf -y install httrack

How To Uninstall httrack on CentOS 7

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

sudo dnf remove httrack

References

Summary

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