How To Install webtech on CentOS 8
Introduction
In this tutorial we learn how to install webtech on CentOS 8.
What is webtech
WebTech is a Python software that can identify web technologies by visiting a given website, parsing a single response file or replaying a request described in a text file. This way you can have reproducible results and minimize the requests you need to make to a target website.
We can use yum or dnf to install webtech on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install webtech.
Install webtech on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install webtech using yum by running the following command:
sudo yum -y install webtech
Install webtech on CentOS 8 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 webtech using dnf by running the following command:
sudo dnf -y install webtech
How To Uninstall webtech on CentOS 8
To uninstall only the webtech package we can use the following command:
sudo dnf remove webtech
References
Summary
In this tutorial we learn how to install webtech on CentOS 8 using yum and dnf.